Zero key-length for HMAC is apparently OK.
This commit is contained in:
parent
0f71b77d5c
commit
f10725a6e1
1 changed files with 1 additions and 1 deletions
|
@ -89,7 +89,7 @@ void HMAC_Init_ex(HMAC_CTX *ctx, const void *key, int len,
|
|||
}
|
||||
else
|
||||
{
|
||||
OPENSSL_assert(len>0 && len <= (int)sizeof(ctx->key));
|
||||
OPENSSL_assert(len>=0 && len<=(int)sizeof(ctx->key));
|
||||
memcpy(ctx->key,key,len);
|
||||
ctx->key_length=len;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue