Merge pull request #6232 from AndrzejKurek/pkcs12-no-md

Remove MD dependency from pkcs12 module
This commit is contained in:
Manuel Pégourié-Gonnard 2022-09-02 09:43:13 +02:00 committed by GitHub
commit 97fc247d6a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 152 additions and 78 deletions

View file

@ -2669,7 +2669,11 @@
* Module: library/pkcs12.c
* Caller: library/pkparse.c
*
* Requires: MBEDTLS_ASN1_PARSE_C, MBEDTLS_CIPHER_C, MBEDTLS_MD_C
* Requires: MBEDTLS_ASN1_PARSE_C, MBEDTLS_CIPHER_C and either
* MBEDTLS_MD_C or MBEDTLS_PSA_CRYPTO_C.
*
* \warning If building without MBEDTLS_MD_C, you must call psa_crypto_init()
* before doing any PKCS12 operation.
*
* This module enables PKCS#12 functions.
*/