-
Notifications
You must be signed in to change notification settings - Fork 739
Closed
Labels

Description
Isn't it a typo? In s2n/crypto/s2n_hash.c
138 case S2N_HASH_SHA384:
139 eq_check(size, SHA384_DIGEST_LENGTH);
140 r = SHA512_Final(out, &state->hash_ctx.sha384);
141 break;
at line 140
r = SHA384_Final(out, &state->hash_ctx.sha384);
^^^
In OpenSSL, it's same meaning.
int SHA384_Final(unsigned char *md, SHA512_CTX *c)
{
return SHA512_Final(md, c);
}