/mbedtls-latest/tests/suites/ |
D | test_suite_bignum.function | 111 TEST_ASSERT(mbedtls_mpi_get_bit(&X, 42) == 0); 112 TEST_ASSERT(mbedtls_mpi_lsb(&X) == 0); 113 TEST_ASSERT(mbedtls_mpi_bitlen(&X) == 0); 114 TEST_ASSERT(mbedtls_mpi_size(&X) == 0); 134 TEST_ASSERT(mbedtls_mpi_read_string(&X, radix_X, input_X) == result_read); 136 TEST_ASSERT(sign_is_valid(&X)); 137 TEST_ASSERT(mbedtls_mpi_write_string(&X, radix_A, str, output_size, &len) == result_write); 139 TEST_ASSERT(strcmp(str, input_A) == 0); 140 TEST_ASSERT(str[len] == '!'); 179 TEST_ASSERT(mbedtls_mpi_read_binary(&X, buf->x, buf->len) == 0); [all …]
|
D | test_suite_cmac.function | 14 TEST_ASSERT(mbedtls_cmac_self_test(1) == 0); 30 TEST_ASSERT(mbedtls_cipher_cmac_update(&ctx, test_data, 16) == 34 TEST_ASSERT(mbedtls_cipher_setup(&ctx, cipher_info) == 0); 36 TEST_ASSERT(mbedtls_cipher_cmac_starts(NULL, test_key, 128) == 39 TEST_ASSERT(mbedtls_cipher_cmac_starts(&ctx, NULL, 128) == 42 TEST_ASSERT(mbedtls_cipher_cmac_update(NULL, test_data, 16) == 45 TEST_ASSERT(mbedtls_cipher_cmac_update(&ctx, NULL, 16) == 48 TEST_ASSERT(mbedtls_cipher_cmac_finish(NULL, test_output) == 51 TEST_ASSERT(mbedtls_cipher_cmac_finish(&ctx, NULL) == 54 TEST_ASSERT(mbedtls_cipher_cmac_reset(NULL) == [all …]
|
D | test_suite_cipher.function | 20 TEST_ASSERT(info != NULL); 23 TEST_ASSERT(mbedtls_cipher_info_from_type(type) == info); 29 TEST_ASSERT(mbedtls_cipher_info_get_name(info) == info->name); 30 TEST_ASSERT(mbedtls_cipher_info_from_string(info->name) == info); 36 TEST_ASSERT(key_bitlen == 0); 37 TEST_ASSERT(block_size == 1); 38 TEST_ASSERT(iv_size == 0); 40 TEST_ASSERT(key_bitlen == 256 || 44 TEST_ASSERT(key_bitlen == 192); 45 TEST_ASSERT(!mbedtls_cipher_info_has_variable_key_bitlen(info)); [all …]
|
D | test_suite_rsa.function | 174 TEST_ASSERT(mbedtls_rsa_set_padding(&ctx, padding_mode, 180 TEST_ASSERT(mbedtls_test_read_mpi(&P, input_P) == 0); 181 TEST_ASSERT(mbedtls_test_read_mpi(&Q, input_Q) == 0); 182 TEST_ASSERT(mbedtls_test_read_mpi(&N, input_N) == 0); 183 TEST_ASSERT(mbedtls_test_read_mpi(&E, input_E) == 0); 185 TEST_ASSERT(mbedtls_rsa_import(&ctx, &N, &P, &Q, NULL, &E) == 0); 188 TEST_ASSERT(mbedtls_rsa_complete(&ctx) == 0); 189 TEST_ASSERT(mbedtls_rsa_check_privkey(&ctx) == 0); 191 TEST_ASSERT(mbedtls_rsa_pkcs1_sign( 197 TEST_ASSERT(mbedtls_test_hexcmp(output, result_str->x, [all …]
|
D | test_suite_ecdh.function | 8 TEST_ASSERT(mbedtls_ecp_group_load(&ecp->grp, grp_id) == 0); 9 TEST_ASSERT(mbedtls_ecp_point_read_binary(&ecp->grp, 13 TEST_ASSERT(mbedtls_ecp_check_pubkey(&ecp->grp, 25 TEST_ASSERT(mbedtls_ecp_read_key(grp_id, ecp, 28 TEST_ASSERT(mbedtls_ecp_check_privkey(&ecp->grp, &ecp->d) == 0); 30 TEST_ASSERT(mbedtls_ecp_mul(&ecp->grp, &ecp->Q, &ecp->d, 79 TEST_ASSERT(mbedtls_ecp_group_load(&grp, id) == 0); 81 TEST_ASSERT(mbedtls_ecdh_gen_public(&grp, &dA, &qA, 84 TEST_ASSERT(mbedtls_ecdh_gen_public(&grp, &dB, &qB, 87 TEST_ASSERT(mbedtls_ecdh_compute_shared(&grp, &zA, &qB, &dA, [all …]
|
D | test_suite_dhm.function | 12 TEST_ASSERT(mbedtls_dhm_get_value(ctx, param, &actual) == 0); 13 TEST_ASSERT(mbedtls_mpi_cmp_mpi(&actual, expected) == 0); 36 TEST_ASSERT(size >= *offset + 2); 42 TEST_ASSERT(size >= *offset + n); 62 TEST_ASSERT(mbedtls_mpi_cmp_int(&ctx->X, 1) > 0); 63 TEST_ASSERT(mbedtls_mpi_cmp_mpi(&ctx->X, &ctx->P) < 0); 64 TEST_ASSERT(mbedtls_mpi_size(&ctx->X) <= x_size); 65 TEST_ASSERT(mbedtls_mpi_cmp_int(&ctx->GX, 1) > 0); 66 TEST_ASSERT(mbedtls_mpi_cmp_mpi(&ctx->GX, &ctx->P) < 0); 122 TEST_ASSERT(mbedtls_test_read_mpi(&ctx_srv.P, input_P) == 0); [all …]
|
D | test_suite_mps.function | 59 TEST_ASSERT(mbedtls_mps_reader_feed(&rd, bufA, sizeof(bufA)) == 0); 62 TEST_ASSERT(mbedtls_mps_reader_get(&rd, 100, &tmp, NULL) == 0); 64 TEST_ASSERT(mbedtls_mps_reader_commit(&rd) == 0); 66 TEST_ASSERT(mbedtls_mps_reader_reclaim(&rd, &paused) == 0); 67 TEST_ASSERT(paused == 0); 109 TEST_ASSERT(mbedtls_mps_reader_feed(&rd, bufA, sizeof(bufA)) == 0); 112 TEST_ASSERT(mbedtls_mps_reader_get(&rd, 100, &tmp, NULL) == 0); 114 TEST_ASSERT(mbedtls_mps_reader_commit(&rd) == 0); 116 TEST_ASSERT(mbedtls_mps_reader_reclaim(&rd, NULL) == 0); 117 TEST_ASSERT(mbedtls_mps_reader_feed(&rd, bufB, sizeof(bufB)) == 0); [all …]
|
D | test_suite_nist_kw.function | 13 TEST_ASSERT(mbedtls_nist_kw_self_test(1) == 0); 38 TEST_ASSERT(mbedtls_nist_kw_setkey(&ctx1, 43 TEST_ASSERT(mbedtls_nist_kw_wrap(&ctx1, MBEDTLS_KW_MODE_KW, 47 TEST_ASSERT(output_len == sizeof(ciphertext1)); 49 TEST_ASSERT(mbedtls_nist_kw_setkey(&ctx2, 54 TEST_ASSERT(mbedtls_nist_kw_unwrap(&ctx2, MBEDTLS_KW_MODE_KW, 59 TEST_ASSERT(output_len == sizeof(plaintext)); 61 TEST_ASSERT(plaintext[i] == 0); 73 TEST_ASSERT(mbedtls_nist_kw_setkey(&ctx1, 78 TEST_ASSERT(mbedtls_nist_kw_wrap(&ctx1, MBEDTLS_KW_MODE_KW, [all …]
|
D | test_suite_chachapoly.function | 22 TEST_ASSERT(key_str->len == 32); 23 TEST_ASSERT(nonce_str->len == 12); 24 TEST_ASSERT(mac_str->len == 16); 28 TEST_ASSERT(mbedtls_chachapoly_setkey(&ctx, key_str->x) == 0); 30 TEST_ASSERT(mbedtls_chachapoly_encrypt_and_tag(&ctx, 35 TEST_ASSERT(memcmp(output_str->x, output, output_str->len) == 0); 36 TEST_ASSERT(memcmp(mac_str->x, mac, 16U) == 0); 56 TEST_ASSERT(key_str->len == 32); 57 TEST_ASSERT(nonce_str->len == 12); 58 TEST_ASSERT(mac_str->len == 16); [all …]
|
D | test_suite_pkcs1_v21.function | 29 TEST_ASSERT(mbedtls_rsa_set_padding(&ctx, 36 TEST_ASSERT(mbedtls_mpi_read_binary(&N, input_N->x, input_N->len) == 0); 37 TEST_ASSERT(mbedtls_mpi_read_binary(&E, input_E->x, input_E->len) == 0); 38 TEST_ASSERT(mbedtls_rsa_import(&ctx, &N, NULL, NULL, NULL, &E) == 0); 39 TEST_ASSERT(mbedtls_rsa_get_len(&ctx) == (size_t) ((mod + 7) / 8)); 40 TEST_ASSERT(mbedtls_rsa_check_pubkey(&ctx) == 0); 45 TEST_ASSERT(mbedtls_rsa_pkcs1_encrypt(&ctx, 80 TEST_ASSERT(mbedtls_rsa_set_padding(&ctx, 89 TEST_ASSERT(mbedtls_mpi_read_binary(&P, input_P->x, input_P->len) == 0); 90 TEST_ASSERT(mbedtls_mpi_read_binary(&Q, input_Q->x, input_Q->len) == 0); [all …]
|
D | test_suite_ecp.function | 115 TEST_ASSERT(by_id != NULL); 116 TEST_ASSERT(by_tls != NULL); 117 TEST_ASSERT(by_name != NULL); 119 TEST_ASSERT(by_id == by_tls); 120 TEST_ASSERT(by_id == by_name); 122 TEST_ASSERT(by_id->bit_size == size); 123 TEST_ASSERT(size <= MBEDTLS_ECP_MAX_BITS); 124 TEST_ASSERT(size <= MBEDTLS_ECP_MAX_BYTES * 8); 138 TEST_ASSERT(mbedtls_ecp_group_load(&grp, grp_id) == 0); 140 TEST_ASSERT(mbedtls_test_read_mpi(&P.X, x_hex) == 0); [all …]
|
D | test_suite_psa_crypto_metadata.function | 89 TEST_ASSERT(PSA_##flag(alg)); \ 91 TEST_ASSERT(!PSA_##flag(alg)); \ 117 TEST_ASSERT(has_even_parity(value)) 200 TEST_ASSERT(!PSA_ALG_IS_HASH(alg)); 201 TEST_ASSERT(PSA_ALG_IS_MAC(alg)); 202 TEST_ASSERT(!PSA_ALG_IS_CIPHER(alg)); 203 TEST_ASSERT(!PSA_ALG_IS_AEAD(alg)); 204 TEST_ASSERT(!PSA_ALG_IS_SIGN(alg)); 205 TEST_ASSERT(!PSA_ALG_IS_ASYMMETRIC_ENCRYPTION(alg)); 206 TEST_ASSERT(!PSA_ALG_IS_KEY_AGREEMENT(alg)); [all …]
|
D | test_suite_des.function | 13 TEST_ASSERT(mbedtls_des_key_check_weak(key->x) == ret); 27 TEST_ASSERT(mbedtls_des_setkey_enc(&ctx, key_str->x) == 0); 28 TEST_ASSERT(mbedtls_des_crypt_ecb(&ctx, src_str->x, output) == 0); 30 TEST_ASSERT(mbedtls_test_hexcmp(output, dst->x, 8, dst->len) == 0); 47 TEST_ASSERT(mbedtls_des_setkey_dec(&ctx, key_str->x) == 0); 48 TEST_ASSERT(mbedtls_des_crypt_ecb(&ctx, src_str->x, output) == 0); 50 TEST_ASSERT(mbedtls_test_hexcmp(output, dst->x, 8, dst->len) == 0); 68 TEST_ASSERT(mbedtls_des_setkey_enc(&ctx, key_str->x) == 0); 69 TEST_ASSERT(mbedtls_des_crypt_cbc(&ctx, MBEDTLS_DES_ENCRYPT, src_str->len, iv_str->x, 73 TEST_ASSERT(mbedtls_test_hexcmp(output, dst->x, src_str->len, [all …]
|
D | test_suite_ssl.function | 43 TEST_ASSERT(ret > 0); 86 TEST_ASSERT(mbedtls_test_ssl_buffer_put(NULL, input, sizeof(input)) 88 TEST_ASSERT(mbedtls_test_ssl_buffer_get(NULL, output, sizeof(output)) 90 TEST_ASSERT(mbedtls_test_ssl_buffer_put(NULL, NULL, sizeof(input)) 93 TEST_ASSERT(mbedtls_test_ssl_buffer_put(NULL, NULL, 0) == -1); 94 TEST_ASSERT(mbedtls_test_ssl_buffer_get(NULL, NULL, 0) == -1); 98 TEST_ASSERT(mbedtls_test_ssl_buffer_put(&buf, input, sizeof(input)) 100 TEST_ASSERT(mbedtls_test_ssl_buffer_get(&buf, output, sizeof(output)) 102 TEST_ASSERT(mbedtls_test_ssl_buffer_put(&buf, NULL, sizeof(input)) 105 TEST_ASSERT(mbedtls_test_ssl_buffer_put(&buf, NULL, 0) == -1); [all …]
|
D | test_suite_hmac_drbg.function | 54 TEST_ASSERT(md_info != NULL); 67 TEST_ASSERT(mbedtls_hmac_drbg_seed(&ctx, md_info, mbedtls_test_entropy_func, &entropy, 76 TEST_ASSERT(mbedtls_hmac_drbg_random(&ctx, out, sizeof(out) - 4) == 0); 77 TEST_ASSERT(mbedtls_hmac_drbg_random_with_add(&ctx, out, sizeof(out) - 4, 83 TEST_ASSERT(out[sizeof(out) - 4] == 0); 84 TEST_ASSERT(out[sizeof(out) - 3] == 0); 85 TEST_ASSERT(out[sizeof(out) - 2] == 0); 86 TEST_ASSERT(out[sizeof(out) - 1] == 0); 89 TEST_ASSERT(mbedtls_hmac_drbg_random(&ctx, out, sizeof(out)) == 0); 98 TEST_ASSERT(mbedtls_hmac_drbg_random(&ctx, out, sizeof(out)) == 0); [all …]
|
D | test_suite_memory_buffer_alloc.function | 30 TEST_ASSERT(mbedtls_memory_buffer_alloc_self_test(1) == 0); 56 TEST_ASSERT(check_pointer(ptr_a) == 0); 63 TEST_ASSERT(check_pointer(ptr_b) == 0); 70 TEST_ASSERT(check_pointer(ptr_c) == 0); 77 TEST_ASSERT(check_pointer(ptr_d) == 0); 84 TEST_ASSERT(reported_bytes == allocated_bytes); 90 TEST_ASSERT(mbedtls_memory_buffer_alloc_verify() == 0); 98 TEST_ASSERT(mbedtls_memory_buffer_alloc_verify() == 0); 106 TEST_ASSERT(mbedtls_memory_buffer_alloc_verify() == 0); 114 TEST_ASSERT(mbedtls_memory_buffer_alloc_verify() == 0); [all …]
|
D | test_suite_pkcs1_v15.function | 33 TEST_ASSERT(mbedtls_rsa_set_padding(&ctx, 40 TEST_ASSERT(mbedtls_test_read_mpi(&N, input_N) == 0); 41 TEST_ASSERT(mbedtls_test_read_mpi(&E, input_E) == 0); 42 TEST_ASSERT(mbedtls_rsa_import(&ctx, &N, NULL, NULL, NULL, &E) == 0); 43 TEST_ASSERT(mbedtls_rsa_get_len(&ctx) == (size_t) ((mod + 7) / 8)); 44 TEST_ASSERT(mbedtls_rsa_check_pubkey(&ctx) == 0); 49 TEST_ASSERT(mbedtls_rsa_pkcs1_encrypt(&ctx, 56 TEST_ASSERT(mbedtls_test_hexcmp(output, result_str->x, 82 TEST_ASSERT(mbedtls_rsa_set_padding(&ctx, 91 TEST_ASSERT(mbedtls_test_read_mpi(&P, input_P) == 0); [all …]
|
D | test_suite_ecdsa.function | 25 TEST_ASSERT(mbedtls_ecp_group_load(&grp, id) == 0); 26 TEST_ASSERT(mbedtls_ecp_gen_keypair(&grp, &d, &Q, 30 TEST_ASSERT(mbedtls_ecdsa_sign(&grp, &r, &s, &d, buf, sizeof(buf), 33 TEST_ASSERT(mbedtls_ecdsa_verify(&grp, buf, sizeof(buf), &Q, &r, &s) == 0); 58 TEST_ASSERT(mbedtls_test_rnd_pseudo_rand(&rnd_info, 60 TEST_ASSERT(mbedtls_ecp_group_load(&grp, id) == 0); 61 TEST_ASSERT(mbedtls_ecp_gen_keypair(&grp, &d, &Q, 65 TEST_ASSERT(mbedtls_ecdsa_sign(&grp, &r, &s, &d, buf, sizeof(buf), 68 TEST_ASSERT(mbedtls_ecdsa_verify(&grp, buf, sizeof(buf), &Q, &r, &s) == 0); 94 TEST_ASSERT(mbedtls_ecp_group_load(&grp, id) == 0); [all …]
|
D | test_suite_entropy.function | 182 TEST_ASSERT(mbedtls_entropy_write_seed_file(&ctx, path) == ret); 183 TEST_ASSERT(mbedtls_entropy_update_seed_file(&ctx, path) == ret); 199 TEST_ASSERT(mbedtls_entropy_write_seed_file(&ctx, MBEDTLS_PLATFORM_STD_NV_SEED_FILE) == ret); 200 TEST_ASSERT(mbedtls_entropy_update_seed_file(&ctx, MBEDTLS_PLATFORM_STD_NV_SEED_FILE) == ret); 242 TEST_ASSERT(mbedtls_entropy_add_source(&ctx, entropy_dummy_source, &dummy, 267 TEST_ASSERT(mbedtls_entropy_func(&ctx, buf, len) == ret); 275 TEST_ASSERT(acc[j] != 0); 280 TEST_ASSERT(acc[j] == 0); 300 TEST_ASSERT(mbedtls_entropy_add_source(&ctx, entropy_dummy_source, 305 TEST_ASSERT(mbedtls_entropy_func(&ctx, buf, sizeof(buf)) [all …]
|
D | test_suite_aes.function | 24 TEST_ASSERT(mbedtls_aes_setkey_enc(master, key->x, 26 TEST_ASSERT(mbedtls_aes_crypt_ecb(master, MBEDTLS_AES_ENCRYPT, 32 TEST_ASSERT(mbedtls_aes_setkey_dec(master, key->x, 40 TEST_ASSERT(mbedtls_aes_crypt_ecb(enc, MBEDTLS_AES_ENCRYPT, 46 TEST_ASSERT(mbedtls_aes_crypt_ecb(dec, MBEDTLS_AES_DECRYPT, 79 TEST_ASSERT(mbedtls_aes_setkey_enc(&ctx, key_str->x, key_str->len * 8) == setkey_result); 81 TEST_ASSERT(mbedtls_aes_crypt_ecb(&ctx, MBEDTLS_AES_ENCRYPT, src_str->x, output) == 0); 83 TEST_ASSERT(mbedtls_test_hexcmp(output, dst->x, 16, dst->len) == 0); 100 TEST_ASSERT(pt->len == ct->len); 101 TEST_ASSERT(key->len == 16 || key->len == 24 || key->len == 32); [all …]
|
D | test_suite_oid.function | 26 TEST_ASSERT(ret == MBEDTLS_ERR_OID_NOT_FOUND); 28 TEST_ASSERT(ret == 0); 29 TEST_ASSERT(strcmp((char *) desc, result_str) == 0); 47 TEST_ASSERT(ret == MBEDTLS_ERR_OID_NOT_FOUND); 49 TEST_ASSERT(ret == 0); 50 TEST_ASSERT(strcmp((char *) desc, result_str) == 0); 68 TEST_ASSERT(ret == MBEDTLS_ERR_OID_NOT_FOUND); 70 TEST_ASSERT(ret == 0); 71 TEST_ASSERT(ext_type == exp_type); 90 TEST_ASSERT(ret == MBEDTLS_ERR_OID_NOT_FOUND); [all …]
|
D | test_suite_x509write.function | 189 TEST_ASSERT(mbedtls_x509_string_to_names(&ext_san_dirname, 212 TEST_ASSERT(mbedtls_pk_parse_keyfile(&key, key_file, NULL, 217 TEST_ASSERT(mbedtls_x509write_csr_set_subject_name(&req, subject_name) == 0); 219 TEST_ASSERT(mbedtls_x509write_csr_set_key_usage(&req, key_usage) == 0); 222 TEST_ASSERT(mbedtls_x509write_csr_set_ns_cert_type(&req, cert_type) == 0); 225 TEST_ASSERT(csr_set_extended_key_usage(&req, MBEDTLS_OID_SERVER_AUTH, 228 TEST_ASSERT(mbedtls_x509write_csr_set_subject_alternative_name(&req, san_list) == 0); 233 TEST_ASSERT(ret == 0); 238 TEST_ASSERT(buf[buf_index] == 0); 245 TEST_ASSERT(x509_crt_verifycsr(buf, pem_len + 1) == 0); [all …]
|
D | test_suite_pk.function | 666 TEST_ASSERT(mbedtls_pk_setup_opaque(&pk, MBEDTLS_SVC_KEY_ID_INIT) == 687 TEST_ASSERT(mbedtls_pk_setup_opaque(&pk, key) == 0); 689 TEST_ASSERT(mbedtls_pk_get_type(&pk) == MBEDTLS_PK_OPAQUE); 690 TEST_ASSERT(strcmp(mbedtls_pk_get_name(&pk), name) == 0); 692 TEST_ASSERT(mbedtls_pk_get_bitlen(&pk) == bitlen); 693 TEST_ASSERT(mbedtls_pk_get_len(&pk) == (bitlen + 7) / 8); 696 TEST_ASSERT(mbedtls_pk_can_do(&pk, MBEDTLS_PK_ECKEY) == 0); 697 TEST_ASSERT(mbedtls_pk_can_do(&pk, MBEDTLS_PK_ECDSA) == 0); 698 TEST_ASSERT(mbedtls_pk_can_do(&pk, MBEDTLS_PK_RSA) == 1); 700 TEST_ASSERT(mbedtls_pk_can_do(&pk, MBEDTLS_PK_ECKEY) == 1); [all …]
|
D | test_suite_poly1305.function | 22 TEST_ASSERT(mbedtls_poly1305_mac(key->x, src_str->x, 33 TEST_ASSERT(mbedtls_poly1305_starts(&ctx, key->x) == 0); 35 TEST_ASSERT(mbedtls_poly1305_update(&ctx, src_str->x, src_str->len) == 0); 37 TEST_ASSERT(mbedtls_poly1305_finish(&ctx, mac) == 0); 49 TEST_ASSERT(mbedtls_poly1305_starts(&ctx, key->x) == 0); 51 TEST_ASSERT(mbedtls_poly1305_update(&ctx, src_str->x, 1) == 0); 52 TEST_ASSERT(mbedtls_poly1305_update(&ctx, src_str->x + 1, src_str->len - 1) == 0); 54 TEST_ASSERT(mbedtls_poly1305_finish(&ctx, mac) == 0); 64 TEST_ASSERT(mbedtls_poly1305_starts(&ctx, key->x) == 0); 66 TEST_ASSERT(mbedtls_poly1305_update(&ctx, src_str->x, 1) == 0); [all …]
|
/mbedtls-latest/tests/src/test_helpers/ |
D | ssl_helpers.c | 626 TEST_ASSERT(ret == 0); in mbedtls_test_ssl_endpoint_certificate_init() 637 TEST_ASSERT(ret == 0); in mbedtls_test_ssl_endpoint_certificate_init() 644 TEST_ASSERT(ret == 0); in mbedtls_test_ssl_endpoint_certificate_init() 650 TEST_ASSERT(ret == 0); in mbedtls_test_ssl_endpoint_certificate_init() 657 TEST_ASSERT(ret == 0); in mbedtls_test_ssl_endpoint_certificate_init() 665 TEST_ASSERT(ret == 0); in mbedtls_test_ssl_endpoint_certificate_init() 672 TEST_ASSERT(ret == 0); in mbedtls_test_ssl_endpoint_certificate_init() 678 TEST_ASSERT(ret == 0); in mbedtls_test_ssl_endpoint_certificate_init() 685 TEST_ASSERT(ret == 0); in mbedtls_test_ssl_endpoint_certificate_init() 716 TEST_ASSERT(ret == 0); in mbedtls_test_ssl_endpoint_certificate_init() [all …]
|