Home
last modified time | relevance | path

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

/hal_espressif-latest/components/wpa_supplicant/src/crypto/
Dcrypto.h1002 struct crypto_key *csign, int hash_len);
1014 const struct crypto_bignum *s, struct crypto_key *csign, int hlen);
1111 int crypto_write_pubkey_der(struct crypto_key *csign, unsigned char **key_buf);
/hal_espressif-latest/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()
4155 if (dpp_build_jwk(buf, "csign", auth->conf->csign, auth->conf->kid, in dpp_build_conf_obj_dpp()
4960 static void dpp_copy_csign(struct dpp_config_obj *conf, struct crypto_key *csign) in dpp_copy_csign() argument
4965 der_len = crypto_write_pubkey_der(csign, &der); in dpp_copy_csign()
5114 struct json_token *token, *csign; in dpp_parse_cred_dpp() local
5131 csign = json_get_member(cred, "csign"); in dpp_parse_cred_dpp()
5132 if (!csign || csign->type != JSON_OBJECT) { in dpp_parse_cred_dpp()
5137 csign_pub = dpp_parse_jwk(csign, &key_curve); in dpp_parse_cred_dpp()
5503 crypto_ec_free_key(conf->csign); in dpp_configurator_free()
5515 if (!conf->csign) in dpp_configurator_get_key()
[all …]
Ddpp.h319 struct crypto_key *csign; member
/hal_espressif-latest/components/wpa_supplicant/esp_supplicant/src/crypto/
Dcrypto_mbedtls-ec.c807 …const struct crypto_bignum *r, const struct crypto_bignum *s, struct crypto_key *csign, int hash_l… in crypto_ecdsa_get_sign() argument
810 mbedtls_pk_context *pkey = (mbedtls_pk_context *)csign; in crypto_ecdsa_get_sign()
833 const struct crypto_bignum *r, const struct crypto_bignum *s, struct crypto_key *csign, int hlen) in crypto_edcsa_sign_verify() argument
836 mbedtls_ecp_keypair *ecp_kp = mbedtls_pk_ec(*(mbedtls_pk_context *)csign); in crypto_edcsa_sign_verify()