示例#1
0
 public bool staticDecrypt(byte[] raw, int offset, int size)
 {
     _staticCrypt.decrypt(raw, offset, size);
     NewCrypt.decXORPass(raw);
     return(NewCrypt.verifyChecksum(raw, offset, size));
 }
示例#2
0
 public bool decrypt(byte[] raw, int offset, int size)
 {
     _crypt.decrypt(raw, offset, size);
     return(NewCrypt.verifyChecksum(raw, offset, size));
 }