コード例 #1
0
ファイル: AESSecurity.cs プロジェクト: Q-U-I-N/Cipher
 public static byte[] DecryptString(string strSource, bool header = true)
 {
     byte[] bytes = Encoding.UTF8.GetBytes(strSource);
     return(AESSecurity.DecryptBytes(bytes, header));
 }
コード例 #2
0
ファイル: AESSecurity.cs プロジェクト: Q-U-I-N/Cipher
 public static byte[] DecryptBytes(byte[] datas)
 {
     return(AESSecurity.DecryptBytes(datas, true));
 }