Home
last modified time | relevance | path

Searched refs:digest_verify_init (Results 1 – 5 of 5) sorted by relevance

/third_party/rust/crates/rust-openssl/openssl/src/
Dmd_ctx.rs173 pub fn digest_verify_init<'a, T>( in digest_verify_init() method
425 ctx.digest_verify_init(Some(md), &key1).unwrap(); in verify_fail()
447 ctx.digest_verify_init(Some(md), &key1).unwrap(); in verify_success()
476 ctx.digest_verify_init(Some(md), &key1).unwrap(); in verify_with_public_success()
/third_party/openssl/crypto/evp/
Dsignature.c136 if (signature->digest_verify_init != NULL) in evp_signature_from_algorithm()
138 signature->digest_verify_init in evp_signature_from_algorithm()
244 || (digverifyfncnt == 2 && signature->digest_verify_init == NULL) in evp_signature_from_algorithm()
248 && signature->digest_verify_init == NULL) in evp_signature_from_algorithm()
Dm_sigver.c262 if (signature->digest_verify_init == NULL) { in do_sigver_init()
266 ret = signature->digest_verify_init(locpctx->op.sig.algctx, in do_sigver_init()
Devp_local.h175 OSSL_FUNC_signature_digest_verify_init_fn *digest_verify_init; member
/third_party/rust/crates/rust-openssl/openssl/
DCHANGELOG.md87 * Fixed `MdCtxRef::digest_verify_init` to support `PKey`s with only public components.