Home
last modified time | relevance | path

Searched refs:mbedtls_rsa_export_crt (Results 1 – 9 of 9) sorted by relevance

/mbedtls-3.7.0/programs/fuzz/
Dfuzz_pubkey.c36 if (mbedtls_rsa_export_crt(rsa, &DP, &DQ, &QP) != MBEDTLS_ERR_RSA_BAD_INPUT_DATA) { in LLVMFuzzerTestOneInput()
Dfuzz_privkey.c61 if (mbedtls_rsa_export_crt(rsa, &DP, &DQ, &QP) != 0) { in LLVMFuzzerTestOneInput()
/mbedtls-3.7.0/programs/pkey/
Drsa_genkey.c82 (ret = mbedtls_rsa_export_crt(&rsa, &DP, &DQ, &QP)) != 0) { in main()
Dkey_app.c270 (ret = mbedtls_rsa_export_crt(rsa, &DP, &DQ, &QP)) != 0) { in main()
Dkey_app_writer.c386 (ret = mbedtls_rsa_export_crt(rsa, &DP, &DQ, &QP)) != 0) { in main()
Dgen_key.c413 (ret = mbedtls_rsa_export_crt(rsa, &DP, &DQ, &QP)) != 0) { in main()
/mbedtls-3.7.0/include/mbedtls/
Drsa.h426 int mbedtls_rsa_export_crt(const mbedtls_rsa_context *ctx,
/mbedtls-3.7.0/library/
Drsa.c300 if ((ret = mbedtls_rsa_export_crt(rsa, NULL, NULL, &T)) != 0 || in mbedtls_rsa_write_key()
307 if ((ret = mbedtls_rsa_export_crt(rsa, NULL, &T, NULL)) != 0 || in mbedtls_rsa_write_key()
314 if ((ret = mbedtls_rsa_export_crt(rsa, &T, NULL, NULL)) != 0 || in mbedtls_rsa_write_key()
914 int mbedtls_rsa_export_crt(const mbedtls_rsa_context *ctx, in mbedtls_rsa_export_crt() function
/mbedtls-3.7.0/docs/
Dpsa-transition.md1300 …quivalent of `mbedtls_rsa_export`, `mbedtls_rsa_export_raw` and `mbedtls_rsa_export_crt` to export…