コード例 #1
0
 public unsafe int Decrypt(ref byte[] data)
 {
     fixed(byte *data1 = &data[0])
     return(FlyffEncryption.EncryptDecrypt((void *)this.decryptionKey, data1, data.Length));
 }
コード例 #2
0
 public unsafe int Decrypt(ref byte[] data, int offset, int size)
 {
     fixed(byte *data1 = &data[offset])
     return(FlyffEncryption.EncryptDecrypt((void *)this.decryptionKey, data1, size));
 }