示例#1
0
 // Token: 0x060001A2 RID: 418 RVA: 0x0000994B File Offset: 0x00007B4B
 public static byte[] DesDecrypto(byte[] target, byte[] key, byte[] iv)
 {
     return(DesCrypto.Crypto(target, key, iv, DesCrypto.CryptoMode.Decrypt));
 }
示例#2
0
 // Token: 0x060001A1 RID: 417 RVA: 0x00009936 File Offset: 0x00007B36
 public static byte[] DesEncrypto(string target, byte[] key, byte[] iv)
 {
     return(DesCrypto.Crypto(Encoding.Unicode.GetBytes(target), key, iv, DesCrypto.CryptoMode.Encrypt));
 }