mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2024-12-28 08:49:42 -05:00
Fix transform round benchmark.
This commit is contained in:
parent
05c41c083e
commit
efb40a6567
@ -135,8 +135,8 @@ int TransformKeyBenchmarkThread::rounds()
|
||||
|
||||
void TransformKeyBenchmarkThread::run()
|
||||
{
|
||||
QByteArray key = QByteArray('\x7E', 32);
|
||||
QByteArray seed = QByteArray('\x4B', 32);
|
||||
QByteArray key = QByteArray(16, '\x7E');
|
||||
QByteArray seed = QByteArray(32, '\x4B');
|
||||
QByteArray iv(16, 0);
|
||||
|
||||
SymmetricCipher cipher(SymmetricCipher::Aes256, SymmetricCipher::Ecb,
|
||||
|
Loading…
Reference in New Issue
Block a user