Home
last modified time | relevance | path

Searched refs:ref (Results 1 – 10 of 10) sorted by relevance

/mbedtls-latest/docs/architecture/psa-migration/
Doutcome-analysis.sh50 HEAD=$(git rev-parse --abbrev-ref HEAD)
99 ref="outcome-$1.csv"
104 total=$(grep -c "$pattern_suite" "$ref")
106 sed -n "$sed_cmd" "$ref" > skipped-ref
108 nb_ref=$(wc -l <skipped-ref)
114 if diff skipped-ref skipped-new | grep '^> '; then
119 rm skipped-ref skipped-new
/mbedtls-latest/library/
Dpkparse.c263 mbedtls_ecp_group ref; in pk_group_id_from_group() local
266 mbedtls_ecp_group_init(&ref); in pk_group_id_from_group()
270 mbedtls_ecp_group_free(&ref); in pk_group_id_from_group()
271 MBEDTLS_MPI_CHK(mbedtls_ecp_group_load(&ref, *id)); in pk_group_id_from_group()
274 if (grp->pbits == ref.pbits && grp->nbits == ref.nbits && in pk_group_id_from_group()
275 mbedtls_mpi_cmp_mpi(&grp->P, &ref.P) == 0 && in pk_group_id_from_group()
276 mbedtls_mpi_cmp_mpi(&grp->A, &ref.A) == 0 && in pk_group_id_from_group()
277 mbedtls_mpi_cmp_mpi(&grp->B, &ref.B) == 0 && in pk_group_id_from_group()
278 mbedtls_mpi_cmp_mpi(&grp->N, &ref.N) == 0 && in pk_group_id_from_group()
279 mbedtls_mpi_cmp_mpi(&grp->G.X, &ref.G.X) == 0 && in pk_group_id_from_group()
[all …]
/mbedtls-latest/include/psa/
Dcrypto_values.h1361 #define PSA_ALG_AEAD_WITH_DEFAULT_LENGTH_TAG_CASE(aead_alg, ref) \ argument
1363 PSA_ALG_AEAD_WITH_SHORTENED_TAG(ref, 0) ? \
1364 ref :
/mbedtls-latest/programs/test/
Dselftest.c181 const char ref[10] = "xxxxxxxxx"; in test_snprintf() local
190 memcmp(buf + n, ref + n, sizeof(buf) - n) != 0) { in test_snprintf()
/mbedtls-latest/tests/scripts/
Dbasic-in-docker.sh34 run_in_docker tests/scripts/test-ref-configs.pl
Dcomponents-configuration.sh144 tests/scripts/test-ref-configs.pl
/mbedtls-latest/tests/suites/
Dtest_suite_bignum.function491 mbedtls_mpi src, dst, ref;
494 mbedtls_mpi_init(&ref);
497 TEST_ASSERT(mbedtls_test_read_mpi(&ref, dst_hex) == 0);
517 TEST_ASSERT(mbedtls_mpi_cmp_mpi(&dst, &ref) == 0);
522 mbedtls_mpi_free(&ref);
Dhost_test.function284 const char ref[10] = "xxxxxxxxx";
296 memcmp(buf + n, ref + n, sizeof(buf) - n) != 0) {
/mbedtls-latest/
DREADME.md249 - `tests/scripts/test-ref-configs.pl` test builds in various reduced configurations.
DChangeLog325 `mbedtls_ssl_ciphersuite_t` structure.Design ref: #8529