Home
last modified time | relevance | path

Searched refs:init_pub_key (Results 1 – 3 of 3) sorted by relevance

/freebsd/crypto/libecc/include/libecc/sig/
H A Dsig_algs_internal.h58 ATTRIBUTE_WARN_UNUSED_RET int (*init_pub_key) (ec_pub_key *pub_key, const ec_priv_key *priv_key); member
93 (sm->gen_priv_key != NULL) && (sm->init_pub_key != NULL) && in sig_mapping_sanity_check()
285 .init_pub_key = ecdsa_init_pub_key,
306 .init_pub_key = eckcdsa_init_pub_key,
327 .init_pub_key = ecsdsa_init_pub_key,
348 .init_pub_key = ecosdsa_init_pub_key,
369 .init_pub_key = ecfsdsa_init_pub_key,
390 .init_pub_key = ecgdsa_init_pub_key,
411 .init_pub_key = ecrdsa_init_pub_key,
432 .init_pub_key = sm2_init_pub_key,
[all …]
/freebsd/crypto/libecc/src/sig/
H A Dsig_algs.c88 MUST_HAVE((sm->init_pub_key != NULL), ret, err); in init_pubkey_from_privkey()
89 ret = sm->init_pub_key(pub_key, priv_key); in init_pubkey_from_privkey()
180 } else if (sm->init_pub_key != sig->init_pub_key){ in ec_sig_mapping_callbacks_sanity_check()
/freebsd/crypto/libecc/
H A DREADME.md605 * `init_pub_key`: a routine producing a public key when given a corresponding private key.