| 84 | bool SetKey(const CKeyingMaterial& chNewKey, const std::vector<unsigned char>& chNewIV); |
| 85 | |
| 86 | void CleanKey() |
| 87 | { |
| 88 | memory_cleanse(vchKey.data(), vchKey.size()); |
| 89 | memory_cleanse(vchIV.data(), vchIV.size()); |
| 90 | fKeySet = false; |
| 91 | } |
| 92 | |
| 93 | CCrypter() |
| 94 | { |
nothing calls this directly
no test coverage detected