Home
last modified time | relevance | path

Searched refs:hash_ctx (Results 1 – 2 of 2) sorted by relevance

/openssl/providers/implementations/signature/
H A Deddsa_sig.c464 EVP_MD_CTX *hash_ctx = EVP_MD_CTX_new(); in ed448_shake256() local
467 if (hash_ctx == NULL || shake256 == NULL) in ed448_shake256()
470 if (!EVP_DigestInit_ex(hash_ctx, shake256, NULL) in ed448_shake256()
471 || !EVP_DigestUpdate(hash_ctx, in, inlen) in ed448_shake256()
472 || !EVP_DigestFinalXOF(hash_ctx, out, outlen)) in ed448_shake256()
478 EVP_MD_CTX_free(hash_ctx); in ed448_shake256()
/openssl/crypto/ec/
H A Dcurve25519.c5485 EVP_MD_CTX *hash_ctx = EVP_MD_CTX_new(); 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()
5505 || !EVP_DigestFinal_ex(hash_ctx, az, &sz)) in ossl_ed25519_sign()
5537 EVP_MD_CTX_free(hash_ctx); in ossl_ed25519_sign()
5569 EVP_MD_CTX *hash_ctx = NULL; in ossl_ed25519_verify() local
5632 hash_ctx = EVP_MD_CTX_new(); in ossl_ed25519_verify()
5633 if (hash_ctx == NULL) in ossl_ed25519_verify()
5637 || !EVP_DigestUpdate(hash_ctx, r, 32) in ossl_ed25519_verify()
5640 || !EVP_DigestFinal_ex(hash_ctx, h, &sz)) in ossl_ed25519_verify()
[all …]

Completed in 26 milliseconds