mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-05 13:37:43 +03:00
Add reset() and blockSize().
This commit is contained in:
parent
26de957a98
commit
bb6ae3a014
3 changed files with 35 additions and 3 deletions
|
@ -43,7 +43,8 @@ CryptoHash::CryptoHash(CryptoHash::Algorithm algo)
|
|||
break;
|
||||
}
|
||||
|
||||
gcry_md_open(&d->ctx, algoGcrypt, 0); // TODO error handling
|
||||
gcry_error_t error = gcry_md_open(&d->ctx, algoGcrypt, 0);
|
||||
Q_ASSERT(error == 0); // TODO error handling
|
||||
|
||||
d->hashLen = gcry_md_get_algo_dlen(algoGcrypt);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue