MCPcopy Create free account
hub / github.com/abbeycode/UnrarKit / Decrypt13

Method Decrypt13

Libraries/unrar/crypt1.cpp:53–62  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

51
52
53void 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
65void CryptData::Crypt15(byte *Data,size_t Count)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected