Lines Matching refs:sha512
5438 EVP_MD *sha512, in hash_init_with_dom() argument
5451 if (!EVP_DigestInit_ex(hash_ctx, sha512, NULL)) in hash_init_with_dom()
5484 EVP_MD *sha512 = EVP_MD_fetch(libctx, SN_sha512, propq); in ossl_ed25519_sign() local
5500 if (sha512 == NULL || hash_ctx == NULL) in ossl_ed25519_sign()
5503 if (!EVP_DigestInit_ex(hash_ctx, sha512, NULL) in ossl_ed25519_sign()
5512 if (!hash_init_with_dom(hash_ctx, sha512, dom2flag, phflag, context, context_len) in ossl_ed25519_sign()
5522 if (!hash_init_with_dom(hash_ctx, sha512, dom2flag, phflag, context, context_len) in ossl_ed25519_sign()
5536 EVP_MD_free(sha512); in ossl_ed25519_sign()
5568 EVP_MD *sha512; in ossl_ed25519_verify() local
5629 sha512 = EVP_MD_fetch(libctx, SN_sha512, propq); in ossl_ed25519_verify()
5630 if (sha512 == NULL) in ossl_ed25519_verify()
5636 if (!hash_init_with_dom(hash_ctx, sha512, dom2flag, phflag, context, context_len) in ossl_ed25519_verify()
5659 EVP_MD_free(sha512); in ossl_ed25519_verify()
5672 EVP_MD *sha512 = NULL; in ossl_ed25519_public_from_private() local
5674 sha512 = EVP_MD_fetch(ctx, SN_sha512, propq); in ossl_ed25519_public_from_private()
5675 if (sha512 == NULL) in ossl_ed25519_public_from_private()
5677 r = EVP_Digest(private_key, 32, az, NULL, sha512, NULL); in ossl_ed25519_public_from_private()
5678 EVP_MD_free(sha512); in ossl_ed25519_public_from_private()