summaryrefslogtreecommitdiffstats
path: root/providers/implementations/digests/blake2_prov.c
diff options
context:
space:
mode:
Diffstat (limited to 'providers/implementations/digests/blake2_prov.c')
-rw-r--r--providers/implementations/digests/blake2_prov.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/providers/implementations/digests/blake2_prov.c b/providers/implementations/digests/blake2_prov.c
index cd13fd2adf..8bb1050f43 100644
--- a/providers/implementations/digests/blake2_prov.c
+++ b/providers/implementations/digests/blake2_prov.c
@@ -31,12 +31,12 @@ int blake2b512_init(void *ctx)
return blake2b_init((BLAKE2B_CTX *)ctx, &P);
}
-/* blake2s256_functions */
+/* ossl_blake2s256_functions */
IMPLEMENT_digest_functions(blake2s256, BLAKE2S_CTX,
BLAKE2S_BLOCKBYTES, BLAKE2S_DIGEST_LENGTH, 0,
blake2s256_init, blake2s_update, blake2s_final)
-/* blake2b512_functions */
+/* ossl_blake2b512_functions */
IMPLEMENT_digest_functions(blake2b512, BLAKE2B_CTX,
BLAKE2B_BLOCKBYTES, BLAKE2B_DIGEST_LENGTH, 0,
blake2b512_init, blake2b_update, blake2b_final)