22#ifndef MBEDTLS_PKCS12_H
23#define MBEDTLS_PKCS12_H
25#if !defined(MBEDTLS_CONFIG_FILE)
28#include MBEDTLS_CONFIG_FILE
44#define MBEDTLS_ERR_PKCS12_BAD_INPUT_DATA -0x1F80
45#define MBEDTLS_ERR_PKCS12_FEATURE_UNAVAILABLE -0x1F00
46#define MBEDTLS_ERR_PKCS12_PBE_INVALID_FORMAT -0x1E80
47#define MBEDTLS_ERR_PKCS12_PASSWORD_MISMATCH -0x1E00
49#define MBEDTLS_PKCS12_DERIVE_KEY 1
50#define MBEDTLS_PKCS12_DERIVE_IV 2
51#define MBEDTLS_PKCS12_DERIVE_MAC_KEY 3
53#define MBEDTLS_PKCS12_PBE_DECRYPT 0
54#define MBEDTLS_PKCS12_PBE_ENCRYPT 1
60#if defined(MBEDTLS_ASN1_PARSE_C)
77 const unsigned char *pwd,
size_t pwdlen,
78 const unsigned char *input,
size_t len,
79 unsigned char *output );
99 const unsigned char *pwd,
size_t pwdlen,
100 const unsigned char *input,
size_t len,
101 unsigned char *output );
127 const unsigned char *pwd,
size_t pwdlen,
128 const unsigned char *salt,
size_t saltlen,
This file contains an abstraction interface for use with the cipher primitives provided by the librar...
Configuration options (set of defines)
mbedtls_cipher_type_t
Supported {cipher type, cipher mode} pairs.
mbedtls_md_type_t
Supported message digests.
int mbedtls_md(const mbedtls_md_info_t *md_info, const unsigned char *input, size_t ilen, unsigned char *output)
This function calculates the message-digest of a buffer, with respect to a configurable message-diges...
int mbedtls_pkcs12_derivation(unsigned char *data, size_t datalen, const unsigned char *pwd, size_t pwdlen, const unsigned char *salt, size_t saltlen, mbedtls_md_type_t mbedtls_md, int id, int iterations)
The PKCS#12 derivation function uses a password and a salt to produce pseudo-random bits for a partic...
This file contains the generic message-digest wrapper.
Type-length-value structure that allows for ASN1 using DER.