コード例 #1
0
ファイル: Blowfish.cs プロジェクト: remotesyssupport/cato
 public static string EncryptToBase64(string key, string inString)
 {
     Blowfish blowfish = new Blowfish(key);
     return blowfish.EncryptBytes(inString);
 }
コード例 #2
0
ファイル: Blowfish.cs プロジェクト: remotesyssupport/cato
 public static string DecryptFromBase64(string key, string inString)
 {
     Blowfish blowfish = new Blowfish(key);
     return blowfish.DecryptBytes(inString);
 }