aboutsummaryrefslogtreecommitdiff
path: root/src/external/bcrypt_pbkdf.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/external/bcrypt_pbkdf.c')
-rw-r--r--src/external/bcrypt_pbkdf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/external/bcrypt_pbkdf.c b/src/external/bcrypt_pbkdf.c
index 6fb35ff7..2208654d 100644
--- a/src/external/bcrypt_pbkdf.c
+++ b/src/external/bcrypt_pbkdf.c
@@ -87,7 +87,7 @@ bcrypt_hash(uint8_t *sha2pass, uint8_t *sha2salt, uint8_t *out)
cdata[i] = Blowfish_stream2word(ciphertext, sizeof(ciphertext),
&j);
for (i = 0; i < 64; i++)
- ssh_blf_enc(&state, cdata, sizeof(cdata) / sizeof(uint64_t));
+ ssh_blf_enc(&state, cdata, BCRYPT_BLOCKS/2);
/* copy out */
for (i = 0; i < BCRYPT_BLOCKS; i++) {