コード例 #1
0
 public static byte[] Decrypt(byte[] Data, byte[] seedKey)
 {
     return(SEED.Decrypt(Data, seedKey, true));
 }
コード例 #2
0
 public static byte[] Encrypt(byte[] Data, byte[] seedKey)
 {
     return(SEED.Encrypt(Data, seedKey, false));
 }