/mbedtls-latest/library/ |
D | sha256.c | 497 uint32_t A[8]; in mbedtls_internal_sha256_process_c() member 503 local.A[i] = ctx->state[i]; in mbedtls_internal_sha256_process_c() 514 P(local.A[0], local.A[1], local.A[2], local.A[3], local.A[4], in mbedtls_internal_sha256_process_c() 515 local.A[5], local.A[6], local.A[7], local.W[i], K[i]); in mbedtls_internal_sha256_process_c() 517 local.temp1 = local.A[7]; local.A[7] = local.A[6]; in mbedtls_internal_sha256_process_c() 518 local.A[6] = local.A[5]; local.A[5] = local.A[4]; in mbedtls_internal_sha256_process_c() 519 local.A[4] = local.A[3]; local.A[3] = local.A[2]; in mbedtls_internal_sha256_process_c() 520 local.A[2] = local.A[1]; local.A[1] = local.A[0]; in mbedtls_internal_sha256_process_c() 521 local.A[0] = local.temp1; in mbedtls_internal_sha256_process_c() 529 P(local.A[0], local.A[1], local.A[2], local.A[3], local.A[4], in mbedtls_internal_sha256_process_c() [all …]
|
D | md5.c | 68 uint32_t X[16], A, B, C, D; in mbedtls_internal_md5_process() member 98 local.A = ctx->state[0]; in mbedtls_internal_md5_process() 105 P(local.A, local.B, local.C, local.D, 0, 7, 0xD76AA478); in mbedtls_internal_md5_process() 106 P(local.D, local.A, local.B, local.C, 1, 12, 0xE8C7B756); in mbedtls_internal_md5_process() 107 P(local.C, local.D, local.A, local.B, 2, 17, 0x242070DB); in mbedtls_internal_md5_process() 108 P(local.B, local.C, local.D, local.A, 3, 22, 0xC1BDCEEE); in mbedtls_internal_md5_process() 109 P(local.A, local.B, local.C, local.D, 4, 7, 0xF57C0FAF); in mbedtls_internal_md5_process() 110 P(local.D, local.A, local.B, local.C, 5, 12, 0x4787C62A); in mbedtls_internal_md5_process() 111 P(local.C, local.D, local.A, local.B, 6, 17, 0xA8304613); in mbedtls_internal_md5_process() 112 P(local.B, local.C, local.D, local.A, 7, 22, 0xFD469501); in mbedtls_internal_md5_process() [all …]
|
D | ripemd160.c | 73 uint32_t A, B, C, D, E, Ap, Bp, Cp, Dp, Ep, X[16]; in mbedtls_internal_ripemd160_process() member 93 local.A = local.Ap = ctx->state[0]; in mbedtls_internal_ripemd160_process() 127 P2(local.A, local.B, local.C, local.D, local.E, 0, 11, 5, 8); in mbedtls_internal_ripemd160_process() 128 P2(local.E, local.A, local.B, local.C, local.D, 1, 14, 14, 9); in mbedtls_internal_ripemd160_process() 129 P2(local.D, local.E, local.A, local.B, local.C, 2, 15, 7, 9); in mbedtls_internal_ripemd160_process() 130 P2(local.C, local.D, local.E, local.A, local.B, 3, 12, 0, 11); in mbedtls_internal_ripemd160_process() 131 P2(local.B, local.C, local.D, local.E, local.A, 4, 5, 9, 13); in mbedtls_internal_ripemd160_process() 132 P2(local.A, local.B, local.C, local.D, local.E, 5, 8, 2, 15); in mbedtls_internal_ripemd160_process() 133 P2(local.E, local.A, local.B, local.C, local.D, 6, 7, 11, 15); in mbedtls_internal_ripemd160_process() 134 P2(local.D, local.E, local.A, local.B, local.C, 7, 9, 4, 5); in mbedtls_internal_ripemd160_process() [all …]
|
D | sha1.c | 69 uint32_t temp, W[16], A, B, C, D, E; in mbedtls_internal_sha1_process() member 107 local.A = ctx->state[0]; in mbedtls_internal_sha1_process() 116 P(local.A, local.B, local.C, local.D, local.E, local.W[0]); in mbedtls_internal_sha1_process() 117 P(local.E, local.A, local.B, local.C, local.D, local.W[1]); in mbedtls_internal_sha1_process() 118 P(local.D, local.E, local.A, local.B, local.C, local.W[2]); in mbedtls_internal_sha1_process() 119 P(local.C, local.D, local.E, local.A, local.B, local.W[3]); in mbedtls_internal_sha1_process() 120 P(local.B, local.C, local.D, local.E, local.A, local.W[4]); in mbedtls_internal_sha1_process() 121 P(local.A, local.B, local.C, local.D, local.E, local.W[5]); in mbedtls_internal_sha1_process() 122 P(local.E, local.A, local.B, local.C, local.D, local.W[6]); in mbedtls_internal_sha1_process() 123 P(local.D, local.E, local.A, local.B, local.C, local.W[7]); in mbedtls_internal_sha1_process() [all …]
|
D | sha512.c | 607 uint64_t A[8]; in mbedtls_internal_sha512_process_c() member 631 local.A[i] = ctx->state[i]; in mbedtls_internal_sha512_process_c() 643 P(local.A[0], local.A[1], local.A[2], local.A[3], local.A[4], in mbedtls_internal_sha512_process_c() 644 local.A[5], local.A[6], local.A[7], local.W[i], K[i]); in mbedtls_internal_sha512_process_c() 646 local.temp1 = local.A[7]; local.A[7] = local.A[6]; in mbedtls_internal_sha512_process_c() 647 local.A[6] = local.A[5]; local.A[5] = local.A[4]; in mbedtls_internal_sha512_process_c() 648 local.A[4] = local.A[3]; local.A[3] = local.A[2]; in mbedtls_internal_sha512_process_c() 649 local.A[2] = local.A[1]; local.A[1] = local.A[0]; in mbedtls_internal_sha512_process_c() 650 local.A[0] = local.temp1; in mbedtls_internal_sha512_process_c() 664 P(local.A[0], local.A[1], local.A[2], local.A[3], local.A[4], in mbedtls_internal_sha512_process_c() [all …]
|
D | bignum.c | 1000 int mbedtls_mpi_add_abs(mbedtls_mpi *X, const mbedtls_mpi *A, const mbedtls_mpi *B) in mbedtls_mpi_add_abs() argument 1008 const mbedtls_mpi *T = A; A = X; B = T; in mbedtls_mpi_add_abs() 1011 if (X != A) { in mbedtls_mpi_add_abs() 1012 MBEDTLS_MPI_CHK(mbedtls_mpi_copy(X, A)); in mbedtls_mpi_add_abs() 1061 int mbedtls_mpi_sub_abs(mbedtls_mpi *X, const mbedtls_mpi *A, const mbedtls_mpi *B) in mbedtls_mpi_sub_abs() argument 1072 if (n > A->n) { in mbedtls_mpi_sub_abs() 1078 MBEDTLS_MPI_CHK(mbedtls_mpi_grow(X, A->n)); in mbedtls_mpi_sub_abs() 1083 if (A->n > n && A != X) { in mbedtls_mpi_sub_abs() 1084 memcpy(X->p + n, A->p + n, (A->n - n) * ciL); in mbedtls_mpi_sub_abs() 1086 if (X->n > A->n) { in mbedtls_mpi_sub_abs() [all …]
|
D | bignum_core.c | 53 size_t mbedtls_mpi_core_bitlen(const mbedtls_mpi_uint *A, size_t A_limbs) in mbedtls_mpi_core_bitlen() argument 59 if (A[i] != 0) { in mbedtls_mpi_core_bitlen() 60 j = biL - mbedtls_mpi_core_clz(A[i]); in mbedtls_mpi_core_bitlen() 82 void mbedtls_mpi_core_bigendian_to_host(mbedtls_mpi_uint *A, in mbedtls_mpi_core_bigendian_to_host() argument 100 for (cur_limb_left = A, cur_limb_right = A + (A_limbs - 1); in mbedtls_mpi_core_bigendian_to_host() 115 const mbedtls_mpi_uint *A, in mbedtls_mpi_core_uint_le_mpi() argument 119 mbedtls_ct_condition_t min_le_lsl = mbedtls_ct_uint_ge(A[0], min); in mbedtls_mpi_core_uint_le_mpi() 124 msll_mask = mbedtls_ct_bool_or(msll_mask, mbedtls_ct_bool(A[i])); in mbedtls_mpi_core_uint_le_mpi() 132 mbedtls_ct_condition_t mbedtls_mpi_core_lt_ct(const mbedtls_mpi_uint *A, in mbedtls_mpi_core_lt_ct() argument 146 cond = mbedtls_ct_uint_lt(B[i - 1], A[i - 1]); in mbedtls_mpi_core_lt_ct() [all …]
|
D | bignum_core.h | 135 size_t mbedtls_mpi_core_bitlen(const mbedtls_mpi_uint *A, size_t A_limbs); 143 void mbedtls_mpi_core_bigendian_to_host(mbedtls_mpi_uint *A, 159 const mbedtls_mpi_uint *A, 176 mbedtls_ct_condition_t mbedtls_mpi_core_lt_ct(const mbedtls_mpi_uint *A, 198 const mbedtls_mpi_uint *A, 278 int mbedtls_mpi_core_write_le(const mbedtls_mpi_uint *A, 298 int mbedtls_mpi_core_write_be(const mbedtls_mpi_uint *A, 351 const mbedtls_mpi_uint *A, 386 const mbedtls_mpi_uint *A, 409 const mbedtls_mpi_uint *A, [all …]
|
D | bignum_mod.c | 91 const mbedtls_mpi_uint *A, in set_mont_const_square() argument 102 if (A == NULL || limbs == 0 || limbs >= (MBEDTLS_MPI_MAX_LIMBS / 2) - 2) { in set_mont_const_square() 110 memcpy(N.p, A, sizeof(mbedtls_mpi_uint) * limbs); in set_mont_const_square() 164 const mbedtls_mpi_mod_residue *A, in mbedtls_mpi_mod_mul() argument 172 if (X->limbs != N->limbs || A->limbs != N->limbs || B->limbs != N->limbs) { in mbedtls_mpi_mod_mul() 181 mbedtls_mpi_mod_raw_mul(X->p, A->p, B->p, N, T); in mbedtls_mpi_mod_mul() 189 const mbedtls_mpi_mod_residue *A, in mbedtls_mpi_mod_sub() argument 193 if (X->limbs != N->limbs || A->limbs != N->limbs || B->limbs != N->limbs) { in mbedtls_mpi_mod_sub() 197 mbedtls_mpi_mod_raw_sub(X->p, A->p, B->p, N); in mbedtls_mpi_mod_sub() 203 const mbedtls_mpi_mod_residue *A, in mbedtls_mpi_mod_inv_mont() argument [all …]
|
D | bignum_mod_raw.c | 27 const mbedtls_mpi_uint *A, in mbedtls_mpi_mod_raw_cond_assign() argument 31 mbedtls_mpi_core_cond_assign(X, A, N->limbs, mbedtls_ct_bool(assign)); in mbedtls_mpi_mod_raw_cond_assign() 77 int mbedtls_mpi_mod_raw_write(const mbedtls_mpi_uint *A, in mbedtls_mpi_mod_raw_write() argument 85 return mbedtls_mpi_core_write_le(A, N->limbs, in mbedtls_mpi_mod_raw_write() 88 return mbedtls_mpi_core_write_be(A, N->limbs, in mbedtls_mpi_mod_raw_write() 96 const mbedtls_mpi_uint *A, in mbedtls_mpi_mod_raw_sub() argument 100 mbedtls_mpi_uint c = mbedtls_mpi_core_sub(X, A, B, N->limbs); in mbedtls_mpi_mod_raw_sub() 116 const mbedtls_mpi_uint *A, in mbedtls_mpi_mod_raw_mul() argument 129 mbedtls_mpi_core_montmul(X, A, B, N->limbs, N->p, N->limbs, in mbedtls_mpi_mod_raw_mul() 133 mbedtls_mpi_core_mul(T, A, N->limbs, B, N->limbs); in mbedtls_mpi_mod_raw_mul() [all …]
|
D | aes.c | 122 V(19, FE, FE, E7), V(62, D7, D7, B5), V(E6, AB, AB, 4D), V(9A, 76, 76, EC), \ 127 V(C2, B7, B7, 75), V(1C, FD, FD, E1), V(AE, 93, 93, 3D), V(6A, 26, 26, 4C), \ 128 V(5A, 36, 36, 6C), V(41, 3F, 3F, 7E), V(02, F7, F7, F5), V(4F, CC, CC, 83), \ 130 V(93, 71, 71, E2), V(73, D8, D8, AB), V(53, 31, 31, 62), V(3F, 15, 15, 2A), \ 132 V(28, 18, 18, 30), V(A1, 96, 96, 37), V(0F, 05, 05, 0A), V(B5, 9A, 9A, 2F), \ 135 V(1B, 09, 09, 12), V(9E, 83, 83, 1D), V(74, 2C, 2C, 58), V(2E, 1A, 1A, 34), \ 136 V(2D, 1B, 1B, 36), V(B2, 6E, 6E, DC), V(EE, 5A, 5A, B4), V(FB, A0, A0, 5B), \ 141 V(BE, 6A, 6A, D4), V(46, CB, CB, 8D), V(D9, BE, BE, 67), V(4B, 39, 39, 72), \ 142 V(DE, 4A, 4A, 94), V(D4, 4C, 4C, 98), V(E8, 58, 58, B0), V(4A, CF, CF, 85), \ 143 V(6B, D0, D0, BB), V(2A, EF, EF, C5), V(E5, AA, AA, 4F), V(16, FB, FB, ED), \ [all …]
|
D | nist_kw.c | 117 static void calc_a_xor_t(unsigned char A[KW_SEMIBLOCK_LENGTH], uint64_t t) in calc_a_xor_t() 121 A[i] ^= (t >> ((sizeof(t) - 1 - i) * 8)) & 0xff; in calc_a_xor_t() 207 unsigned char *A = output; in mbedtls_nist_kw_wrap() local 219 memcpy(inbuff, A, KW_SEMIBLOCK_LENGTH); in mbedtls_nist_kw_wrap() 228 memcpy(A, outbuff, KW_SEMIBLOCK_LENGTH); in mbedtls_nist_kw_wrap() 229 calc_a_xor_t(A, t); in mbedtls_nist_kw_wrap() 262 unsigned char A[KW_SEMIBLOCK_LENGTH], in unwrap() 278 memcpy(A, input, KW_SEMIBLOCK_LENGTH); in unwrap() 284 calc_a_xor_t(A, t); in unwrap() 286 memcpy(inbuff, A, KW_SEMIBLOCK_LENGTH); in unwrap() [all …]
|
D | bignum_mod_raw.h | 101 const mbedtls_mpi_uint *A, 172 int mbedtls_mpi_mod_raw_write(const mbedtls_mpi_uint *A, 196 const mbedtls_mpi_uint *A, 230 const mbedtls_mpi_uint *A, 278 const mbedtls_mpi_uint *A, 303 const mbedtls_mpi_uint *A, 413 const mbedtls_mpi_uint *A,
|
D | ecp.c | 516 mbedtls_mpi_init(&grp->A); in mbedtls_ecp_group_init() 580 mbedtls_mpi_free(&grp->A); in mbedtls_ecp_group_free() 1057 const mbedtls_mpi *A, in mbedtls_mpi_mul_mod() argument 1061 MBEDTLS_MPI_CHK(mbedtls_mpi_mul_mpi(X, A, B)); in mbedtls_mpi_mul_mod() 1080 const mbedtls_mpi *A, in mbedtls_mpi_sub_mod() argument 1084 MBEDTLS_MPI_CHK(mbedtls_mpi_sub_mpi(X, A, B)); in mbedtls_mpi_sub_mod() 1101 const mbedtls_mpi *A, in mbedtls_mpi_add_mod() argument 1105 MBEDTLS_MPI_CHK(mbedtls_mpi_add_mpi(X, A, B)); in mbedtls_mpi_add_mod() 1114 const mbedtls_mpi *A, in mbedtls_mpi_mul_int_mod() argument 1119 MBEDTLS_MPI_CHK(mbedtls_mpi_mul_int(X, A, c)); in mbedtls_mpi_mul_int_mod() [all …]
|
D | bignum_mod.h | 259 const mbedtls_mpi_mod_residue *A, 289 const mbedtls_mpi_mod_residue *A, 319 const mbedtls_mpi_mod_residue *A, 348 const mbedtls_mpi_mod_residue *A,
|
D | constant_time.c | 79 volatile const unsigned char *A = (volatile const unsigned char *) a; in mbedtls_ct_memcmp() local 85 uint32_t x = mbedtls_get_unaligned_volatile_uint32(A + i); in mbedtls_ct_memcmp() 95 unsigned char x = A[i], y = B[i]; in mbedtls_ct_memcmp() 129 volatile const unsigned char *A = (volatile const unsigned char *) a; in mbedtls_ct_memcmp_partial() local 135 unsigned char x = A[i], y = B[i]; in mbedtls_ct_memcmp_partial()
|
/mbedtls-latest/tests/suites/ |
D | test_suite_bignum_mod.misc.data | 10 Test mpi_mod_mul #1 N->limbs != A->limbs 40 mbedtls_mpi_mod_inv non-Mont. form - base case for negative testing (N, A, A^-1) 43 mbedtls_mpi_mod_inv non-Mont. form - A == 0 46 mbedtls_mpi_mod_inv non-Mont. form - A too long 49 mbedtls_mpi_mod_inv non-Mont. form - A too short 52 mbedtls_mpi_mod_inv 32-bit Mont. form - base case for negative testing, A = 1 (N, mont(A), mont(A^-… 56 mbedtls_mpi_mod_inv 32-bit Mont. form - A == 0 60 mbedtls_mpi_mod_inv 32-bit Mont. form - A too long 64 mbedtls_mpi_mod_inv 32-bit Mont. form - A too short 68 mbedtls_mpi_mod_inv 64-bit Mont. form - base case for negative testing, A = 1 (N, mont(A), mont(A^-… [all …]
|
D | test_suite_ccm.data | 177 CCM encrypt and tag AES-128 (P=0, N=13, A=0, T=16) 181 CCM encrypt and tag NIST VTT AES-128 #1 (P=24, N=13, A=32, T=4) 185 CCM encrypt and tag NIST VTT AES-128 #2 (P=24, N=13, A=32, T=6) 189 CCM encrypt and tag NIST VTT AES-128 #3 (P=24, N=13, A=32, T=8) 193 CCM encrypt and tag NIST VTT AES-128 #4 (P=24, N=13, A=32, T=10) 197 CCM encrypt and tag NIST VTT AES-128 #5 (P=24, N=13, A=32, T=12) 201 CCM encrypt and tag NIST VTT AES-128 #6 (P=24, N=13, A=32, T=14) 205 CCM encrypt and tag NIST VTT AES-128 #7 (P=24, N=13, A=32, T=16) 209 CCM encrypt and tag NIST VTT AES-192 #1 (P=24, N=13, A=32, T=4) 213 CCM encrypt and tag NIST VTT AES-192 #2 (P=24, N=13, A=32, T=6) [all …]
|
D | test_suite_cipher.ccm.data | 1 AES-128-CCM test vector NIST #1 (P=0, N=7, A=0, T=4) 5 AES-128-CCM test vector NIST #2 (P=0, N=7, A=0, T=4) 9 AES-128-CCM test vector NIST #3 (P=0, N=7, A=0, T=16) 13 AES-128-CCM test vector NIST #4 (P=0, N=7, A=0, T=16) 17 AES-128-CCM test vector NIST #5 (P=0, N=13, A=0, T=4) 21 AES-128-CCM test vector NIST #6 (P=0, N=13, A=0, T=4) 25 AES-128-CCM test vector NIST #7 (P=0, N=13, A=0, T=16) 29 AES-128-CCM test vector NIST #8 (P=0, N=13, A=0, T=16) 33 AES-128-CCM test vector NIST #9 (P=24, N=7, A=0, T=4) 37 AES-128-CCM test vector NIST #10 (P=24, N=7, A=0, T=4) [all …]
|
D | test_suite_bignum_core.function | 10 * \param[in] A Little-endian presentation of the left operand. 12 * \param limbs Number of limbs in each MPI (\p A, \p B, \p S and \p X). 19 static int mpi_core_verify_add(mbedtls_mpi_uint *A, 28 size_t bytes = limbs * sizeof(*A); 30 /* The test cases have A <= B to avoid repetition, so we test A + B then, 31 * if A != B, B + A. If A == B, we can test when A and B are aliased */ 33 /* A + B */ 35 /* A + B => correct result and carry */ 36 TEST_EQUAL(carry, mbedtls_mpi_core_add(X, A, B, limbs)); 39 /* A + B; alias output and first operand => correct result and carry */ [all …]
|
D | test_suite_bignum_mod_raw.function | 269 mbedtls_mpi_uint *A = NULL; 282 TEST_EQUAL(mbedtls_test_read_mpi_core(&A, &limbs_A, input_A), 0); 299 mbedtls_mpi_mod_raw_sub(X, A, B, &m); 302 /* alias X to A */ 303 memcpy(X, A, bytes); 309 mbedtls_mpi_mod_raw_sub(X, A, X, &m); 312 /* A == B: alias A and B */ 313 if (memcmp(A, B, bytes) == 0) { 314 mbedtls_mpi_mod_raw_sub(X, A, A, &m); 317 /* X, A, B all aliased together */ [all …]
|
D | test_suite_bignum.function | 23 /* The value 0 must be represented with the sign +1. A "negative zero" 401 mbedtls_mpi A, X, Y, Z; 402 mbedtls_mpi_init(&A); mbedtls_mpi_init(&X); mbedtls_mpi_init(&Y); mbedtls_mpi_init(&Z); 406 TEST_ASSERT(mbedtls_test_read_mpi(&A, input_A) == 0); 409 TEST_ASSERT(mbedtls_mpi_cmp_mpi(&Z, &A) == 0); 412 mbedtls_mpi_free(&A); mbedtls_mpi_free(&X); mbedtls_mpi_free(&Y); mbedtls_mpi_free(&Z); 529 mbedtls_mpi X, A; 530 mbedtls_mpi_init(&A); 536 TEST_ASSERT(mbedtls_test_read_mpi(&A, input_X) == 0); 538 TEST_ASSERT(mbedtls_mpi_cmp_mpi(&X, &A) == 0); [all …]
|
D | test_suite_bignum.misc.data | 799 Base test mbedtls_mpi_sub_abs #1 (|B| > |A|) 802 Base test mbedtls_mpi_sub_abs #2 (|B| > |A|) 805 Base test mbedtls_mpi_sub_abs #3 (|B| > |A|) 808 Base test mbedtls_mpi_sub_abs #4 (|B| > |A|) 811 Base test mbedtls_mpi_sub_abs #1 (|B| >> |A| with more limbs) 814 Base test mbedtls_mpi_sub_abs #2 (|B| >> |A| with more limbs) 817 Base test mbedtls_mpi_sub_abs #3 (|B| >> |A| with more limbs) 820 Base test mbedtls_mpi_sub_abs #4 (|B| >> |A| with more limbs) 1006 Test mbedtls_mpi_mul_mpi #1, leading 0 limb in B, A < 0 1012 Test mbedtls_mpi_mul_mpi #1, leading 0 limb in B, A < 0, B < 0 [all …]
|
D | test_suite_aes.ofb.data | 1 # NIST Special Publication 800-38A 12 OFB-AES128.Encrypt - Test NIST SP800-38A - F.4.1 16 OFB-AES128.Decrypt - Test NIST SP800-38A - F.4.2 20 OFB-AES192.Encrypt - Test NIST SP800-38A - F.4.3 24 OFB-AES192.Decrypt - Test NIST SP800-38A - F.4.4 28 OFB-AES256.Encrypt - Test NIST SP800-38A - F.4.5 32 OFB-AES256.Decrypt - Test NIST SP800-38A - F.4.6
|
/mbedtls-latest/include/mbedtls/ |
D | bignum.h | 695 int mbedtls_mpi_add_abs(mbedtls_mpi *X, const mbedtls_mpi *A, 710 int mbedtls_mpi_sub_abs(mbedtls_mpi *X, const mbedtls_mpi *A, 724 int mbedtls_mpi_add_mpi(mbedtls_mpi *X, const mbedtls_mpi *A, 738 int mbedtls_mpi_sub_mpi(mbedtls_mpi *X, const mbedtls_mpi *A, 752 int mbedtls_mpi_add_int(mbedtls_mpi *X, const mbedtls_mpi *A, 767 int mbedtls_mpi_sub_int(mbedtls_mpi *X, const mbedtls_mpi *A, 782 int mbedtls_mpi_mul_mpi(mbedtls_mpi *X, const mbedtls_mpi *A, 798 int mbedtls_mpi_mul_int(mbedtls_mpi *X, const mbedtls_mpi *A, 819 int mbedtls_mpi_div_mpi(mbedtls_mpi *Q, mbedtls_mpi *R, const mbedtls_mpi *A, 840 int mbedtls_mpi_div_int(mbedtls_mpi *Q, mbedtls_mpi *R, const mbedtls_mpi *A, [all …]
|