From 805fd3589d1035092873f32a4af43e53d50b56fe Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Thu, 10 Mar 2016 12:22:13 +0100 Subject: [PATCH] The version number in Argon2 strings will require 5 extra bytes Round `crypto_pwhash_argon2i_STRBYTES` up to 128 --- src/libsodium/include/sodium/crypto_pwhash_argon2i.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libsodium/include/sodium/crypto_pwhash_argon2i.h b/src/libsodium/include/sodium/crypto_pwhash_argon2i.h index e8395070..53e09f93 100644 --- a/src/libsodium/include/sodium/crypto_pwhash_argon2i.h +++ b/src/libsodium/include/sodium/crypto_pwhash_argon2i.h @@ -16,7 +16,7 @@ extern "C" { SODIUM_EXPORT size_t crypto_pwhash_argon2i_saltbytes(void); -#define crypto_pwhash_argon2i_STRBYTES 116U +#define crypto_pwhash_argon2i_STRBYTES 128U SODIUM_EXPORT size_t crypto_pwhash_argon2i_strbytes(void);