| 51 | |
| 52 | |
| 53 | void CryptData::Decrypt13(byte *Data,size_t Count) |
| 54 | { |
| 55 | while (Count--) |
| 56 | { |
| 57 | Key13[1]+=Key13[2]; |
| 58 | Key13[0]+=Key13[1]; |
| 59 | *Data-=Key13[0]; |
| 60 | Data++; |
| 61 | } |
| 62 | } |
| 63 | |
| 64 | |
| 65 | void CryptData::Crypt15(byte *Data,size_t Count) |
nothing calls this directly
no outgoing calls
no test coverage detected