コード例 #1
0
ファイル: AES.cs プロジェクト: mtm9999/kilogram
 public static byte[] EncryptAES(AESKeyData key, byte[] plaintext)
 {
     return(EncryptIGE(plaintext, key.Key, key.Iv));
 }
コード例 #2
0
ファイル: AES.cs プロジェクト: Grief-Code/kilogram
 public static byte[] EncryptAES(AESKeyData key, byte[] plaintext) {
     return EncryptIGE(plaintext, key.Key, key.Iv);
 }
コード例 #3
0
ファイル: AES.cs プロジェクト: mtm9999/kilogram
 public static byte[] DecryptAES(AESKeyData key, byte[] ciphertext)
 {
     return(DecryptIGE(ciphertext, key.Key, key.Iv));
 }
コード例 #4
0
ファイル: AES.cs プロジェクト: Grief-Code/kilogram
 public static byte[] DecryptAES(AESKeyData key, byte[] ciphertext) {
     return DecryptIGE(ciphertext, key.Key, key.Iv);
 }