1
mirror of https://github.com/jedisct1/libsodium.git synced 2024-12-20 02:25:14 -07:00

The version number in Argon2 strings will require 5 extra bytes

Round `crypto_pwhash_argon2i_STRBYTES` up to 128
This commit is contained in:
Frank Denis 2016-03-10 12:22:13 +01:00
parent 7c5d30a6a3
commit 805fd3589d

View File

@ -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);