Skip to content

Commit 11e61b3

Browse files
nabijaczlewelit8m
authored andcommitted
Fix BLAKE2s reporting the same EVP_MD_get_size() as BLAKE2b (64)
Fixes: commit 6d1e730 ("Implement BLAKE2s with the same macro as BLAKE2b") Closes: openssl#22708 Reviewed-by: Paul Dale <[email protected]> Reviewed-by: Tomas Mraz <[email protected]> (Merged from openssl#22710)
1 parent 4f0172c commit 11e61b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

providers/implementations/digests/blake2_prov.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ static int blake##variantsize##_internal_final(void *ctx, unsigned char *out, \
160160
\
161161
static int blake##variantsize##_get_params(OSSL_PARAM params[]) \
162162
{ \
163-
return ossl_digest_default_get_params(params, BLAKE##VARIANT##_BLOCKBYTES, 64, 0); \
163+
return ossl_digest_default_get_params(params, BLAKE##VARIANT##_BLOCKBYTES, BLAKE##VARIANT##_OUTBYTES, 0); \
164164
} \
165165
\
166166
const OSSL_DISPATCH ossl_blake##variantsize##_functions[] = { \

0 commit comments

Comments
 (0)