prov: prefix all OSSL_DISPATCH tables names with ossl_
[openssl.git] / providers / implementations / digests / blake2_prov.c
index cd13fd2adf945fc8441c49c7447f5ab18df2d993..8bb1050f43bdd0f155df566f711bb7945765e026 100644 (file)
@@ -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)