/mbedtls-latest/tests/suites/ |
D | test_suite_bignum_random.function | 116 void mpi_core_random_basic(int min, char *bound_bytes, int expected_ret) 128 lower_bound[0] = min; 132 mbedtls_mpi_core_random(result, min, upper_bound, limbs, 148 void mpi_legacy_random_values(int min, char *max_hex) 166 int core_ret = mbedtls_mpi_core_random(R_core, min, max_legacy.p, limbs, 169 int legacy_ret = mbedtls_mpi_random(&R_legacy, min, &max_legacy, 196 void mpi_mod_random_values(int min, char *max_hex, int rep) 221 min, N.p, N.limbs, 225 min, &N, 229 min, &N, [all …]
|
D | test_suite_bignum_random.data | 222 MPI random bad arguments: min < 0 225 MPI random bad arguments: min = N = 0 228 MPI random bad arguments: min = N = 1 231 MPI random bad arguments: min > N = 0 234 MPI random bad arguments: min > N = 1 237 MPI random bad arguments: min > N = 1, 0 limb in upper bound 336 MPI random mod validation: min == upper bound 339 MPI random mod validation: min > upper bound
|
D | test_suite_psa_crypto_slot_management.data | 16 Persistent slot, check after closing, id=min 19 Persistent slot, check after closing and restarting, id=min 22 Persistent slot, check after destroying, id=min 25 Persistent slot, check after destroying and restarting, id=min 28 Persistent slot, check after purging, id=min 31 Persistent slot, check after purging and restarting, id=min 34 Persistent slot, check after restart with live handle, id=min
|
D | test_suite_psa_crypto.data | 848 PSA key policy: HMAC, sign-verify, tag length > min-length policy 852 PSA key policy: HMAC, sign-verify, tag length = min-length policy 856 PSA key policy: HMAC, sign-verify, tag length < min-length policy 860 PSA key policy: CMAC, sign-verify, tag length > min-length policy 864 PSA key policy: CMAC, sign-verify, tag length = min-length policy 868 PSA key policy: CMAC, sign-verify, tag length < min-length policy 872 PSA key policy: HMAC, sign-verify, default tag length > min-length policy 876 PSA key policy: HMAC, sign-verify, default tag length = min-length policy 880 PSA key policy: HMAC, sign-verify, default tag length < min-length policy 884 PSA key policy: HMAC, sign-verify, min-length policy, unmatched base alg [all …]
|
D | test_suite_psa_crypto_se_driver_hal.data | 178 Key registration: key id min vendor 184 Key registration: key id min volatile
|
D | test_suite_x509parse.function | 1600 int day, int hour, int min, int sec) 1622 TEST_EQUAL(min, time.min);
|
D | test_suite_bignum.function | 612 void mpi_shrink(int before, int used, int min, int after) 623 TEST_ASSERT(mbedtls_mpi_shrink(&X, min) == 0);
|
/mbedtls-latest/library/ |
D | x509.c | 53 #define CHECK_RANGE(min, max, val) \ argument 55 if ((val) < (min) || (val) > (max)) { \ 591 (unsigned int) t->min > 59 || /* (0 - 59) */ in x509_date_is_valid() 638 tm->min = x509_parse2_int(p + 8); in x509_parse_time() 1047 x = (((t1->hour << 12) | (t1->min << 6) | (t1->sec)) - in mbedtls_x509_time_cmp() 1048 ((t2->hour << 12) | (t2->min << 6) | (t2->sec))); in mbedtls_x509_time_cmp() 1065 now->min = tm.tm_min; in mbedtls_x509_time_gmtime()
|
D | bignum_core.h | 158 mbedtls_ct_condition_t mbedtls_mpi_core_uint_le_mpi(mbedtls_mpi_uint min, 603 mbedtls_mpi_uint min,
|
D | x509_crl.c | 618 crl->this_update.min, crl->this_update.sec); in mbedtls_x509_crl_info() 625 crl->next_update.min, crl->next_update.sec); in mbedtls_x509_crl_info() 646 entry->revocation_date.min, entry->revocation_date.sec); in mbedtls_x509_crl_info()
|
D | bignum_mod_raw.c | 219 mbedtls_mpi_uint min, in mbedtls_mpi_mod_raw_random() argument 224 int ret = mbedtls_mpi_core_random(X, min, N->p, N->limbs, f_rng, p_rng); in mbedtls_mpi_mod_raw_random()
|
D | bignum_core.c | 114 mbedtls_ct_condition_t mbedtls_mpi_core_uint_le_mpi(mbedtls_mpi_uint min, 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() 638 mbedtls_mpi_uint min, in mbedtls_mpi_core_random() argument 687 ge_lower = mbedtls_mpi_core_uint_le_mpi(min, X, limbs); in mbedtls_mpi_core_random()
|
D | bignum_mod.c | 306 mbedtls_mpi_uint min, in mbedtls_mpi_mod_random() argument 314 return mbedtls_mpi_mod_raw_random(X->p, min, N, f_rng, p_rng); in mbedtls_mpi_mod_random()
|
D | bignum_mod_raw.h | 370 mbedtls_mpi_uint min,
|
D | bignum_mod.h | 380 mbedtls_mpi_uint min,
|
D | bignum.c | 1878 mbedtls_mpi_sint min, in mbedtls_mpi_random() argument 1883 if (min < 0) { in mbedtls_mpi_random() 1886 if (mbedtls_mpi_cmp_int(N, min) <= 0) { in mbedtls_mpi_random() 1898 return mbedtls_mpi_core_random(X->p, min, N->p, X->n, f_rng, p_rng); in mbedtls_mpi_random()
|
D | x509_crt.c | 1793 crt->valid_from.min, crt->valid_from.sec); in mbedtls_x509_crt_info() 1800 crt->valid_to.min, crt->valid_to.sec); in mbedtls_x509_crt_info()
|
D | ssl_tls.c | 1635 uint32_t min, uint32_t max) in mbedtls_ssl_conf_handshake_timeout() argument 1637 conf->hs_timeout_min = min; in mbedtls_ssl_conf_handshake_timeout()
|
/mbedtls-latest/ |
D | .pylintrc | 3 min-similarity-lines=10 17 docstring-min-length=10
|
/mbedtls-latest/programs/psa/ |
D | psa_constant_names.c | 195 static int process_signed(signed_value_type type, long min, long max, char **argp) in process_signed() argument 205 if (value < min || (errno == ERANGE && value < 0)) { in process_signed()
|
/mbedtls-latest/include/mbedtls/ |
D | x509.h | 248 int hour, min, sec; /**< Time. */ member
|
D | bignum.h | 967 mbedtls_mpi_sint min,
|
D | ssl.h | 3164 void mbedtls_ssl_conf_handshake_timeout(mbedtls_ssl_config *conf, uint32_t min, uint32_t max);
|
/mbedtls-latest/tests/scripts/ |
D | audit-validity-dates.py | 87 self.not_valid_before = datetime.datetime.min
|
/mbedtls-latest/tests/ |
D | compat.sh | 195 --min)
|