コード例 #1
0
ファイル: ExtensionsForXXTEA.cs プロジェクト: bchavez/Havoc
 public static byte[] Decrypt(this byte[] data, string key)
 {
     return(XXTEA.Decrypt(data, key));
 }
コード例 #2
0
ファイル: ExtensionsForXXTEA.cs プロジェクト: bchavez/Havoc
 public static byte[] Decrypt(this byte[] data)
 {
     return(XXTEA.Decrypt(data, DefaultKeyBytes));
 }