mirror of
https://github.com/jedisct1/libsodium.git
synced 2026-08-25 08:37:13 +09:00
UL => ULL
This commit is contained in:
@@ -53,7 +53,7 @@ PBKDF2_SHA256(const uint8_t * passwd, size_t passwdlen, const uint8_t * salt,
|
||||
int k;
|
||||
size_t clen;
|
||||
|
||||
if (dkLen > 0x1fffffffe0UL) {
|
||||
if (dkLen > 0x1fffffffe0ULL) {
|
||||
abort();
|
||||
}
|
||||
crypto_auth_hmacsha256_init(&PShctx, passwd, passwdlen);
|
||||
|
||||
Reference in New Issue
Block a user