crypt_burn: Fix loop condition for regular crypters
This commit is contained in:
@@ -101,7 +101,7 @@ int main(int argc, char *argv[])
|
|||||||
}
|
}
|
||||||
bs = crypter->get_block_size(crypter);
|
bs = crypter->get_block_size(crypter);
|
||||||
|
|
||||||
while (i--)
|
while (TRUE)
|
||||||
{
|
{
|
||||||
if (!crypter->encrypt(crypter,
|
if (!crypter->encrypt(crypter,
|
||||||
chunk_create(buffer, sizeof(buffer) / bs * bs),
|
chunk_create(buffer, sizeof(buffer) / bs * bs),
|
||||||
|
|||||||
Reference in New Issue
Block a user