Searched refs:px (Results 1 – 5 of 5) sorted by relevance
/hal_espressif-latest/components/hal/ |
D | ecc_hal.c | 45 void ecc_hal_write_mul_param(const uint8_t *k, const uint8_t *px, const uint8_t *py, uint16_t len) in ecc_hal_write_mul_param() argument 53 ecc_ll_write_param(ECC_PARAM_PX, px, len); in ecc_hal_write_mul_param() 57 void ecc_hal_write_verify_param(const uint8_t *px, const uint8_t *py, uint16_t len) in ecc_hal_write_verify_param() argument 64 ecc_ll_write_param(ECC_PARAM_PX, px, len); in ecc_hal_write_verify_param() 128 void ecc_hal_write_point_add_param(const uint8_t *px, const uint8_t *py, const uint8_t *qx, const u… in ecc_hal_write_point_add_param() argument 135 ecc_ll_write_param(ECC_PARAM_PX, px, len); in ecc_hal_write_point_add_param()
|
/hal_espressif-latest/components/hal/include/hal/ |
D | ecc_hal.h | 62 void ecc_hal_write_mul_param(const uint8_t *k, const uint8_t *px, const uint8_t *py, uint16_t len); 74 void ecc_hal_write_verify_param(const uint8_t *px, const uint8_t *py, uint16_t len); 152 void ecc_hal_write_point_add_param(const uint8_t *px, const uint8_t *py, const uint8_t *qx, const u…
|
/hal_espressif-latest/components/soc/esp32c6/include/soc/ |
D | ecc_mult_struct.h | 146 volatile uint32_t px[8]; member
|
/hal_espressif-latest/components/soc/esp32h2/include/soc/ |
D | ecc_mult_struct.h | 154 volatile uint32_t px[8]; member
|
/hal_espressif-latest/components/wpa_supplicant/esp_supplicant/src/crypto/ |
D | crypto_mbedtls-ec.c | 1148 uint8_t *px = NULL, *py = NULL, *buf = NULL; in crypto_ecdh_set_peerkey() local 1181 px = os_zalloc(len); in crypto_ecdh_set_peerkey() 1185 if (!px || !py || !buf) { in crypto_ecdh_set_peerkey() 1189 if (crypto_ec_point_to_bin((struct crypto_ec*)ACCESS_ECDH(&ctx, grp), ec_pt, px, py) != 0) { in crypto_ecdh_set_peerkey() 1194 os_memcpy(buf, px, len); in crypto_ecdh_set_peerkey() 1234 os_free(px); in crypto_ecdh_set_peerkey()
|