Searched refs:mbedtls_rsa_export (Results 1 – 12 of 12) sorted by relevance
/mbedtls-3.7.0/programs/fuzz/ |
D | fuzz_pubkey.c | 30 if (mbedtls_rsa_export(rsa, &N, NULL, NULL, NULL, &E) != 0) { in LLVMFuzzerTestOneInput() 33 if (mbedtls_rsa_export(rsa, &N, &P, &Q, &D, &E) != MBEDTLS_ERR_RSA_BAD_INPUT_DATA) { in LLVMFuzzerTestOneInput()
|
D | fuzz_privkey.c | 58 if (mbedtls_rsa_export(rsa, &N, &P, &Q, &D, &E) != 0) { in LLVMFuzzerTestOneInput()
|
/mbedtls-3.7.0/programs/pkey/ |
D | key_app.c | 269 if ((ret = mbedtls_rsa_export(rsa, &N, &P, &Q, &D, &E)) != 0 || in main() 319 if ((ret = mbedtls_rsa_export(rsa, &N, NULL, NULL, in main()
|
D | key_app_writer.c | 385 if ((ret = mbedtls_rsa_export(rsa, &N, &P, &Q, &D, &E)) != 0 || in main() 437 if ((ret = mbedtls_rsa_export(rsa, &N, NULL, NULL, in main()
|
D | rsa_genkey.c | 81 if ((ret = mbedtls_rsa_export(&rsa, &N, &P, &Q, &D, &E)) != 0 || in main()
|
D | gen_key.c | 412 if ((ret = mbedtls_rsa_export(rsa, &N, &P, &Q, &D, &E)) != 0 || in main()
|
/mbedtls-3.7.0/tests/suites/ |
D | test_suite_rsa.data | 672 mbedtls_rsa_export:"b38ac65c8141f7f5c96e14470e851936a67bf94cc6821a39ac12c05f7c0b06d9e6ddba2224703b0… 675 mbedtls_rsa_export:"b38ac65c8141f7f5c96e14470e851936a67bf94cc6821a39ac12c05f7c0b06d9e6ddba2224703b0… 678 mbedtls_rsa_export:"b38ac65c8141f7f5c96e14470e851936a67bf94cc6821a39ac12c05f7c0b06d9e6ddba2224703b0… 681 mbedtls_rsa_export:"b38ac65c8141f7f5c96e14470e851936a67bf94cc6821a39ac12c05f7c0b06d9e6ddba2224703b0… 684 mbedtls_rsa_export:"b38ac65c8141f7f5c96e14470e851936a67bf94cc6821a39ac12c05f7c0b06d9e6ddba2224703b0… 687 mbedtls_rsa_export:"b38ac65c8141f7f5c96e14470e851936a67bf94cc6821a39ac12c05f7c0b06d9e6ddba2224703b0… 690 mbedtls_rsa_export:"b38ac65c8141f7f5c96e14470e851936a67bf94cc6821a39ac12c05f7c0b06d9e6ddba2224703b0…
|
D | test_suite_rsa.function | 1006 void mbedtls_rsa_export(char *input_N, 1075 TEST_ASSERT(mbedtls_rsa_export(&ctx, &Ne, NULL, NULL, NULL, &Ee) == 0); 1077 TEST_ASSERT(mbedtls_rsa_export(&ctx, &Ne, NULL, NULL, NULL, NULL) == 0); 1078 TEST_ASSERT(mbedtls_rsa_export(&ctx, NULL, NULL, NULL, NULL, &Ee) == 0); 1088 TEST_ASSERT(mbedtls_rsa_export(&ctx, NULL, &Pe, &Qe, 1091 TEST_ASSERT(mbedtls_rsa_export(&ctx, NULL, &Pe, NULL, 1093 TEST_ASSERT(mbedtls_rsa_export(&ctx, NULL, NULL, &Qe, 1095 TEST_ASSERT(mbedtls_rsa_export(&ctx, NULL, NULL, NULL,
|
/mbedtls-3.7.0/library/ |
D | rsa.c | 321 if ((ret = mbedtls_rsa_export(rsa, NULL, NULL, &T, NULL, NULL)) != 0 || in mbedtls_rsa_write_key() 328 if ((ret = mbedtls_rsa_export(rsa, NULL, &T, NULL, NULL, NULL)) != 0 || in mbedtls_rsa_write_key() 335 if ((ret = mbedtls_rsa_export(rsa, NULL, NULL, NULL, &T, NULL)) != 0 || in mbedtls_rsa_write_key() 342 if ((ret = mbedtls_rsa_export(rsa, NULL, NULL, NULL, NULL, &T)) != 0 || in mbedtls_rsa_write_key() 349 if ((ret = mbedtls_rsa_export(rsa, &T, NULL, NULL, NULL, NULL)) != 0 || in mbedtls_rsa_write_key() 387 if ((ret = mbedtls_rsa_export(rsa, NULL, NULL, NULL, NULL, &T)) != 0 || in mbedtls_rsa_write_pubkey() 394 if ((ret = mbedtls_rsa_export(rsa, &T, NULL, NULL, NULL, NULL)) != 0 || in mbedtls_rsa_write_pubkey() 871 int mbedtls_rsa_export(const mbedtls_rsa_context *ctx, in mbedtls_rsa_export() function
|
D | psa_crypto_rsa.c | 49 mbedtls_rsa_export(rsa, &n, NULL, NULL, NULL, NULL)); in psa_check_rsa_key_byte_aligned()
|
/mbedtls-3.7.0/include/mbedtls/ |
D | rsa.h | 349 int mbedtls_rsa_export(const mbedtls_rsa_context *ctx,
|
/mbedtls-3.7.0/docs/ |
D | psa-transition.md | 1300 There is no direct equivalent of `mbedtls_rsa_export`, `mbedtls_rsa_export_raw` and `mbedtls_rsa_ex…
|