Home
last modified time | relevance | path

Searched refs:csign (Results 1 – 4 of 4) sorted by relevance

/hal_espressif-3.6.0/components/wpa_supplicant/src/crypto/
Dcrypto.h947 struct crypto_key *csign, int hash_len);
959 const struct crypto_bignum *s, struct crypto_key *csign, int hlen);
1056 int crypto_write_pubkey_der(struct crypto_key *csign, unsigned char **key_buf);
Dcrypto_mbedtls-ec.c776 …const struct crypto_bignum *r, const struct crypto_bignum *s, struct crypto_key *csign, int hash_l… in crypto_ecdsa_get_sign() argument
779 mbedtls_pk_context *pkey = (mbedtls_pk_context *)csign; in crypto_ecdsa_get_sign()
802 const struct crypto_bignum *r, const struct crypto_bignum *s, struct crypto_key *csign, int hlen) in crypto_edcsa_sign_verify() argument
804 mbedtls_pk_context *pkey = (mbedtls_pk_context *)csign; in crypto_edcsa_sign_verify()
/hal_espressif-3.6.0/components/wpa_supplicant/src/common/
Ddpp.c4109 if (crypto_ecdsa_get_sign(hash, r, s, auth->conf->csign, curve->hash_len) < 0) in dpp_build_conf_obj_dpp()
4153 if (dpp_build_jwk(buf, "csign", auth->conf->csign, auth->conf->kid, in dpp_build_conf_obj_dpp()
4955 static void dpp_copy_csign(struct dpp_config_obj *conf, struct crypto_key *csign) in dpp_copy_csign() argument
4960 der_len = crypto_write_pubkey_der(csign, &der); in dpp_copy_csign()
5109 struct json_token *token, *csign; in dpp_parse_cred_dpp() local
5126 csign = json_get_member(cred, "csign"); in dpp_parse_cred_dpp()
5127 if (!csign || csign->type != JSON_OBJECT) { in dpp_parse_cred_dpp()
5132 csign_pub = dpp_parse_jwk(csign, &key_curve); in dpp_parse_cred_dpp()
5498 crypto_ec_free_key(conf->csign); in dpp_configurator_free()
5510 if (!conf->csign) in dpp_configurator_get_key()
[all …]
Ddpp.h320 struct crypto_key *csign; member