Home
last modified time | relevance | path

Searched refs:H (Results 1 – 22 of 22) sorted by relevance

/optee_os/lib/libmbedtls/mbedtls/library/
H A Dsha3.c75 #define H(b63, b31, b15) (b63 << 6 | b31 << 5 | b15 << 4) macro
77 H(0, 0, 0) | 0x01, H(0, 0, 1) | 0x82, H(1, 0, 1) | 0x8a, H(1, 1, 1) | 0x00,
78 H(0, 0, 1) | 0x8b, H(0, 1, 0) | 0x01, H(1, 1, 1) | 0x81, H(1, 0, 1) | 0x09,
79 H(0, 0, 0) | 0x8a, H(0, 0, 0) | 0x88, H(0, 1, 1) | 0x09, H(0, 1, 0) | 0x0a,
80 H(0, 1, 1) | 0x8b, H(1, 0, 0) | 0x8b, H(1, 0, 1) | 0x89, H(1, 0, 1) | 0x03,
81 H(1, 0, 1) | 0x02, H(1, 0, 0) | 0x80, H(0, 0, 1) | 0x0a, H(1, 1, 0) | 0x0a,
82 H(1, 1, 1) | 0x81, H(1, 0, 1) | 0x80, H(0, 1, 0) | 0x01, H(1, 1, 1) | 0x08,
84 #undef H
H A Dgcm.c118 ctx->H[MBEDTLS_GCM_HTABLE_SIZE/2][0] = u64h[0]; in gcm_gen_table()
119 ctx->H[MBEDTLS_GCM_HTABLE_SIZE/2][1] = u64h[1]; in gcm_gen_table()
134 ctx->H[0][0] = 0; in gcm_gen_table()
135 ctx->H[0][1] = 0; in gcm_gen_table()
138 gcm_gen_table_rightshift(ctx->H[i], ctx->H[i*2]); in gcm_gen_table()
144 MBEDTLS_PUT_UINT64_BE(ctx->H[i][0], &ctx->H[i][0], 0); in gcm_gen_table()
145 MBEDTLS_PUT_UINT64_BE(ctx->H[i][1], &ctx->H[i][1], 0); in gcm_gen_table()
151 mbedtls_xor_no_simd((unsigned char *) ctx->H[i+j], in gcm_gen_table()
152 (unsigned char *) ctx->H[i], in gcm_gen_table()
153 (unsigned char *) ctx->H[j], in gcm_gen_table()
[all …]
H A Drsa.c1052 mbedtls_mpi H, G, L; in mbedtls_rsa_gen_key() local
1064 mbedtls_mpi_init(&H); in mbedtls_rsa_gen_key()
1094 MBEDTLS_MPI_CHK(mbedtls_mpi_sub_mpi(&H, &ctx->P, &ctx->Q)); in mbedtls_rsa_gen_key()
1095 if (mbedtls_mpi_bitlen(&H) <= ((nbits >= 200) ? ((nbits >> 1) - 99) : 0)) { in mbedtls_rsa_gen_key()
1100 if (H.s < 0) { in mbedtls_rsa_gen_key()
1107 MBEDTLS_MPI_CHK(mbedtls_mpi_mul_mpi(&H, &ctx->P, &ctx->Q)); in mbedtls_rsa_gen_key()
1110 MBEDTLS_MPI_CHK(mbedtls_mpi_gcd(&G, &ctx->E, &H)); in mbedtls_rsa_gen_key()
1117 MBEDTLS_MPI_CHK(mbedtls_mpi_div_mpi(&L, NULL, &H, &G)); in mbedtls_rsa_gen_key()
1150 mbedtls_mpi_free(&H); in mbedtls_rsa_gen_key()
/optee_os/core/arch/arm/dts/
H A Dstm32mp15-pinctrl.dtsi82 pinmux = <STM32_PINMUX('H', 8, AF13)>,/* DCMI_HSYNC */
85 <STM32_PINMUX('H', 9, AF13)>,/* DCMI_D0 */
86 <STM32_PINMUX('H', 10, AF13)>,/* DCMI_D1 */
87 <STM32_PINMUX('H', 11, AF13)>,/* DCMI_D2 */
88 <STM32_PINMUX('H', 12, AF13)>,/* DCMI_D3 */
89 <STM32_PINMUX('H', 14, AF13)>,/* DCMI_D4 */
94 <STM32_PINMUX('H', 7, AF13)>,/* DCMI_D9 */
96 <STM32_PINMUX('H', 15, AF13)>;/* DCMI_D11 */
103 pinmux = <STM32_PINMUX('H', 8, ANALOG)>,/* DCMI_HSYNC */
106 <STM32_PINMUX('H', 9, ANALOG)>,/* DCMI_D0 */
[all …]
H A Dstm32mp15xx-dhcor-avenger96.dtsi199 "AV96-G", "AV96-H", "", "";
H A Dstm32mp15xx-dhcom-som.dtsi253 gpio-line-names = "DHCOM-G", "DHCOM-O", "DHCOM-H", "DHCOM-I",
/optee_os/core/lib/libtomcrypt/src/encauth/gcm/
H A Dgcm_mult_h_arm_ce.c26 b = get_be64(gcm->H); in gcm_mult_h()
27 a = get_be64(gcm->H + 8); in gcm_mult_h()
H A Dgcm_init.c53 if ((err = cipher_descriptor[cipher]->ecb_encrypt(B, gcm->H, &gcm->K)) != CRYPT_OK) { in gcm_init()
74 gcm_gf_mult(gcm->H, B, &gcm->PC[0][y][0]); in gcm_init()
H A Dgcm_mult_h.c43 gcm_gf_mult(gcm->H, I, T); in gcm_mult_h()
/optee_os/core/crypto/
H A Dsm3.c71 uint32_t A, B, C, D, E, F, G, H; in sm3_process() local
131 H = ctx->state[7]; in sm3_process()
137 TT2 = GG0(E, F, G) + H + SS1 + W[j]; in sm3_process()
142 H = G; in sm3_process()
152 TT2 = GG1(E, F, G) + H + SS1 + W[j]; in sm3_process()
157 H = G; in sm3_process()
170 ctx->state[7] ^= H; in sm3_process()
/optee_os/lib/libmbedtls/mbedtls/include/mbedtls/
H A Dgcm.h64 uint64_t MBEDTLS_PRIVATE(H)[MBEDTLS_GCM_HTABLE_SIZE][2]; /*!< Precalculated HTable. */
/optee_os/keys/
H A Ddefault.pem41 ExipV78cZGKoQTfrCRSgSXqO07jo9R1xZCWlz4U/H/MRrENCdhOmVQ4Er4zyxq9r
H A Ddefault_ta.pem41 ExipV78cZGKoQTfrCRSgSXqO07jo9R1xZCWlz4U/H/MRrENCdhOmVQ4Er4zyxq9r
/optee_os/core/lib/libtomcrypt/src/hashes/
H A Dmd5.c33 #define H(x,y,z) (x^y^z) macro
45 a = (a + H(b,c,d) + M + t); a = ROL(a, s) + b;
84 a = (a + H(b,c,d) + M + t); a = ROLc(a, s) + b;
H A Dmd4.c46 #define H(x, y, z) ((x) ^ (y) ^ (z)) macro
63 (a) += H ((b), (c), (d)) + (x) + 0x6ed9eba1UL; \
H A Drmd128.c39 #define H(x, y, z) (((x) | ~(y)) ^ (z)) macro
52 (a) += H((b), (c), (d)) + (x) + 0x6ed9eba1UL;\
68 (a) += H((b), (c), (d)) + (x) + 0x5c4dd124UL;\
H A Drmd256.c33 #define H(x, y, z) (((x) | ~(y)) ^ (z)) macro
46 (a) += H((b), (c), (d)) + (x) + 0x6ed9eba1UL;\
62 (a) += H((b), (c), (d)) + (x) + 0x5c4dd124UL;\
H A Drmd160.c39 #define H(x, y, z) (((x) | ~(y)) ^ (z)) macro
55 (a) += H((b), (c), (d)) + (x) + 0x6ed9eba1UL;\
80 (a) += H((b), (c), (d)) + (x) + 0x6d703ef3UL;\
H A Drmd320.c34 #define H(x, y, z) (((x) | ~(y)) ^ (z)) macro
50 (a) += H((b), (c), (d)) + (x) + 0x6ed9eba1UL;\
75 (a) += H((b), (c), (d)) + (x) + 0x6d703ef3UL;\
/optee_os/core/arch/arm/crypto/
H A Dghash-ce-core_a32.S93 vmull.p8 t1q, t1l, \bd @ H = A2*B
102 veor t1q, t1q, t3q @ M = G + H
/optee_os/core/lib/libtomcrypt/src/headers/
H A Dtomcrypt_mac.h483 unsigned char H[16], /* multiplier */ member
/optee_os/lib/libmbedtls/mbedtls/
H A DChangeLog4429 TLS" - H. Bock, A. Zauner, S. Devlin, J. Somorovsky, P. Jovanovic.