Home
last modified time | relevance | path

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

/hal_espressif-3.7.0/components/esp_hw_support/
Desp_ds.c123 esp_ds_context_t **esp_ds_ctx) in esp_ds_start_sign() argument
125 if (!message || !data || !esp_ds_ctx) { in esp_ds_start_sign()
173 *esp_ds_ctx = context; in esp_ds_start_sign()
183 esp_err_t esp_ds_finish_sign(void *signature, esp_ds_context_t *esp_ds_ctx) in esp_ds_finish_sign() argument
185 if (!signature || !esp_ds_ctx) { in esp_ds_finish_sign()
189 const ets_ds_data_t *ds_data = esp_ds_ctx->data; in esp_ds_finish_sign()
205 free(esp_ds_ctx); in esp_ds_finish_sign()
306 esp_ds_context_t **esp_ds_ctx) in esp_ds_start_sign() argument
308 if (!message || !data || !esp_ds_ctx) { in esp_ds_start_sign()
361 *esp_ds_ctx = context; in esp_ds_start_sign()
[all …]
/hal_espressif-3.7.0/components/esp_hw_support/test_apps/esp_hw_support_unity_tests/main/
Dtest_ds.c333 esp_ds_context_t *esp_ds_ctx; variable
338 &esp_ds_ctx);
341 ds_r = esp_ds_finish_sign(signature, esp_ds_ctx);
368 esp_ds_context_t *esp_ds_ctx; variable
373 &esp_ds_ctx);
376 ds_r = esp_ds_finish_sign(signature, esp_ds_ctx);
408 esp_ds_context_t *esp_ds_ctx; variable
410 … esp_err_t ds_r = esp_ds_start_sign(test_messages[0], &ds_data, t->hmac_key_idx + 1, &esp_ds_ctx);
412 ds_r = esp_ds_finish_sign(signature, esp_ds_ctx);
428 esp_ds_context_t *esp_ds_ctx; variable
[all …]
/hal_espressif-3.7.0/components/esp_hw_support/test_apps/security_support/esp_hw_support_unity_tests/main/
Dtest_ds.c333 esp_ds_context_t *esp_ds_ctx; variable
338 &esp_ds_ctx);
341 ds_r = esp_ds_finish_sign(signature, esp_ds_ctx);
368 esp_ds_context_t *esp_ds_ctx; variable
373 &esp_ds_ctx);
376 ds_r = esp_ds_finish_sign(signature, esp_ds_ctx);
408 esp_ds_context_t *esp_ds_ctx; variable
410 … esp_err_t ds_r = esp_ds_start_sign(test_messages[0], &ds_data, t->hmac_key_idx + 1, &esp_ds_ctx);
412 ds_r = esp_ds_finish_sign(signature, esp_ds_ctx);
428 esp_ds_context_t *esp_ds_ctx; variable
[all …]
/hal_espressif-3.7.0/components/esp_hw_support/include/
Desp_ds.h175 esp_ds_context_t **esp_ds_ctx);
200 esp_err_t esp_ds_finish_sign(void *signature, esp_ds_context_t *esp_ds_ctx);
/hal_espressif-3.7.0/components/mbedtls/port/esp_ds/
Desp_rsa_sign_alt.c228 esp_ds_context_t *esp_ds_ctx; in esp_ds_rsa_sign() local
250 &esp_ds_ctx); in esp_ds_rsa_sign()
257 ds_r = esp_ds_finish_sign((void *)signature, esp_ds_ctx); in esp_ds_rsa_sign()