Home
last modified time | relevance | path

Searched refs:s (Results 1 – 25 of 183) sorted by relevance

12345678

/hal_espressif-latest/components/bt/porting/ext/tinycrypt/src/
Dcmac_mode.c97 int tc_cmac_setup(TCCmacState_t s, const uint8_t *key, TCAesKeySched_t sched) in tc_cmac_setup() argument
101 if (s == (TCCmacState_t) 0 || in tc_cmac_setup()
107 _set(s, 0, sizeof(*s)); in tc_cmac_setup()
108 s->sched = sched; in tc_cmac_setup()
111 tc_aes128_set_encrypt_key(s->sched, key); in tc_cmac_setup()
114 _set(s->iv, 0, TC_AES_BLOCK_SIZE); in tc_cmac_setup()
115 tc_aes_encrypt(s->iv, s->iv, s->sched); in tc_cmac_setup()
116 gf_double (s->K1, s->iv); in tc_cmac_setup()
117 gf_double (s->K2, s->K1); in tc_cmac_setup()
120 tc_cmac_init(s); in tc_cmac_setup()
[all …]
Dsha256.c39 int tc_sha256_init(TCSha256State_t s) in tc_sha256_init() argument
42 if (s == (TCSha256State_t) 0) { in tc_sha256_init()
52 _set((uint8_t *) s, 0x00, sizeof(*s)); in tc_sha256_init()
53 s->iv[0] = 0x6a09e667; in tc_sha256_init()
54 s->iv[1] = 0xbb67ae85; in tc_sha256_init()
55 s->iv[2] = 0x3c6ef372; in tc_sha256_init()
56 s->iv[3] = 0xa54ff53a; in tc_sha256_init()
57 s->iv[4] = 0x510e527f; in tc_sha256_init()
58 s->iv[5] = 0x9b05688c; in tc_sha256_init()
59 s->iv[6] = 0x1f83d9ab; in tc_sha256_init()
[all …]
Daes_encrypt.c70 int tc_aes128_set_encrypt_key(TCAesKeySched_t s, const uint8_t *k) in tc_aes128_set_encrypt_key() argument
79 if (s == (TCAesKeySched_t) 0) { in tc_aes128_set_encrypt_key()
86 s->words[i] = (k[Nb*i]<<24) | (k[Nb*i+1]<<16) | in tc_aes128_set_encrypt_key()
91 t = s->words[i-1]; in tc_aes128_set_encrypt_key()
95 s->words[i] = s->words[i-Nk] ^ t; in tc_aes128_set_encrypt_key()
101 static inline void add_round_key(uint8_t *s, const unsigned int *k) in add_round_key() argument
103 s[0] ^= (uint8_t)(k[0] >> 24); s[1] ^= (uint8_t)(k[0] >> 16); in add_round_key()
104 s[2] ^= (uint8_t)(k[0] >> 8); s[3] ^= (uint8_t)(k[0]); in add_round_key()
105 s[4] ^= (uint8_t)(k[1] >> 24); s[5] ^= (uint8_t)(k[1] >> 16); in add_round_key()
106 s[6] ^= (uint8_t)(k[1] >> 8); s[7] ^= (uint8_t)(k[1]); in add_round_key()
[all …]
Daes_decrypt.c62 int tc_aes128_set_decrypt_key(TCAesKeySched_t s, const uint8_t *k) in tc_aes128_set_decrypt_key() argument
64 return tc_aes128_set_encrypt_key(s, k); in tc_aes128_set_decrypt_key()
81 static inline void inv_mix_columns(uint8_t *s) in inv_mix_columns() argument
85 mult_row_column(t, s); in inv_mix_columns()
86 mult_row_column(&t[Nb], s+Nb); in inv_mix_columns()
87 mult_row_column(&t[2*Nb], s+(2*Nb)); in inv_mix_columns()
88 mult_row_column(&t[3*Nb], s+(3*Nb)); in inv_mix_columns()
89 (void)_copy(s, sizeof(t), t, sizeof(t)); in inv_mix_columns()
92 static inline void add_round_key(uint8_t *s, const unsigned int *k) in add_round_key() argument
94 s[0] ^= (uint8_t)(k[0] >> 24); s[1] ^= (uint8_t)(k[0] >> 16); in add_round_key()
[all …]
Decc_dsa.c105 uECC_word_t s[NUM_ECC_WORDS]; in uECC_sign_with_k() local
106 uECC_word_t *k2[2] = {tmp, s}; in uECC_sign_with_k()
119 carry = regularize_k(k, tmp, s, curve); in uECC_sign_with_k()
146 s[num_n_words - 1] = 0; in uECC_sign_with_k()
147 uECC_vli_set(s, p, num_words); in uECC_sign_with_k()
148 uECC_vli_modMult(s, tmp, s, curve->n, num_n_words); /* s = r*d */ in uECC_sign_with_k()
151 uECC_vli_modAdd(s, tmp, s, curve->n, num_n_words); /* s = e + r*d */ in uECC_sign_with_k()
152 uECC_vli_modMult(s, s, k, curve->n, num_n_words); /* s = (e + r*d) / k */ in uECC_sign_with_k()
153 if (uECC_vli_numBits(s, num_n_words) > (bitcount_t)curve->num_bytes * 8) { in uECC_sign_with_k()
157 uECC_vli_nativeToBytes(signature + curve->num_bytes, curve->num_bytes, s); in uECC_sign_with_k()
[all …]
/hal_espressif-latest/components/bt/esp_ble_mesh/mesh_common/tinycrypt/src/
Dcmac_mode.c97 int tc_cmac_setup(TCCmacState_t s, const uint8_t *key, TCAesKeySched_t sched) in tc_cmac_setup() argument
101 if (s == (TCCmacState_t) 0 || in tc_cmac_setup()
107 _set(s, 0, sizeof(*s)); in tc_cmac_setup()
108 s->sched = sched; in tc_cmac_setup()
111 tc_aes128_set_encrypt_key(s->sched, key); in tc_cmac_setup()
114 _set(s->iv, 0, TC_AES_BLOCK_SIZE); in tc_cmac_setup()
115 tc_aes_encrypt(s->iv, s->iv, s->sched); in tc_cmac_setup()
116 gf_double (s->K1, s->iv); in tc_cmac_setup()
117 gf_double (s->K2, s->K1); in tc_cmac_setup()
120 tc_cmac_init(s); in tc_cmac_setup()
[all …]
Dsha256.c39 int tc_sha256_init(TCSha256State_t s) in tc_sha256_init() argument
42 if (s == (TCSha256State_t) 0) { in tc_sha256_init()
52 _set((uint8_t *) s, 0x00, sizeof(*s)); in tc_sha256_init()
53 s->iv[0] = 0x6a09e667; in tc_sha256_init()
54 s->iv[1] = 0xbb67ae85; in tc_sha256_init()
55 s->iv[2] = 0x3c6ef372; in tc_sha256_init()
56 s->iv[3] = 0xa54ff53a; in tc_sha256_init()
57 s->iv[4] = 0x510e527f; in tc_sha256_init()
58 s->iv[5] = 0x9b05688c; in tc_sha256_init()
59 s->iv[6] = 0x1f83d9ab; in tc_sha256_init()
[all …]
Daes_encrypt.c70 int tc_aes128_set_encrypt_key(TCAesKeySched_t s, const uint8_t *k) in tc_aes128_set_encrypt_key() argument
79 if (s == (TCAesKeySched_t) 0) { in tc_aes128_set_encrypt_key()
86 s->words[i] = (k[Nb * i] << 24) | (k[Nb * i + 1] << 16) | in tc_aes128_set_encrypt_key()
91 t = s->words[i - 1]; in tc_aes128_set_encrypt_key()
95 s->words[i] = s->words[i - Nk] ^ t; in tc_aes128_set_encrypt_key()
101 static inline void add_round_key(uint8_t *s, const unsigned int *k) in add_round_key() argument
103 s[0] ^= (uint8_t)(k[0] >> 24); s[1] ^= (uint8_t)(k[0] >> 16); in add_round_key()
104 s[2] ^= (uint8_t)(k[0] >> 8); s[3] ^= (uint8_t)(k[0]); in add_round_key()
105 s[4] ^= (uint8_t)(k[1] >> 24); s[5] ^= (uint8_t)(k[1] >> 16); in add_round_key()
106 s[6] ^= (uint8_t)(k[1] >> 8); s[7] ^= (uint8_t)(k[1]); in add_round_key()
[all …]
Daes_decrypt.c62 int tc_aes128_set_decrypt_key(TCAesKeySched_t s, const uint8_t *k) in tc_aes128_set_decrypt_key() argument
64 return tc_aes128_set_encrypt_key(s, k); in tc_aes128_set_decrypt_key()
81 static inline void inv_mix_columns(uint8_t *s) in inv_mix_columns() argument
85 mult_row_column(t, s); in inv_mix_columns()
86 mult_row_column(&t[Nb], s + Nb); in inv_mix_columns()
87 mult_row_column(&t[2 * Nb], s + (2 * Nb)); in inv_mix_columns()
88 mult_row_column(&t[3 * Nb], s + (3 * Nb)); in inv_mix_columns()
89 (void)_copy(s, sizeof(t), t, sizeof(t)); in inv_mix_columns()
92 static inline void add_round_key(uint8_t *s, const unsigned int *k) in add_round_key() argument
94 s[0] ^= (uint8_t)(k[0] >> 24); s[1] ^= (uint8_t)(k[0] >> 16); in add_round_key()
[all …]
Decc_dsa.c105 uECC_word_t s[NUM_ECC_WORDS]; in uECC_sign_with_k() local
106 uECC_word_t *k2[2] = {tmp, s}; in uECC_sign_with_k()
119 carry = regularize_k(k, tmp, s, curve); in uECC_sign_with_k()
145 s[num_n_words - 1] = 0; in uECC_sign_with_k()
146 uECC_vli_set(s, p, num_words); in uECC_sign_with_k()
147 uECC_vli_modMult(s, tmp, s, curve->n, num_n_words); /* s = r*d */ in uECC_sign_with_k()
150 uECC_vli_modAdd(s, tmp, s, curve->n, num_n_words); /* s = e + r*d */ in uECC_sign_with_k()
151 uECC_vli_modMult(s, s, k, curve->n, num_n_words); /* s = (e + r*d) / k */ in uECC_sign_with_k()
152 if (uECC_vli_numBits(s, num_n_words) > (bitcount_t)curve->num_bytes * 8) { in uECC_sign_with_k()
156 uECC_vli_nativeToBytes(signature + curve->num_bytes, curve->num_bytes, s); in uECC_sign_with_k()
[all …]
/hal_espressif-latest/components/xtensa/esp32s3/include/xtensa/config/
Dtie.h115 #define XCHAL_NCP_SA_LIST(s) \ argument
116 XCHAL_SA_REG(s,1,2,1,1, threadptr, 4, 4, 4,0x03E7, ur,231, 32,0,0,0) \
117 XCHAL_SA_REG(s,1,0,0,1, acclo, 4, 4, 4,0x0210, sr,16 , 32,0,0,0) \
118 XCHAL_SA_REG(s,1,0,0,1, acchi, 4, 4, 4,0x0211, sr,17 , 8,0,0,0) \
119 XCHAL_SA_REG(s,0,0,0,1, br, 4, 4, 4,0x0204, sr,4 , 16,0,0,0) \
120 XCHAL_SA_REG(s,0,0,0,1, scompare1, 4, 4, 4,0x020C, sr,12 , 32,0,0,0) \
121 XCHAL_SA_REG(s,0,0,0,1, m0, 4, 4, 4,0x0220, sr,32 , 32,0,0,0) \
122 XCHAL_SA_REG(s,0,0,0,1, m1, 4, 4, 4,0x0221, sr,33 , 32,0,0,0) \
123 XCHAL_SA_REG(s,0,0,0,1, m2, 4, 4, 4,0x0222, sr,34 , 32,0,0,0) \
124 XCHAL_SA_REG(s,0,0,0,1, m3, 4, 4, 4,0x0223, sr,35 , 32,0,0,0)
[all …]
/hal_espressif-latest/components/xtensa/esp32/include/xtensa/config/
Dtie.h112 #define XCHAL_NCP_SA_LIST(s) \ argument
113 XCHAL_SA_REG(s,1,2,1,1, threadptr, 4, 4, 4,0x03E7, ur,231, 32,0,0,0) \
114 XCHAL_SA_REG(s,1,0,0,1, acclo, 4, 4, 4,0x0210, sr,16 , 32,0,0,0) \
115 XCHAL_SA_REG(s,1,0,0,1, acchi, 4, 4, 4,0x0211, sr,17 , 8,0,0,0) \
116 XCHAL_SA_REG(s,0,0,0,1, br, 4, 4, 4,0x0204, sr,4 , 16,0,0,0) \
117 XCHAL_SA_REG(s,0,0,0,1, scompare1, 4, 4, 4,0x020C, sr,12 , 32,0,0,0) \
118 XCHAL_SA_REG(s,0,0,0,1, m0, 4, 4, 4,0x0220, sr,32 , 32,0,0,0) \
119 XCHAL_SA_REG(s,0,0,0,1, m1, 4, 4, 4,0x0221, sr,33 , 32,0,0,0) \
120 XCHAL_SA_REG(s,0,0,0,1, m2, 4, 4, 4,0x0222, sr,34 , 32,0,0,0) \
121 XCHAL_SA_REG(s,0,0,0,1, m3, 4, 4, 4,0x0223, sr,35 , 32,0,0,0) \
[all …]
/hal_espressif-latest/components/wpa_supplicant/src/crypto/
Daes-internal-enc.c39 #define ROUND(i,d,s) \ in rijndaelEncrypt() argument
40 d##0 = TE0(s##0) ^ TE1(s##1) ^ TE2(s##2) ^ TE3(s##3) ^ rk[4 * i]; \ in rijndaelEncrypt()
41 d##1 = TE0(s##1) ^ TE1(s##2) ^ TE2(s##3) ^ TE3(s##0) ^ rk[4 * i + 1]; \ in rijndaelEncrypt()
42 d##2 = TE0(s##2) ^ TE1(s##3) ^ TE2(s##0) ^ TE3(s##1) ^ rk[4 * i + 2]; \ in rijndaelEncrypt()
43 d##3 = TE0(s##3) ^ TE1(s##0) ^ TE2(s##1) ^ TE3(s##2) ^ rk[4 * i + 3] in rijndaelEncrypt()
47 ROUND(1,t,s); in rijndaelEncrypt()
48 ROUND(2,s,t); in rijndaelEncrypt()
49 ROUND(3,t,s); in rijndaelEncrypt()
50 ROUND(4,s,t); in rijndaelEncrypt()
51 ROUND(5,t,s); in rijndaelEncrypt()
[all …]
Daes-internal-dec.c92 #define ROUND(i,d,s) \ in rijndaelDecrypt() argument
93 d##0 = TD0(s##0) ^ TD1(s##3) ^ TD2(s##2) ^ TD3(s##1) ^ rk[4 * i]; \ in rijndaelDecrypt()
94 d##1 = TD0(s##1) ^ TD1(s##0) ^ TD2(s##3) ^ TD3(s##2) ^ rk[4 * i + 1]; \ in rijndaelDecrypt()
95 d##2 = TD0(s##2) ^ TD1(s##1) ^ TD2(s##0) ^ TD3(s##3) ^ rk[4 * i + 2]; \ in rijndaelDecrypt()
96 d##3 = TD0(s##3) ^ TD1(s##2) ^ TD2(s##1) ^ TD3(s##0) ^ rk[4 * i + 3] in rijndaelDecrypt()
100 ROUND(1,t,s); in rijndaelDecrypt()
101 ROUND(2,s,t); in rijndaelDecrypt()
102 ROUND(3,t,s); in rijndaelDecrypt()
103 ROUND(4,s,t); in rijndaelDecrypt()
104 ROUND(5,t,s); in rijndaelDecrypt()
[all …]
/hal_espressif-latest/components/xtensa/esp32s2/include/xtensa/config/
Dtie.h89 #define XCHAL_NCP_SA_LIST(s) \ argument
90 XCHAL_SA_REG(s,1,2,1,1, threadptr, 4, 4, 4,0x03E7, ur,231, 32,0,0,0)
93 #define XCHAL_CP0_SA_LIST(s) /* empty */ argument
96 #define XCHAL_CP1_SA_LIST(s) /* empty */ argument
99 #define XCHAL_CP2_SA_LIST(s) /* empty */ argument
102 #define XCHAL_CP3_SA_LIST(s) /* empty */ argument
105 #define XCHAL_CP4_SA_LIST(s) /* empty */ argument
108 #define XCHAL_CP5_SA_LIST(s) /* empty */ argument
111 #define XCHAL_CP6_SA_LIST(s) /* empty */ argument
114 #define XCHAL_CP7_SA_LIST(s) /* empty */ argument
/hal_espressif-latest/components/wpa_supplicant/port/include/
Dos.h32 char *z_strdup(const char *s);
223 #define os_malloc(s) os_wpa_malloc_func((s)) argument
226 #define os_realloc(p, s) os_wpa_realloc_func((p), (s)) argument
229 #define os_zalloc(s) os_wpa_calloc_func(1, (s)) argument
232 #define os_calloc(p, s) os_wpa_calloc_func((p), (s)) argument
240 #define os_bzero(s, n) memset(s, 0, n) argument
246 #define os_strdup(s) _strdup(s) argument
248 #define os_strdup(s) z_strdup(s) argument
251 char * ets_strdup(const char *s);
254 #define os_memcpy(d, s, n) memcpy((d), (s), (n)) argument
[all …]
/hal_espressif-latest/components/mbedtls/port/ecdsa/
Decdsa_alt.c96 key->MBEDTLS_PRIVATE(s) = ECDSA_KEY_MAGIC; in esp_ecdsa_privkey_load_mpi()
126 static int esp_ecdsa_sign(mbedtls_ecp_group *grp, mbedtls_mpi* r, mbedtls_mpi* s, in esp_ecdsa_sign() argument
137 if (!grp || !r || !s || !d || !msg) { in esp_ecdsa_sign()
193 mbedtls_mpi_read_binary_le(s, s_le, len); in esp_ecdsa_sign()
201 extern int __real_mbedtls_ecdsa_sign(mbedtls_ecp_group *grp, mbedtls_mpi *r, mbedtls_mpi *s,
205 int __wrap_mbedtls_ecdsa_sign(mbedtls_ecp_group *grp, mbedtls_mpi *r, mbedtls_mpi *s,
209 int __wrap_mbedtls_ecdsa_sign(mbedtls_ecp_group *grp, mbedtls_mpi *r, mbedtls_mpi *s, in __wrap_mbedtls_ecdsa_sign() argument
216 if (d->MBEDTLS_PRIVATE(s) == ECDSA_KEY_MAGIC) { in __wrap_mbedtls_ecdsa_sign()
218 return esp_ecdsa_sign(grp, r, s, d, buf, blen); in __wrap_mbedtls_ecdsa_sign()
220 return __real_mbedtls_ecdsa_sign(grp, r, s, d, buf, blen, f_rng, p_rng); in __wrap_mbedtls_ecdsa_sign()
[all …]
/hal_espressif-latest/components/wpa_supplicant/src/ap/
Dsta_info.c44 struct sta_info *s; in ap_get_sta() local
46 s = hapd->sta_hash[STA_HASH(sta)]; in ap_get_sta()
47 while (s != NULL && os_memcmp(s->addr, sta, 6) != 0) in ap_get_sta()
48 s = s->hnext; in ap_get_sta()
49 return s; in ap_get_sta()
82 struct sta_info *s; in ap_sta_hash_del() local
84 s = hapd->sta_hash[STA_HASH(sta->addr)]; in ap_sta_hash_del()
85 if (s == NULL) return; in ap_sta_hash_del()
86 if (os_memcmp(s->addr, sta->addr, 6) == 0) { in ap_sta_hash_del()
87 hapd->sta_hash[STA_HASH(sta->addr)] = s->hnext; in ap_sta_hash_del()
[all …]
/hal_espressif-latest/tools/esptool_py/docs/en/espefuse/
Dcheck-error-cmd.rst20 Error(s) in BLOCK0 [ERRORS:1 FAIL:1]
36 Error(s) in BLOCK1 [ERRORS:0 FAIL:1]
37 Error(s) in BLOCK2 [ERRORS:1 FAIL:1]
38 Error(s) in BLOCK3 [ERRORS:1 FAIL:1]
45 Error(s) in BLOCK1 [ERRORS:0 FAIL:1]
46 Error(s) in BLOCK2 [ERRORS:1 FAIL:1]
47 Error(s) in BLOCK3 [ERRORS:1 FAIL:1]
53 A fatal error occurred: Error(s) were detected in eFuses
61 Error(s) in BLOCK1 [ERRORS:0 FAIL:1]
62 Error(s) in BLOCK2 [ERRORS:1 FAIL:1]
[all …]
/hal_espressif-latest/components/bt/host/bluedroid/stack/smp/
Daes.c305 # define block_copy_nn(d, s, l) memcpy(d, s, l) argument
306 # define block_copy(d, s) memcpy(d, s, N_BLOCK) argument
308 # define block_copy_nn(d, s, l) copy_block_nn(d, s, l) argument
309 # define block_copy(d, s) copy_block(d, s) argument
313 static void copy_block( void *d, const void *s ) in copy_block() argument
316 ((uint_32t *)d)[ 0] = ((uint_32t *)s)[ 0]; in copy_block()
317 ((uint_32t *)d)[ 1] = ((uint_32t *)s)[ 1]; in copy_block()
318 ((uint_32t *)d)[ 2] = ((uint_32t *)s)[ 2]; in copy_block()
319 ((uint_32t *)d)[ 3] = ((uint_32t *)s)[ 3]; in copy_block()
321 ((uint_8t *)d)[ 0] = ((uint_8t *)s)[ 0]; in copy_block()
[all …]
/hal_espressif-latest/components/bt/porting/ext/tinycrypt/include/tinycrypt/
Dcmac_mode.h142 int tc_cmac_setup(TCCmacState_t s, const uint8_t *key,
153 int tc_cmac_erase(TCCmacState_t s);
163 int tc_cmac_init(TCCmacState_t s);
176 int tc_cmac_update(TCCmacState_t s, const uint8_t *data, size_t dlen);
188 int tc_cmac_final(uint8_t *tag, TCCmacState_t s);
/hal_espressif-latest/components/bt/esp_ble_mesh/mesh_common/tinycrypt/include/tinycrypt/
Dcmac_mode.h142 int tc_cmac_setup(TCCmacState_t s, const uint8_t *key,
153 int tc_cmac_erase(TCCmacState_t s);
163 int tc_cmac_init(TCCmacState_t s);
176 int tc_cmac_update(TCCmacState_t s, const uint8_t *data, size_t dlen);
188 int tc_cmac_final(uint8_t *tag, TCCmacState_t s);
/hal_espressif-latest/components/bootloader_support/src/
Dbootloader_common_loader.c34 uint32_t bootloader_common_ota_select_crc(const esp_ota_select_entry_t *s) in bootloader_common_ota_select_crc() argument
36 return esp_rom_crc32_le(UINT32_MAX, (uint8_t*)&s->ota_seq, 4); in bootloader_common_ota_select_crc()
39 bool bootloader_common_ota_select_invalid(const esp_ota_select_entry_t *s) in bootloader_common_ota_select_invalid() argument
41 …return s->ota_seq == UINT32_MAX || s->ota_state == ESP_OTA_IMG_INVALID || s->ota_state == ESP_OTA_… in bootloader_common_ota_select_invalid()
44 bool bootloader_common_ota_select_valid(const esp_ota_select_entry_t *s) in bootloader_common_ota_select_valid() argument
46 …return bootloader_common_ota_select_invalid(s) == false && s->crc == bootloader_common_ota_select_… in bootloader_common_ota_select_valid()
/hal_espressif-latest/tools/idf_monitor/idf_monitor_base/
Dline_matcher.py42 s = f.split(r':')
43 if len(s) == 1:
46 elif len(s) == 2:
47 if len(s[0]) == 0:
50 lev = self.level[s[1].upper()]
55 self._dict[s[0]] = lev
/hal_espressif-latest/components/mbedtls/port/
Desp_bignum.c254 Z->MBEDTLS_PRIVATE(s) = X->MBEDTLS_PRIVATE(s) * Y->MBEDTLS_PRIVATE(s); in esp_mpi_mul_mpi_mod()
437 if (X->MBEDTLS_PRIVATE(s) == -1 && (Y->MBEDTLS_PRIVATE(p[0]) & 1) != 0) { in esp_mpi_exp_mod()
438 Z->MBEDTLS_PRIVATE(s) = -1; in esp_mpi_exp_mod()
441 Z->MBEDTLS_PRIVATE(s) = 1; in esp_mpi_exp_mod()
506 Z->MBEDTLS_PRIVATE(s) *= X->MBEDTLS_PRIVATE(s); in mbedtls_mpi_mul_mpi()
511 Z->MBEDTLS_PRIVATE(s) *= Y->MBEDTLS_PRIVATE(s); in mbedtls_mpi_mul_mpi()
550 Z->MBEDTLS_PRIVATE(s) = X->MBEDTLS_PRIVATE(s) * Y->MBEDTLS_PRIVATE(s); in mbedtls_mpi_mul_mpi()
561 _B.MBEDTLS_PRIVATE(s) = 1; in mbedtls_mpi_mul_int()
596 .MBEDTLS_PRIVATE(s) = Y->MBEDTLS_PRIVATE(s) in mpi_mult_mpi_overlong()
602 .MBEDTLS_PRIVATE(s) = Y->MBEDTLS_PRIVATE(s) in mpi_mult_mpi_overlong()
[all …]

12345678