public static string XorCrypt(this string value, string password) { return(SimpleCypher.XorCypher(value, password)); }
public static string CaesarDecrypt(this string value, int key) { return(SimpleCypher.ReplaceCypher(value, -key)); }
public static string RotateDecrypt(this string value, int key) { return(SimpleCypher.RotateCypher(value, -key)); }