pkcs7: Add dependecy on MBEDTLS_MD_C
Signed-off-by: Nick Child <nick.child@ibm.com>
This commit is contained in:
parent
2364aaefa6
commit
89e82e1685
3 changed files with 6 additions and 2 deletions
|
@ -992,7 +992,8 @@
|
||||||
#if defined(MBEDTLS_PKCS7_C) && ( ( !defined(MBEDTLS_ASN1_PARSE_C) ) || \
|
#if defined(MBEDTLS_PKCS7_C) && ( ( !defined(MBEDTLS_ASN1_PARSE_C) ) || \
|
||||||
( !defined(MBEDTLS_OID_C) ) || ( !defined(MBEDTLS_PK_PARSE_C) ) || \
|
( !defined(MBEDTLS_OID_C) ) || ( !defined(MBEDTLS_PK_PARSE_C) ) || \
|
||||||
( !defined(MBEDTLS_X509_CRT_PARSE_C) ) ||\
|
( !defined(MBEDTLS_X509_CRT_PARSE_C) ) ||\
|
||||||
( !defined(MBEDTLS_X509_CRL_PARSE_C) ) || ( !defined(MBEDTLS_BIGNUM_C) ) )
|
( !defined(MBEDTLS_X509_CRL_PARSE_C) ) || ( !defined(MBEDTLS_BIGNUM_C) ) \
|
||||||
|
( !defined(MBEDTLS_MD_C) ) )
|
||||||
#error "MBEDTLS_PKCS7_C is defined, but not all prerequisites"
|
#error "MBEDTLS_PKCS7_C is defined, but not all prerequisites"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
|
@ -2669,7 +2669,8 @@
|
||||||
* Module: library/pkcs7.c
|
* Module: library/pkcs7.c
|
||||||
*
|
*
|
||||||
* Requires: MBEDTLS_ASN1_PARSE_C, MBEDTLS_OID_C, MBEDTLS_PK_PARSE_C,
|
* Requires: MBEDTLS_ASN1_PARSE_C, MBEDTLS_OID_C, MBEDTLS_PK_PARSE_C,
|
||||||
* MBEDTLS_X509_CRT_PARSE_C MBEDTLS_X509_CRL_PARSE_C, MBEDTLS_BIGNUM_C
|
* MBEDTLS_X509_CRT_PARSE_C MBEDTLS_X509_CRL_PARSE_C,
|
||||||
|
* MBEDTLS_BIGNUM_C, MBEDTLS_MD_C
|
||||||
*
|
*
|
||||||
* This module is required for the PKCS7 parsing modules.
|
* This module is required for the PKCS7 parsing modules.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -1211,6 +1211,7 @@ component_test_crypto_full_no_md () {
|
||||||
scripts/config.py unset MBEDTLS_HKDF_C
|
scripts/config.py unset MBEDTLS_HKDF_C
|
||||||
scripts/config.py unset MBEDTLS_HMAC_DRBG_C
|
scripts/config.py unset MBEDTLS_HMAC_DRBG_C
|
||||||
scripts/config.py unset MBEDTLS_PKCS5_C
|
scripts/config.py unset MBEDTLS_PKCS5_C
|
||||||
|
scripts/config.py unset MBEDTLS_PKCS7_C
|
||||||
scripts/config.py unset MBEDTLS_PKCS12_C
|
scripts/config.py unset MBEDTLS_PKCS12_C
|
||||||
# Indirect dependencies
|
# Indirect dependencies
|
||||||
scripts/config.py unset MBEDTLS_ECDSA_DETERMINISTIC
|
scripts/config.py unset MBEDTLS_ECDSA_DETERMINISTIC
|
||||||
|
@ -1871,6 +1872,7 @@ component_test_psa_crypto_config_accel_hash_use_psa () {
|
||||||
scripts/config.py unset MBEDTLS_HKDF_C
|
scripts/config.py unset MBEDTLS_HKDF_C
|
||||||
scripts/config.py unset MBEDTLS_HMAC_DRBG_C
|
scripts/config.py unset MBEDTLS_HMAC_DRBG_C
|
||||||
scripts/config.py unset MBEDTLS_PKCS5_C
|
scripts/config.py unset MBEDTLS_PKCS5_C
|
||||||
|
scripts/config.py unset MBEDTLS_PKCS7_C
|
||||||
scripts/config.py unset MBEDTLS_PKCS12_C
|
scripts/config.py unset MBEDTLS_PKCS12_C
|
||||||
scripts/config.py unset MBEDTLS_ECDSA_DETERMINISTIC
|
scripts/config.py unset MBEDTLS_ECDSA_DETERMINISTIC
|
||||||
scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_DETERMINISTIC_ECDSA
|
scripts/config.py -f include/psa/crypto_config.h unset PSA_WANT_ALG_DETERMINISTIC_ECDSA
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue