Lines Matching defs:sha512
5451 EVP_MD *sha512 = EVP_MD_fetch(libctx, SN_sha512, propq);
5456 if (sha512 == NULL || hash_ctx == NULL)
5459 if (!EVP_DigestInit_ex(hash_ctx, sha512, NULL)
5468 if (!EVP_DigestInit_ex(hash_ctx, sha512, NULL)
5478 if (!EVP_DigestInit_ex(hash_ctx, sha512, NULL)
5492 EVP_MD_free(sha512);
5507 EVP_MD *sha512;
5557 sha512 = EVP_MD_fetch(libctx, SN_sha512, propq);
5558 if (sha512 == NULL)
5564 if (!EVP_DigestInit_ex(hash_ctx, sha512, NULL)
5579 EVP_MD_free(sha512);
5592 EVP_MD *sha512 = NULL;
5594 sha512 = EVP_MD_fetch(ctx, SN_sha512, propq);
5595 if (sha512 == NULL)
5597 r = EVP_Digest(private_key, 32, az, NULL, sha512, NULL);
5598 EVP_MD_free(sha512);