| 51 | |
| 52 | |
| 53 | DataHash::~DataHash() |
| 54 | { |
| 55 | #ifdef RAR_SMP |
| 56 | delete ThPool; |
| 57 | #endif |
| 58 | cleandata(&CurCRC32, sizeof(CurCRC32)); |
| 59 | if (blake2ctx!=NULL) |
| 60 | { |
| 61 | cleandata(blake2ctx, sizeof(blake2sp_state)); |
| 62 | delete blake2ctx; |
| 63 | } |
| 64 | } |
| 65 | |
| 66 | |
| 67 | void DataHash::Init(HASH_TYPE Type,uint MaxThreads) |
nothing calls this directly
no test coverage detected