Home
last modified time | relevance | path

Searched refs:e (Results 1 – 25 of 147) sorted by relevance

123456

/hal_espressif-latest/components/wpa_supplicant/src/crypto/
Dsha1-internal.c178 u32 a, b, c, d, e; in SHA1Transform() local
196 e = state[4]; in SHA1Transform()
198 R0(a,b,c,d,e, 0); R0(e,a,b,c,d, 1); R0(d,e,a,b,c, 2); R0(c,d,e,a,b, 3); in SHA1Transform()
199 R0(b,c,d,e,a, 4); R0(a,b,c,d,e, 5); R0(e,a,b,c,d, 6); R0(d,e,a,b,c, 7); in SHA1Transform()
200 R0(c,d,e,a,b, 8); R0(b,c,d,e,a, 9); R0(a,b,c,d,e,10); R0(e,a,b,c,d,11); in SHA1Transform()
201 R0(d,e,a,b,c,12); R0(c,d,e,a,b,13); R0(b,c,d,e,a,14); R0(a,b,c,d,e,15); in SHA1Transform()
202 R1(e,a,b,c,d,16); R1(d,e,a,b,c,17); R1(c,d,e,a,b,18); R1(b,c,d,e,a,19); in SHA1Transform()
203 R2(a,b,c,d,e,20); R2(e,a,b,c,d,21); R2(d,e,a,b,c,22); R2(c,d,e,a,b,23); in SHA1Transform()
204 R2(b,c,d,e,a,24); R2(a,b,c,d,e,25); R2(e,a,b,c,d,26); R2(d,e,a,b,c,27); in SHA1Transform()
205 R2(c,d,e,a,b,28); R2(b,c,d,e,a,29); R2(a,b,c,d,e,30); R2(e,a,b,c,d,31); in SHA1Transform()
[all …]
Daes-omac1.c49 size_t i, e, left, total_len; in omac1_aes_vector() local
60 for (e = 0; e < num_elem; e++) in omac1_aes_vector()
61 total_len += len[e]; in omac1_aes_vector()
64 e = 0; in omac1_aes_vector()
79 e++; in omac1_aes_vector()
80 pos = addr[e]; in omac1_aes_vector()
81 end = pos + len[e]; in omac1_aes_vector()
103 e++; in omac1_aes_vector()
104 pos = addr[e]; in omac1_aes_vector()
105 end = pos + len[e]; in omac1_aes_vector()
Dcrypto.h303 const u8 *e, size_t e_len);
756 void crypto_ec_deinit(struct crypto_ec *e);
763 size_t crypto_ec_prime_len(struct crypto_ec *e);
770 size_t crypto_ec_prime_len_bits(struct crypto_ec *e);
777 size_t crypto_ec_order_len(struct crypto_ec *e);
784 const struct crypto_bignum * crypto_ec_get_prime(struct crypto_ec *e);
791 const struct crypto_bignum * crypto_ec_get_order(struct crypto_ec *e);
805 const struct crypto_bignum * crypto_ec_get_b(struct crypto_ec *e);
814 struct crypto_ec_point * crypto_ec_point_init(struct crypto_ec *e);
835 int crypto_ec_point_to_bin(struct crypto_ec *e,
[all …]
/hal_espressif-latest/tools/esptool_py/espefuse/efuse/
Dbase_operations.py70 "[{}].".format(", ".join([e.name for e in efuses.efuses])),
74 efuse_choices=[e.name for e in efuses.efuses]
75 + [name for e in efuses.efuses for name in e.alt_names if name != ""],
92 choices=[e.name for e in efuses.efuses if e.read_disable_bit is not None]
95 for e in efuses.efuses
96 if e.read_disable_bit is not None
97 for name in e.alt_names
110 choices=[e.name for e in efuses.efuses if e.write_disable_bit is not None]
113 for e in efuses.efuses
114 if e.write_disable_bit is not None
[all …]
/hal_espressif-latest/components/wpa_supplicant/esp_supplicant/src/crypto/
Dcrypto_mbedtls-ec.c50 struct crypto_ec *e; in crypto_ec_init() local
66 e = os_zalloc(sizeof(*e)); in crypto_ec_init()
67 if (e == NULL) { in crypto_ec_init()
71 mbedtls_ecp_group_init(&e->group); in crypto_ec_init()
73 if (mbedtls_ecp_group_load(&e->group, grp_id)) { in crypto_ec_init()
74 crypto_ec_deinit(e); in crypto_ec_init()
75 e = NULL; in crypto_ec_init()
78 return e; in crypto_ec_init()
82 void crypto_ec_deinit(struct crypto_ec *e) in crypto_ec_deinit() argument
84 if (e == NULL) { in crypto_ec_deinit()
[all …]
/hal_espressif-latest/tools/idf_monitor/idf_monitor_base/
Dweb_socket_client.py61 except Exception as e: # noqa
62 red_print('WebSocket connection error: {}'.format(e))
73 except Exception as e: # noqa
74 red_print('WebSocket close error: {}'.format(e))
85 except Exception as e: # noqa
86 red_print('WebSocket send error: {}'.format(e))
99 except Exception as e:
100 red_print('WebSocket receive error: {}'.format(e))
Dgdbhelper.py62 except OSError as e:
63 red_print('%s: %s' % (' '.join(cmd), e))
124 except subprocess.CalledProcessError as e:
125 yellow_print('Failed to run gdb_panic_server.py script: {}\n{}\n\n'.format(e, e.output))
131 except OSError as e:
132 yellow_print('Couldn\'t remove temporary panic output file ({})'.format(e))
Dlogger.py80 except Exception as e: # noqa
81 red_print('\nLog file {} cannot be created: {}'.format(name, e))
89 except Exception as e: # noqa
90 red_print('\nLog file cannot be closed: {}'.format(e))
116 except Exception as e:
117 red_print('\nCannot write to file: {}'.format(e))
Dcoredump.py77 except subprocess.CalledProcessError as e:
78 yellow_print('Failed to run espcoredump script: {}\n{}\n\n'.format(e, e.output))
87 except OSError as e:
88 yellow_print('Couldn\'t remote temporary core dump file ({})'.format(e))
/hal_espressif-latest/tools/esptool_py/espsecure/esp_hsm_sign/
D__init__.py66 except pkcs11.exceptions.PKCS11Error as e:
67 handle_exceptions(e)
80 except pkcs11.exceptions.PKCS11Error as e:
81 handle_exceptions(e)
105 e = int.from_bytes(exponent, byteorder="big")
107 public_key = RSA.RSAPublicNumbers(e, n).public_key()
124 except pkcs11.exceptions.PKCS11Error as e:
125 handle_exceptions(e)
153 except pkcs11.exceptions.PKCS11Error as e:
154 handle_exceptions(e, mechanism)
[all …]
Dexceptions.py20 def handle_exceptions(e, info=""): argument
21 exception_type = e.__class__
50 print(e.__class__, info)
/hal_espressif-latest/components/wpa_supplicant/src/tls/
Drsa.c20 struct bignum *e; /* public exponent */ member
72 key->e = bignum_init(); in crypto_rsa_import_public_key()
73 if (key->n == NULL || key->e == NULL) { in crypto_rsa_import_public_key()
94 pos = crypto_rsa_parse_integer(pos, end, key->e); in crypto_rsa_import_public_key()
116 const u8 *e, size_t e_len) in crypto_rsa_import_public_key_parts() argument
125 key->e = bignum_init(); in crypto_rsa_import_public_key_parts()
126 if (key->n == NULL || key->e == NULL || in crypto_rsa_import_public_key_parts()
128 bignum_set_unsigned_bin(key->e, e, e_len) < 0) { in crypto_rsa_import_public_key_parts()
158 key->e = bignum_init(); in crypto_rsa_import_private_key()
166 if (key->n == NULL || key->e == NULL || key->d == NULL || in crypto_rsa_import_private_key()
[all …]
/hal_espressif-latest/components/bt/porting/ext/tinycrypt/src/
Dsha256.c183 unsigned int a, b, c, d, e, f, g, h; in compress() local
191 e = iv[4]; f = iv[5]; g = iv[6]; h = iv[7]; in compress()
196 t1 += h + Sigma1(e) + Ch(e, f, g) + k256[i]; in compress()
198 h = g; g = f; f = e; e = d + t1; in compress()
209 t1 += h + Sigma1(e) + Ch(e, f, g) + k256[i]; in compress()
211 h = g; g = f; f = e; e = d + t1; in compress()
216 iv[4] += e; iv[5] += f; iv[6] += g; iv[7] += h; in compress()
/hal_espressif-latest/components/bt/esp_ble_mesh/mesh_common/tinycrypt/src/
Dsha256.c183 unsigned int a, b, c, d, e, f, g, h; in compress() local
191 e = iv[4]; f = iv[5]; g = iv[6]; h = iv[7]; in compress()
196 t1 += h + Sigma1(e) + Ch(e, f, g) + k256[i]; in compress()
198 h = g; g = f; f = e; e = d + t1; in compress()
209 t1 += h + Sigma1(e) + Ch(e, f, g) + k256[i]; in compress()
211 h = g; g = f; f = e; e = d + t1; in compress()
216 iv[4] += e; iv[5] += f; iv[6] += g; iv[7] += h; in compress()
/hal_espressif-latest/tools/esptool_py/flasher_stub/
Dwrap_stub.py27 e = esptool.bin_image.ELFFile(elf_file)
29 text_section = e.get_section(".text")
31 "entry": e.entrypoint,
36 data_section = e.get_section(".data")
42 for s in e.nobits_sections:
/hal_espressif-latest/tools/esptool_py/espefuse/efuse/esp32c2/
Dfields.py113 for e in self.efuses:
114 if efuse_name == e.name or any(x == efuse_name for x in e.alt_names):
115 return e
127 for e in self.efuses:
128 if efuse_name == e.name or any(x == efuse_name for x in e.alt_names):
129 return e
362 def print_field(e, new_value): argument
365 e.name, e.description, e.get_bitstring(), new_value
/hal_espressif-latest/components/bootloader_support/src/secure_boot_v2/
Dsecure_boot_rsa_signature.c52 const mbedtls_mpi e = { .MBEDTLS_PRIVATE(s) = 1, in verify_rsa_signature_block() local
53 .MBEDTLS_PRIVATE(n) = sizeof(trusted_block->key.e)/sizeof(mbedtls_mpi_uint), // 1 in verify_rsa_signature_block()
54 .MBEDTLS_PRIVATE(p) = (void *)&trusted_block->key.e, in verify_rsa_signature_block()
58 ret = mbedtls_rsa_import(&pk, &N, NULL, NULL, NULL, &e); in verify_rsa_signature_block()
/hal_espressif-latest/tools/esptool_py/test/
Dtest_imagegen.py70 e = ELFFile(f)
71 section = e.get_section_by_name(section_name)
90 e = ELFFile(f)
91 section = e.get_section_by_name(section_name)
127 except subprocess.CalledProcessError as e:
128 print(e.output)
155 except subprocess.CalledProcessError as e:
156 print(e.output)
178 e = ELFFile(f)
179 irom_section = e.get_section_by_name(".irom0.text")
[all …]
/hal_espressif-latest/tools/esptool_py/espefuse/efuse/esp32p4/
Dfields.py117 for e in self.efuses:
118 if efuse_name == e.name or any(x == efuse_name for x in e.alt_names):
119 return e
131 for e in self.efuses:
132 if efuse_name == e.name or any(x == efuse_name for x in e.alt_names):
133 return e
365 def print_field(e, new_value): argument
368 e.name, e.description, e.get_bitstring(), new_value
/hal_espressif-latest/tools/esptool_py/espefuse/efuse/esp32/
Dfields.py139 for e in self.efuses:
140 if efuse_name == e.name or any(x == efuse_name for x in e.alt_names):
141 return e
161 for e in self.efuses:
162 if efuse_name == e.name or any(x == efuse_name for x in e.alt_names):
163 return e
339 def print_field(e, new_value): argument
342 e.name, e.description, e.get_bitstring(), new_value
/hal_espressif-latest/tools/esptool_py/espefuse/efuse/esp32c3/
Dfields.py116 for e in self.efuses:
117 if efuse_name == e.name or any(x == efuse_name for x in e.alt_names):
118 return e
130 for e in self.efuses:
131 if efuse_name == e.name or any(x == efuse_name for x in e.alt_names):
132 return e
378 def print_field(e, new_value): argument
381 e.name, e.description, e.get_bitstring(), new_value
/hal_espressif-latest/tools/esptool_py/espefuse/efuse/esp32c5/
Dfields.py116 for e in self.efuses:
117 if efuse_name == e.name or any(x == efuse_name for x in e.alt_names):
118 return e
130 for e in self.efuses:
131 if efuse_name == e.name or any(x == efuse_name for x in e.alt_names):
132 return e
387 def print_field(e, new_value): argument
390 e.name, e.description, e.get_bitstring(), new_value
/hal_espressif-latest/tools/esptool_py/espefuse/efuse/esp32c5beta3/
Dfields.py116 for e in self.efuses:
117 if efuse_name == e.name or any(x == efuse_name for x in e.alt_names):
118 return e
130 for e in self.efuses:
131 if efuse_name == e.name or any(x == efuse_name for x in e.alt_names):
132 return e
387 def print_field(e, new_value): argument
390 e.name, e.description, e.get_bitstring(), new_value
/hal_espressif-latest/tools/esptool_py/espefuse/efuse/esp32c6/
Dfields.py116 for e in self.efuses:
117 if efuse_name == e.name or any(x == efuse_name for x in e.alt_names):
118 return e
130 for e in self.efuses:
131 if efuse_name == e.name or any(x == efuse_name for x in e.alt_names):
132 return e
387 def print_field(e, new_value): argument
390 e.name, e.description, e.get_bitstring(), new_value
/hal_espressif-latest/tools/esptool_py/espefuse/efuse/esp32c61/
Dfields.py116 for e in self.efuses:
117 if efuse_name == e.name or any(x == efuse_name for x in e.alt_names):
118 return e
130 for e in self.efuses:
131 if efuse_name == e.name or any(x == efuse_name for x in e.alt_names):
132 return e
387 def print_field(e, new_value): argument
390 e.name, e.description, e.get_bitstring(), new_value

123456