Revert "scrypt: reject r == 0 and p == 0"
This reverts commit 00c8ecd1c492cf5c6599ff5b8c28ed35d54cf2a1.
This commit is contained in:
parent
6e4c496171
commit
c322b1a63c
@ -305,10 +305,6 @@ escrypt_kdf_nosse(escrypt_local_t *local, const uint8_t *passwd,
|
||||
uint32_t i;
|
||||
|
||||
/* Sanity-check parameters. */
|
||||
if (r == 0 || p == 0) {
|
||||
errno = EINVAL;
|
||||
return -1;
|
||||
}
|
||||
#if SIZE_MAX > UINT32_MAX
|
||||
if (buflen > (((uint64_t)(1) << 32) - 1) * 32) {
|
||||
errno = EFBIG;
|
||||
|
@ -317,10 +317,6 @@ escrypt_kdf_sse(escrypt_local_t *local, const uint8_t *passwd, size_t passwdlen,
|
||||
uint32_t i;
|
||||
|
||||
/* Sanity-check parameters. */
|
||||
if (r == 0 || p == 0) {
|
||||
errno = EINVAL;
|
||||
return -1;
|
||||
}
|
||||
# if SIZE_MAX > UINT32_MAX
|
||||
/* LCOV_EXCL_START */
|
||||
if (buflen > (((uint64_t)(1) << 32) - 1) * 32) {
|
||||
|
Loading…
Reference in New Issue
Block a user