Home
last modified time | relevance | path

Searched refs:dst (Results 1 – 25 of 118) sorted by relevance

12345

/hal_espressif-3.7.0/components/esp_app_format/test_apps/main/
Dtest_app_desc.c26 char dst[sha256_hex_len + 2]; in TEST() local
40 memset(dst, fill, sizeof(dst)); in TEST()
41 len = sizeof(dst); in TEST()
42 res = esp_app_get_elf_sha256(dst, len); in TEST()
43 printf("%d: %s (%d)\n", len, dst, res); in TEST()
45 TEST_ASSERT_EQUAL(0, memcmp(dst, ref_sha256, res - 1)); in TEST()
46 TEST_ASSERT_EQUAL_HEX(0, dst[sha256_hex_len]); in TEST()
47 TEST_ASSERT_EQUAL_HEX(fill, dst[sha256_hex_len + 1]); in TEST()
49 memset(dst, fill, sizeof(dst)); in TEST()
51 res = esp_app_get_elf_sha256(dst, len); in TEST()
[all …]
/hal_espressif-3.7.0/components/bt/esp_ble_mesh/mesh_common/include/
Dmesh_byteorder.h253 static inline void sys_put_be16(uint16_t val, uint8_t dst[2]) in sys_put_be16()
255 dst[0] = val >> 8; in sys_put_be16()
256 dst[1] = val; in sys_put_be16()
268 static inline void sys_put_be24(uint32_t val, uint8_t dst[3]) in sys_put_be24()
270 dst[0] = val >> 16; in sys_put_be24()
271 sys_put_be16(val, &dst[1]); in sys_put_be24()
283 static inline void sys_put_be32(uint32_t val, uint8_t dst[4]) in sys_put_be32()
285 sys_put_be16(val >> 16, dst); in sys_put_be32()
286 sys_put_be16(val, &dst[2]); in sys_put_be32()
298 static inline void sys_put_be48(uint64_t val, uint8_t dst[6]) in sys_put_be48()
[all …]
/hal_espressif-3.7.0/components/bt/common/btc/profile/esp/blufi/
Dblufi_prf.c448 esp_blufi_cb_param_t *dst = (esp_blufi_cb_param_t *) p_dest; in btc_blufi_cb_deep_copy() local
453 dst->sta_ssid.ssid = osi_malloc(src->sta_ssid.ssid_len); in btc_blufi_cb_deep_copy()
454 if (dst->sta_ssid.ssid == NULL) { in btc_blufi_cb_deep_copy()
457 memcpy(dst->sta_ssid.ssid, src->sta_ssid.ssid, src->sta_ssid.ssid_len); in btc_blufi_cb_deep_copy()
460 dst->sta_passwd.passwd = osi_malloc(src->sta_passwd.passwd_len); in btc_blufi_cb_deep_copy()
461 if (dst->sta_passwd.passwd == NULL) { in btc_blufi_cb_deep_copy()
464 memcpy(dst->sta_passwd.passwd, src->sta_passwd.passwd, src->sta_passwd.passwd_len); in btc_blufi_cb_deep_copy()
467 dst->softap_ssid.ssid = osi_malloc(src->softap_ssid.ssid_len); in btc_blufi_cb_deep_copy()
468 if (dst->softap_ssid.ssid == NULL) { in btc_blufi_cb_deep_copy()
471 memcpy(dst->softap_ssid.ssid, src->softap_ssid.ssid, src->softap_ssid.ssid_len); in btc_blufi_cb_deep_copy()
[all …]
/hal_espressif-3.7.0/components/esp_app_format/
Desp_app_desc.c79 int IRAM_ATTR esp_app_get_elf_sha256(char* dst, size_t size) in esp_app_get_elf_sha256() argument
93 if (dst == NULL || size == 0) { in esp_app_get_elf_sha256()
98 dst[2*i] = to_hex_digit(s_app_elf_sha256[i] >> 4); in esp_app_get_elf_sha256()
99 dst[2*i + 1] = to_hex_digit(s_app_elf_sha256[i] & 0xf); in esp_app_get_elf_sha256()
101 dst[2*n] = 0; in esp_app_get_elf_sha256()
/hal_espressif-3.7.0/components/bt/esp_ble_mesh/mesh_models/server/
Dserver_common.c192 uint8_t tid, uint16_t src, uint16_t dst, int64_t *now) in bt_mesh_is_server_recv_last_msg() argument
197 if (!BLE_MESH_ADDR_IS_UNICAST(dst)) { in bt_mesh_is_server_recv_last_msg()
201 if (last->tid == tid && last->src == src && last->dst == dst && in bt_mesh_is_server_recv_last_msg()
210 uint8_t tid, uint16_t src, uint16_t dst, int64_t *now) in bt_mesh_server_update_last_msg() argument
213 if (!BLE_MESH_ADDR_IS_UNICAST(dst)) { in bt_mesh_server_update_last_msg()
219 last->dst = dst; in bt_mesh_server_update_last_msg()
/hal_espressif-3.7.0/components/esp_rom/esp32s2/
Dusb_descriptors.c56 uint16_t* dst = s_str_serial_descr.bString; in rom_usb_cdc_set_descriptor_patch() local
59 *dst++ = nibble_to_hex_u16(b >> 4); in rom_usb_cdc_set_descriptor_patch()
60 *dst++ = nibble_to_hex_u16(b & 0xf); in rom_usb_cdc_set_descriptor_patch()
61 dst++; in rom_usb_cdc_set_descriptor_patch()
/hal_espressif-3.7.0/components/spi_flash/sim/stubs/bsd/
Dstrlcpy.c38 strlcpy(char *dst, const char *src, size_t dsize) in strlcpy() argument
46 if ((*dst++ = *src++) == '\0') in strlcpy()
54 *dst = '\0'; /* NUL-terminate dst */ in strlcpy()
/hal_espressif-3.7.0/components/bt/esp_ble_mesh/btc/
Dbtc_ble_mesh_sensor_model.c30 btc_ble_mesh_sensor_client_args_t *dst = (btc_ble_mesh_sensor_client_args_t *)p_dest; in btc_ble_mesh_sensor_client_arg_deep_copy() local
34 if (!msg || !dst || !src) { in btc_ble_mesh_sensor_client_arg_deep_copy()
41dst->sensor_client_get_state.params = (esp_ble_mesh_client_common_param_t *)bt_mesh_malloc(sizeof(… in btc_ble_mesh_sensor_client_arg_deep_copy()
42dst->sensor_client_get_state.get_state = (esp_ble_mesh_sensor_client_get_state_t *)bt_mesh_malloc(… in btc_ble_mesh_sensor_client_arg_deep_copy()
43 if (dst->sensor_client_get_state.params && dst->sensor_client_get_state.get_state) { in btc_ble_mesh_sensor_client_arg_deep_copy()
44 memcpy(dst->sensor_client_get_state.params, src->sensor_client_get_state.params, in btc_ble_mesh_sensor_client_arg_deep_copy()
46 memcpy(dst->sensor_client_get_state.get_state, src->sensor_client_get_state.get_state, in btc_ble_mesh_sensor_client_arg_deep_copy()
53dst->sensor_client_get_state.get_state->column_get.raw_value_x = bt_mesh_alloc_buf(length); in btc_ble_mesh_sensor_client_arg_deep_copy()
54 if (!dst->sensor_client_get_state.get_state->column_get.raw_value_x) { in btc_ble_mesh_sensor_client_arg_deep_copy()
58 … net_buf_simple_add_mem(dst->sensor_client_get_state.get_state->column_get.raw_value_x, in btc_ble_mesh_sensor_client_arg_deep_copy()
[all …]
Dbtc_ble_mesh_time_scene_model.c30 btc_ble_mesh_time_scene_client_args_t *dst = (btc_ble_mesh_time_scene_client_args_t *)p_dest; in btc_ble_mesh_time_scene_client_arg_deep_copy() local
33 if (!msg || !dst || !src) { in btc_ble_mesh_time_scene_client_arg_deep_copy()
40dst->time_scene_client_get_state.params = (esp_ble_mesh_client_common_param_t *)bt_mesh_malloc(siz… in btc_ble_mesh_time_scene_client_arg_deep_copy()
41 if (dst->time_scene_client_get_state.params) { in btc_ble_mesh_time_scene_client_arg_deep_copy()
42 memcpy(dst->time_scene_client_get_state.params, src->time_scene_client_get_state.params, in btc_ble_mesh_time_scene_client_arg_deep_copy()
49dst->time_scene_client_get_state.get_state = (esp_ble_mesh_time_scene_client_get_state_t *)bt_mesh… in btc_ble_mesh_time_scene_client_arg_deep_copy()
50 if (dst->time_scene_client_get_state.get_state) { in btc_ble_mesh_time_scene_client_arg_deep_copy()
51 … memcpy(dst->time_scene_client_get_state.get_state, src->time_scene_client_get_state.get_state, in btc_ble_mesh_time_scene_client_arg_deep_copy()
60dst->time_scene_client_set_state.params = (esp_ble_mesh_client_common_param_t *)bt_mesh_malloc(siz… in btc_ble_mesh_time_scene_client_arg_deep_copy()
61dst->time_scene_client_set_state.set_state = (esp_ble_mesh_time_scene_client_set_state_t *)bt_mesh… in btc_ble_mesh_time_scene_client_arg_deep_copy()
[all …]
Dbtc_ble_mesh_generic_model.c30 btc_ble_mesh_generic_client_args_t *dst = (btc_ble_mesh_generic_client_args_t *)p_dest; in btc_ble_mesh_generic_client_arg_deep_copy() local
34 if (!msg || !dst || !src) { in btc_ble_mesh_generic_client_arg_deep_copy()
41dst->generic_client_get_state.params = (esp_ble_mesh_client_common_param_t *)bt_mesh_malloc(sizeof… in btc_ble_mesh_generic_client_arg_deep_copy()
42 if (dst->generic_client_get_state.params) { in btc_ble_mesh_generic_client_arg_deep_copy()
43 memcpy(dst->generic_client_get_state.params, src->generic_client_get_state.params, in btc_ble_mesh_generic_client_arg_deep_copy()
50dst->generic_client_get_state.get_state = (esp_ble_mesh_generic_client_get_state_t *)bt_mesh_mallo… in btc_ble_mesh_generic_client_arg_deep_copy()
51 if (dst->generic_client_get_state.get_state) { in btc_ble_mesh_generic_client_arg_deep_copy()
52 … memcpy(dst->generic_client_get_state.get_state, src->generic_client_get_state.get_state, in btc_ble_mesh_generic_client_arg_deep_copy()
61dst->generic_client_set_state.params = (esp_ble_mesh_client_common_param_t *)bt_mesh_malloc(sizeof… in btc_ble_mesh_generic_client_arg_deep_copy()
62dst->generic_client_set_state.set_state = (esp_ble_mesh_generic_client_set_state_t *)bt_mesh_mallo… in btc_ble_mesh_generic_client_arg_deep_copy()
[all …]
Dbtc_ble_mesh_health_model.c31 btc_ble_mesh_health_client_args_t *dst = (btc_ble_mesh_health_client_args_t *)p_dest; in btc_ble_mesh_health_client_arg_deep_copy() local
34 if (!msg || !dst || !src) { in btc_ble_mesh_health_client_arg_deep_copy()
41dst->health_client_get_state.params = (esp_ble_mesh_client_common_param_t *)bt_mesh_malloc(sizeof(… in btc_ble_mesh_health_client_arg_deep_copy()
42 if (dst->health_client_get_state.params) { in btc_ble_mesh_health_client_arg_deep_copy()
43 memcpy(dst->health_client_get_state.params, src->health_client_get_state.params, in btc_ble_mesh_health_client_arg_deep_copy()
50dst->health_client_get_state.get_state = (esp_ble_mesh_health_client_get_state_t *)bt_mesh_malloc(… in btc_ble_mesh_health_client_arg_deep_copy()
51 if (dst->health_client_get_state.get_state) { in btc_ble_mesh_health_client_arg_deep_copy()
52 … memcpy(dst->health_client_get_state.get_state, src->health_client_get_state.get_state, in btc_ble_mesh_health_client_arg_deep_copy()
61dst->health_client_set_state.params = (esp_ble_mesh_client_common_param_t *)bt_mesh_malloc(sizeof(… in btc_ble_mesh_health_client_arg_deep_copy()
62dst->health_client_set_state.set_state = (esp_ble_mesh_health_client_set_state_t *)bt_mesh_malloc(… in btc_ble_mesh_health_client_arg_deep_copy()
[all …]
Dbtc_ble_mesh_lighting_model.c30 btc_ble_mesh_lighting_client_args_t *dst = (btc_ble_mesh_lighting_client_args_t *)p_dest; in btc_ble_mesh_lighting_client_arg_deep_copy() local
33 if (!msg || !dst || !src) { in btc_ble_mesh_lighting_client_arg_deep_copy()
40dst->light_client_get_state.params = (esp_ble_mesh_client_common_param_t *)bt_mesh_malloc(sizeof(e… in btc_ble_mesh_lighting_client_arg_deep_copy()
41 if (dst->light_client_get_state.params) { in btc_ble_mesh_lighting_client_arg_deep_copy()
42 memcpy(dst->light_client_get_state.params, src->light_client_get_state.params, in btc_ble_mesh_lighting_client_arg_deep_copy()
49dst->light_client_get_state.get_state = (esp_ble_mesh_light_client_get_state_t *)bt_mesh_malloc(si… in btc_ble_mesh_lighting_client_arg_deep_copy()
50 if (dst->light_client_get_state.get_state) { in btc_ble_mesh_lighting_client_arg_deep_copy()
51 memcpy(dst->light_client_get_state.get_state, src->light_client_get_state.get_state, in btc_ble_mesh_lighting_client_arg_deep_copy()
60dst->light_client_set_state.params = (esp_ble_mesh_client_common_param_t *)bt_mesh_malloc(sizeof(e… in btc_ble_mesh_lighting_client_arg_deep_copy()
61dst->light_client_set_state.set_state = (esp_ble_mesh_light_client_set_state_t *)bt_mesh_malloc(si… in btc_ble_mesh_lighting_client_arg_deep_copy()
[all …]
Dbtc_ble_mesh_config_model.c31 btc_ble_mesh_config_client_args_t *dst = (btc_ble_mesh_config_client_args_t *)p_dest; in btc_ble_mesh_config_client_arg_deep_copy() local
34 if (!msg || !dst || !src) { in btc_ble_mesh_config_client_arg_deep_copy()
41dst->cfg_client_get_state.params = (esp_ble_mesh_client_common_param_t *)bt_mesh_malloc(sizeof(esp… in btc_ble_mesh_config_client_arg_deep_copy()
42 if (dst->cfg_client_get_state.params) { in btc_ble_mesh_config_client_arg_deep_copy()
43 memcpy(dst->cfg_client_get_state.params, src->cfg_client_get_state.params, in btc_ble_mesh_config_client_arg_deep_copy()
50dst->cfg_client_get_state.get_state = (esp_ble_mesh_cfg_client_get_state_t *)bt_mesh_malloc(sizeof… in btc_ble_mesh_config_client_arg_deep_copy()
51 if (dst->cfg_client_get_state.get_state) { in btc_ble_mesh_config_client_arg_deep_copy()
52 memcpy(dst->cfg_client_get_state.get_state, src->cfg_client_get_state.get_state, in btc_ble_mesh_config_client_arg_deep_copy()
61dst->cfg_client_set_state.params = (esp_ble_mesh_client_common_param_t *)bt_mesh_malloc(sizeof(esp… in btc_ble_mesh_config_client_arg_deep_copy()
62 if (dst->cfg_client_set_state.params) { in btc_ble_mesh_config_client_arg_deep_copy()
[all …]
/hal_espressif-3.7.0/components/bt/esp_ble_mesh/mesh_core/
Dfast_prov.c25 const uint8_t *bt_mesh_fast_prov_dev_key_get(uint16_t dst) in bt_mesh_fast_prov_dev_key_get() argument
27 if (!BLE_MESH_ADDR_IS_UNICAST(dst)) { in bt_mesh_fast_prov_dev_key_get()
28 BT_ERR("Invalid unicast address 0x%04x", dst); in bt_mesh_fast_prov_dev_key_get()
32 if (dst == bt_mesh_primary_addr()) { in bt_mesh_fast_prov_dev_key_get()
36 return bt_mesh_provisioner_dev_key_get(dst); in bt_mesh_fast_prov_dev_key_get()
Dprovisioner_main.c751 bool bt_mesh_provisioner_check_msg_dst(uint16_t dst) in bt_mesh_provisioner_check_msg_dst() argument
758 if (!BLE_MESH_ADDR_IS_UNICAST(dst)) { in bt_mesh_provisioner_check_msg_dst()
764 if (node && dst >= node->unicast_addr && in bt_mesh_provisioner_check_msg_dst()
765 dst < node->unicast_addr + node->element_num) { in bt_mesh_provisioner_check_msg_dst()
773 const uint8_t *bt_mesh_provisioner_dev_key_get(uint16_t dst) in bt_mesh_provisioner_dev_key_get() argument
784 if (!BLE_MESH_ADDR_IS_UNICAST(dst)) { in bt_mesh_provisioner_dev_key_get()
785 BT_ERR("Invalid unicast address 0x%04x", dst); in bt_mesh_provisioner_dev_key_get()
791 if (node && node->unicast_addr == dst) { in bt_mesh_provisioner_dev_key_get()
1553 uint16_t dst; /* Heartbeat destination address (unicast address or group address) */ member
1588 static int hb_filter_alloc(uint16_t src, uint16_t dst) in hb_filter_alloc() argument
[all …]
/hal_espressif-3.7.0/components/wpa_supplicant/src/common/
Dbss.c91 static void wpa_bss_copy_res(struct wpa_bss *dst, struct wpa_scan_res *src, in wpa_bss_copy_res() argument
94 dst->flags = src->flags; in wpa_bss_copy_res()
95 os_memcpy(dst->bssid, src->bssid, ETH_ALEN); in wpa_bss_copy_res()
96 dst->channel = src->chan; in wpa_bss_copy_res()
97 dst->beacon_int = src->beacon_int; in wpa_bss_copy_res()
98 dst->caps = src->caps; in wpa_bss_copy_res()
99 dst->noise = src->noise; in wpa_bss_copy_res()
100 dst->level = src->level; in wpa_bss_copy_res()
101 dst->tsf = src->tsf; in wpa_bss_copy_res()
102 dst->parent_tsf = src->parent_tsf; in wpa_bss_copy_res()
[all …]
Dsae_pk.c349 u8 *dst, *src, *end; in sae_pk_buf_shift_left_19() local
351 dst = buf; in sae_pk_buf_shift_left_19()
356 *dst++ = (src[0] << 3) | (src[1] >> 5); in sae_pk_buf_shift_left_19()
359 *dst++ = *src << 3; in sae_pk_buf_shift_left_19()
360 *dst++ = 0; in sae_pk_buf_shift_left_19()
361 *dst++ = 0; in sae_pk_buf_shift_left_19()
367 u8 *dst, *src, *end; in sae_pk_buf_shift_left_1() local
369 dst = buf; in sae_pk_buf_shift_left_1()
374 *dst++ = (src[0] << 1) | (src[1] >> 7); in sae_pk_buf_shift_left_1()
377 *dst++ = *src << 1; in sae_pk_buf_shift_left_1()
/hal_espressif-3.7.0/components/bt/host/bluedroid/btc/profile/std/gap/
Dbtc_gap_ble.c1263 btc_ble_gap_args_t *dst = (btc_ble_gap_args_t *) p_dest; in btc_gap_ble_arg_deep_copy() local
1266dst->cfg_adv_data.adv_data.p_manufacturer_data = osi_malloc(src->cfg_adv_data.adv_data.manufacture… in btc_gap_ble_arg_deep_copy()
1267 …memcpy(dst->cfg_adv_data.adv_data.p_manufacturer_data, src->cfg_adv_data.adv_data.p_manufacturer_d… in btc_gap_ble_arg_deep_copy()
1272dst->cfg_adv_data.adv_data.p_service_data = osi_malloc(src->cfg_adv_data.adv_data.service_data_len… in btc_gap_ble_arg_deep_copy()
1273 …memcpy(dst->cfg_adv_data.adv_data.p_service_data, src->cfg_adv_data.adv_data.p_service_data, src->… in btc_gap_ble_arg_deep_copy()
1277dst->cfg_adv_data.adv_data.p_service_uuid = osi_malloc(src->cfg_adv_data.adv_data.service_uuid_len… in btc_gap_ble_arg_deep_copy()
1278 …memcpy(dst->cfg_adv_data.adv_data.p_service_uuid, src->cfg_adv_data.adv_data.p_service_uuid, src->… in btc_gap_ble_arg_deep_copy()
1284 btc_ble_gap_args_t *dst = (btc_ble_gap_args_t *) p_dest; in btc_gap_ble_arg_deep_copy() local
1287 dst->cfg_adv_data_raw.raw_adv = osi_malloc(src->cfg_adv_data_raw.raw_adv_len); in btc_gap_ble_arg_deep_copy()
1288 if (dst->cfg_adv_data_raw.raw_adv) { in btc_gap_ble_arg_deep_copy()
[all …]
/hal_espressif-3.7.0/components/bt/esp_ble_mesh/mesh_models/server/include/
Dserver_common.h71 uint16_t dst; member
113 uint8_t tid, uint16_t src, uint16_t dst, int64_t *now);
116 uint8_t tid, uint16_t src, uint16_t dst, int64_t *now);
/hal_espressif-3.7.0/components/wpa_supplicant/include/utils/
Dwpabuf.h151 static inline void wpabuf_put_buf(struct wpabuf *dst, in wpabuf_put_buf() argument
154 wpabuf_put_data(dst, wpabuf_head(src), wpabuf_len(src)); in wpabuf_put_buf()
164 static inline void wpabuf_put_str(struct wpabuf *dst, const char *str) in wpabuf_put_str() argument
166 wpabuf_put_data(dst, str, os_strlen(str)); in wpabuf_put_str()
/hal_espressif-3.7.0/components/esp_hw_support/dma/
Dasync_memcpy_impl_gdma.c140 bool async_memcpy_impl_is_buffer_address_valid(async_memcpy_impl_t *impl, void *src, void *dst) in async_memcpy_impl_is_buffer_address_valid() argument
143 if (esp_ptr_external_ram(dst)) { in async_memcpy_impl_is_buffer_address_valid()
145 valid = valid && (((intptr_t)dst & (impl->psram_trans_align - 1)) == 0); in async_memcpy_impl_is_buffer_address_valid()
149 valid = valid && (((intptr_t)dst & (impl->sram_trans_align - 1)) == 0); in async_memcpy_impl_is_buffer_address_valid()
/hal_espressif-3.7.0/components/bt/host/bluedroid/btc/profile/std/gatt/
Dbtc_gatts.c63 btc_ble_gatts_args_t *dst = (btc_ble_gatts_args_t *) p_dest; in btc_gatts_arg_deep_copy() local
69 dst->send_ind.value = (uint8_t *) osi_malloc(src->send_ind.value_len); in btc_gatts_arg_deep_copy()
70 if (dst->send_ind.value) { in btc_gatts_arg_deep_copy()
71 memcpy(dst->send_ind.value, src->send_ind.value, src->send_ind.value_len); in btc_gatts_arg_deep_copy()
76 dst->send_ind.value = NULL; in btc_gatts_arg_deep_copy()
85 dst->send_rsp.rsp = (esp_gatt_rsp_t *) osi_malloc(sizeof(esp_gatt_rsp_t)); in btc_gatts_arg_deep_copy()
86 if (dst->send_rsp.rsp) { in btc_gatts_arg_deep_copy()
87 memcpy(dst->send_rsp.rsp, src->send_rsp.rsp, sizeof(esp_gatt_rsp_t)); in btc_gatts_arg_deep_copy()
97dst->add_char.char_val.attr_value = (uint8_t *) osi_malloc(src->add_char.char_val.attr_len); in btc_gatts_arg_deep_copy()
98 if (dst->add_char.char_val.attr_value) { in btc_gatts_arg_deep_copy()
[all …]
/hal_espressif-3.7.0/components/mbedtls/port/md/
Desp_md.c57 void esp_md5_clone( mbedtls_md5_context *dst, const mbedtls_md5_context *src ) in esp_md5_clone() argument
59 *dst = *src; in esp_md5_clone()
/hal_espressif-3.7.0/components/bt/esp_ble_mesh/mesh_core/include/
Dcfg_srv.h42 uint16_t dst; member
55 uint16_t dst; member
198 uint16_t dst; member
207 uint16_t dst; member
/hal_espressif-3.7.0/components/mbedtls/port/esp_ds/
Desp_rsa_sign_alt.c113 unsigned char *dst ) in rsa_rsassa_pkcs1_v15_encode() argument
117 unsigned char *p = dst; in rsa_rsassa_pkcs1_v15_encode()
214 if ( p != dst + dst_len ) { in rsa_rsassa_pkcs1_v15_encode()
215 mbedtls_platform_zeroize( dst, dst_len ); in rsa_rsassa_pkcs1_v15_encode()

12345