| 62 | ////////////////////////////////////////////////////////////////////////////////////////////////////////////////// |
| 63 | |
| 64 | Rijndael::Rijndael() |
| 65 | { |
| 66 | if (S[0]==0) |
| 67 | GenerateTables(); |
| 68 | CBCMode = true; // Always true for RAR. |
| 69 | } |
| 70 | |
| 71 | |
| 72 | void Rijndael::Init(bool Encrypt,const byte *key,uint keyLen,const byte * initVector) |
nothing calls this directly
no outgoing calls
no test coverage detected