Home
last modified time | relevance | path

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

/mbedtls-latest/library/
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
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 …]
Drsa.c1050 mbedtls_mpi H, G, L; in mbedtls_rsa_gen_key() local
1062 mbedtls_mpi_init(&H); in mbedtls_rsa_gen_key()
1092 MBEDTLS_MPI_CHK(mbedtls_mpi_sub_mpi(&H, &ctx->P, &ctx->Q)); in mbedtls_rsa_gen_key()
1093 if (mbedtls_mpi_bitlen(&H) <= ((nbits >= 200) ? ((nbits >> 1) - 99) : 0)) { in mbedtls_rsa_gen_key()
1098 if (H.s < 0) { in mbedtls_rsa_gen_key()
1105 MBEDTLS_MPI_CHK(mbedtls_mpi_mul_mpi(&H, &ctx->P, &ctx->Q)); in mbedtls_rsa_gen_key()
1108 MBEDTLS_MPI_CHK(mbedtls_mpi_gcd(&G, &ctx->E, &H)); in mbedtls_rsa_gen_key()
1115 MBEDTLS_MPI_CHK(mbedtls_mpi_div_mpi(&L, NULL, &H, &G)); in mbedtls_rsa_gen_key()
1148 mbedtls_mpi_free(&H); in mbedtls_rsa_gen_key()
/mbedtls-latest/programs/pkey/
Dmpi_demo.c31 mbedtls_mpi E, P, Q, N, H, D, X, Y, Z; in main() local
34 mbedtls_mpi_init(&H); mbedtls_mpi_init(&D); mbedtls_mpi_init(&X); mbedtls_mpi_init(&Y); in main()
53 MBEDTLS_MPI_CHK(mbedtls_mpi_mul_mpi(&H, &P, &Q)); in main()
54 MBEDTLS_MPI_CHK(mbedtls_mpi_inv_mod(&D, &E, &H)); in main()
75 mbedtls_mpi_free(&H); mbedtls_mpi_free(&D); mbedtls_mpi_free(&X); mbedtls_mpi_free(&Y); in main()
/mbedtls-latest/programs/test/cmake_package/
DCMakeLists.txt13 "-H${MbedTLS_SOURCE_DIR}"
/mbedtls-latest/programs/test/cmake_package_install/
DCMakeLists.txt14 "-H${MbedTLS_SOURCE_DIR}"
/mbedtls-latest/include/mbedtls/
Dgcm.h64 uint64_t MBEDTLS_PRIVATE(H)[MBEDTLS_GCM_HTABLE_SIZE][2]; /*!< Precalculated HTable. */
/mbedtls-latest/tests/suites/
Dtest_suite_psa_crypto_se_driver_hal_mocks.function566 const uint8_t hash[1] = { 'H' };
627 const uint8_t hash[1] = { 'H' };
/mbedtls-latest/docs/proposed/
Dpsa-conditional-inclusion-c.md250 time-stamp-format: "%04Y/%02m/%02d %02H:%02M:%02S %Z"
Dpsa-driver-interface.md1457 time-stamp-format: "%04Y/%02m/%02d %02H:%02M:%02S %Z"
/mbedtls-latest/
DChangeLog4236 TLS" - H. Bock, A. Zauner, S. Devlin, J. Somorovsky, P. Jovanovic.