예제 #1
0
 public static string XorCrypt(this string value, string password)
 {
     return(SimpleCypher.XorCypher(value, password));
 }
예제 #2
0
 public static string CaesarDecrypt(this string value, int key)
 {
     return(SimpleCypher.ReplaceCypher(value, -key));
 }
예제 #3
0
 public static string RotateDecrypt(this string value, int key)
 {
     return(SimpleCypher.RotateCypher(value, -key));
 }