pkcs[5/12]: add CIPHER_C for [en/de]crypting functions
This commit also updates corresponding test suites. Signed-off-by: Valerio Setti <valerio.setti@nordicsemi.no>
This commit is contained in:
parent
8c1e6bbcdc
commit
a69e872001
6 changed files with 16 additions and 12 deletions
|
@ -38,7 +38,7 @@
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(MBEDTLS_ASN1_PARSE_C)
|
#if defined(MBEDTLS_ASN1_PARSE_C) && defined(MBEDTLS_CIPHER_C)
|
||||||
|
|
||||||
#if !defined(MBEDTLS_DEPRECATED_REMOVED)
|
#if !defined(MBEDTLS_DEPRECATED_REMOVED)
|
||||||
/**
|
/**
|
||||||
|
@ -145,7 +145,7 @@ int mbedtls_pkcs12_pbe_ext(mbedtls_asn1_buf *pbe_params, int mode,
|
||||||
|
|
||||||
#endif /* MBEDTLS_CIPHER_PADDING_PKCS7 */
|
#endif /* MBEDTLS_CIPHER_PADDING_PKCS7 */
|
||||||
|
|
||||||
#endif /* MBEDTLS_ASN1_PARSE_C */
|
#endif /* MBEDTLS_ASN1_PARSE_C && MBEDTLS_CIPHER_C */
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \brief The PKCS#12 derivation function uses a password and a salt
|
* \brief The PKCS#12 derivation function uses a password and a salt
|
||||||
|
|
|
@ -38,7 +38,7 @@
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(MBEDTLS_ASN1_PARSE_C)
|
#if defined(MBEDTLS_ASN1_PARSE_C) && defined(MBEDTLS_CIPHER_C)
|
||||||
|
|
||||||
#if !defined(MBEDTLS_DEPRECATED_REMOVED)
|
#if !defined(MBEDTLS_DEPRECATED_REMOVED)
|
||||||
/**
|
/**
|
||||||
|
@ -130,7 +130,7 @@ int mbedtls_pkcs5_pbes2_ext(const mbedtls_asn1_buf *pbe_params, int mode,
|
||||||
|
|
||||||
#endif /* MBEDTLS_CIPHER_PADDING_PKCS7 */
|
#endif /* MBEDTLS_CIPHER_PADDING_PKCS7 */
|
||||||
|
|
||||||
#endif /* MBEDTLS_ASN1_PARSE_C */
|
#endif /* MBEDTLS_ASN1_PARSE_C && MBEDTLS_CIPHER_C*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \brief PKCS#5 PBKDF2 using HMAC without using the HMAC context
|
* \brief PKCS#5 PBKDF2 using HMAC without using the HMAC context
|
||||||
|
|
|
@ -17,7 +17,9 @@
|
||||||
|
|
||||||
#include "mbedtls/pkcs12.h"
|
#include "mbedtls/pkcs12.h"
|
||||||
#include "mbedtls/asn1.h"
|
#include "mbedtls/asn1.h"
|
||||||
|
#if defined(MBEDTLS_CIPHER_C)
|
||||||
#include "mbedtls/cipher.h"
|
#include "mbedtls/cipher.h"
|
||||||
|
#endif /* MBEDTLS_CIPHER_C */
|
||||||
#include "mbedtls/platform_util.h"
|
#include "mbedtls/platform_util.h"
|
||||||
#include "mbedtls/error.h"
|
#include "mbedtls/error.h"
|
||||||
|
|
||||||
|
@ -29,7 +31,7 @@
|
||||||
|
|
||||||
#include "psa_util_internal.h"
|
#include "psa_util_internal.h"
|
||||||
|
|
||||||
#if defined(MBEDTLS_ASN1_PARSE_C)
|
#if defined(MBEDTLS_ASN1_PARSE_C) && defined(MBEDTLS_CIPHER_C)
|
||||||
|
|
||||||
static int pkcs12_parse_pbe_params(mbedtls_asn1_buf *params,
|
static int pkcs12_parse_pbe_params(mbedtls_asn1_buf *params,
|
||||||
mbedtls_asn1_buf *salt, int *iterations)
|
mbedtls_asn1_buf *salt, int *iterations)
|
||||||
|
@ -238,7 +240,7 @@ exit:
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /* MBEDTLS_ASN1_PARSE_C */
|
#endif /* MBEDTLS_ASN1_PARSE_C && MBEDTLS_CIPHER_C */
|
||||||
|
|
||||||
static void pkcs12_fill_buffer(unsigned char *data, size_t data_len,
|
static void pkcs12_fill_buffer(unsigned char *data, size_t data_len,
|
||||||
const unsigned char *filler, size_t fill_len)
|
const unsigned char *filler, size_t fill_len)
|
||||||
|
|
|
@ -24,7 +24,9 @@
|
||||||
|
|
||||||
#if defined(MBEDTLS_ASN1_PARSE_C)
|
#if defined(MBEDTLS_ASN1_PARSE_C)
|
||||||
#include "mbedtls/asn1.h"
|
#include "mbedtls/asn1.h"
|
||||||
|
#if defined(MBEDTLS_CIPHER_C)
|
||||||
#include "mbedtls/cipher.h"
|
#include "mbedtls/cipher.h"
|
||||||
|
#endif /* MBEDTLS_CIPHER_C */
|
||||||
#include "mbedtls/oid.h"
|
#include "mbedtls/oid.h"
|
||||||
#endif /* MBEDTLS_ASN1_PARSE_C */
|
#endif /* MBEDTLS_ASN1_PARSE_C */
|
||||||
|
|
||||||
|
@ -34,7 +36,7 @@
|
||||||
|
|
||||||
#include "psa_util_internal.h"
|
#include "psa_util_internal.h"
|
||||||
|
|
||||||
#if defined(MBEDTLS_ASN1_PARSE_C)
|
#if defined(MBEDTLS_ASN1_PARSE_C) && defined(MBEDTLS_CIPHER_C)
|
||||||
static int pkcs5_parse_pbkdf2_params(const mbedtls_asn1_buf *params,
|
static int pkcs5_parse_pbkdf2_params(const mbedtls_asn1_buf *params,
|
||||||
mbedtls_asn1_buf *salt, int *iterations,
|
mbedtls_asn1_buf *salt, int *iterations,
|
||||||
int *keylen, mbedtls_md_type_t *md_type)
|
int *keylen, mbedtls_md_type_t *md_type)
|
||||||
|
@ -261,7 +263,7 @@ exit:
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
#endif /* MBEDTLS_ASN1_PARSE_C */
|
#endif /* MBEDTLS_ASN1_PARSE_C && MBEDTLS_CIPHER_C */
|
||||||
|
|
||||||
static int pkcs5_pbkdf2_hmac(mbedtls_md_context_t *ctx,
|
static int pkcs5_pbkdf2_hmac(mbedtls_md_context_t *ctx,
|
||||||
const unsigned char *password,
|
const unsigned char *password,
|
||||||
|
|
|
@ -69,7 +69,7 @@ exit:
|
||||||
}
|
}
|
||||||
/* END_CASE */
|
/* END_CASE */
|
||||||
|
|
||||||
/* BEGIN_CASE depends_on:MBEDTLS_ASN1_PARSE_C */
|
/* BEGIN_CASE depends_on:MBEDTLS_ASN1_PARSE_C:MBEDTLS_CIPHER_C */
|
||||||
void pkcs12_pbe_encrypt(int params_tag, int cipher, int md, data_t *params_hex, data_t *pw,
|
void pkcs12_pbe_encrypt(int params_tag, int cipher, int md, data_t *params_hex, data_t *pw,
|
||||||
data_t *data, int outsize, int ref_ret, data_t *ref_out)
|
data_t *data, int outsize, int ref_ret, data_t *ref_out)
|
||||||
{
|
{
|
||||||
|
@ -124,7 +124,7 @@ exit:
|
||||||
}
|
}
|
||||||
/* END_CASE */
|
/* END_CASE */
|
||||||
|
|
||||||
/* BEGIN_CASE depends_on:MBEDTLS_ASN1_PARSE_C */
|
/* BEGIN_CASE depends_on:MBEDTLS_ASN1_PARSE_C:MBEDTLS_CIPHER_C */
|
||||||
void pkcs12_pbe_decrypt(int params_tag, int cipher, int md, data_t *params_hex, data_t *pw,
|
void pkcs12_pbe_decrypt(int params_tag, int cipher, int md, data_t *params_hex, data_t *pw,
|
||||||
data_t *data, int outsize, int ref_ret, data_t *ref_out)
|
data_t *data, int outsize, int ref_ret, data_t *ref_out)
|
||||||
{
|
{
|
||||||
|
|
|
@ -27,7 +27,7 @@ exit:
|
||||||
}
|
}
|
||||||
/* END_CASE */
|
/* END_CASE */
|
||||||
|
|
||||||
/* BEGIN_CASE depends_on:MBEDTLS_ASN1_PARSE_C */
|
/* BEGIN_CASE depends_on:MBEDTLS_ASN1_PARSE_C:MBEDTLS_CIPHER_C */
|
||||||
void pbes2_encrypt(int params_tag, data_t *params_hex, data_t *pw,
|
void pbes2_encrypt(int params_tag, data_t *params_hex, data_t *pw,
|
||||||
data_t *data, int outsize, int ref_ret,
|
data_t *data, int outsize, int ref_ret,
|
||||||
data_t *ref_out)
|
data_t *ref_out)
|
||||||
|
@ -75,7 +75,7 @@ exit:
|
||||||
}
|
}
|
||||||
/* END_CASE */
|
/* END_CASE */
|
||||||
|
|
||||||
/* BEGIN_CASE depends_on:MBEDTLS_ASN1_PARSE_C */
|
/* BEGIN_CASE depends_on:MBEDTLS_ASN1_PARSE_C:MBEDTLS_CIPHER_C */
|
||||||
void pbes2_decrypt(int params_tag, data_t *params_hex, data_t *pw,
|
void pbes2_decrypt(int params_tag, data_t *params_hex, data_t *pw,
|
||||||
data_t *data, int outsize, int ref_ret,
|
data_t *data, int outsize, int ref_ret,
|
||||||
data_t *ref_out)
|
data_t *ref_out)
|
||||||
|
|
Loading…
Reference in a new issue