1=pod
2
3=head1 NAME
4
5PKCS12_PBE_keyivgen, PKCS12_PBE_keyivgen_ex,
6PKCS12_pbe_crypt, PKCS12_pbe_crypt_ex - PKCS#12 Password based encryption
7
8=head1 SYNOPSIS
9
10 #include <openssl/evp.h>
11
12 int PKCS12_PBE_keyivgen(EVP_CIPHER_CTX *ctx, const char *pass, int passlen,
13                         ASN1_TYPE *param, const EVP_CIPHER *cipher,
14                         const EVP_MD *md_type, int en_de);
15 int PKCS12_PBE_keyivgen_ex(EVP_CIPHER_CTX *ctx, const char *pass, int passlen,
16                            ASN1_TYPE *param, const EVP_CIPHER *cipher,
17                            const EVP_MD *md_type, int en_de,
18                            OSSL_LIB_CTX *libctx, const char *propq);
19 unsigned char *PKCS12_pbe_crypt(const X509_ALGOR *algor,
20                                 const char *pass, int passlen,
21                                 const unsigned char *in, int inlen,
22                                 unsigned char **data, int *datalen,
23                                 int en_de);
24 unsigned char *PKCS12_pbe_crypt_ex(const X509_ALGOR *algor,
25                                    const char *pass, int passlen,
26                                    const unsigned char *in, int inlen,
27                                    unsigned char **data, int *datalen,
28                                    int en_de, OSSL_LIB_CTX *libctx,
29                                    const char *propq);
30
31=head1 DESCRIPTION
32
33PKCS12_PBE_keyivgen() and PKCS12_PBE_keyivgen_ex() take a password I<pass> of
34length I<passlen>, parameters I<param> and a message digest function I<md_type>
35and perform a key derivation according to PKCS#12. The resulting key is
36then used to initialise the cipher context I<ctx> with a cipher I<cipher> for
37encryption (I<en_de>=1) or decryption (I<en_de>=0).
38
39PKCS12_PBE_keyivgen_ex() also allows the application to specify a library context
40I<libctx> and property query I<propq> to select appropriate algorithm
41implementations.
42
43PKCS12_pbe_crypt() and PKCS12_pbe_crypt_ex() will encrypt or decrypt a buffer
44based on the algorithm in I<algor> and password I<pass> of length I<passlen>.
45The input is from I<in> of length I<inlen> and output is into a malloc'd buffer
46returned in I<*data> of length I<datalen>. The operation is determined by I<en_de>,
47encryption (I<en_de>=1) or decryption (I<en_de>=0).
48
49PKCS12_pbe_crypt_ex() allows the application to specify a library context
50I<libctx> and property query I<propq> to select appropriate algorithm
51implementations.
52
53I<pass> is the password used in the derivation of length I<passlen>. I<pass>
54is an optional parameter and can be NULL. If I<passlen> is -1, then the
55function will calculate the length of I<pass> using strlen().
56
57I<salt> is the salt used in the derivation of length I<saltlen>. If the
58I<salt> is NULL, then I<saltlen> must be 0. The function will not
59attempt to calculate the length of the I<salt> because it is not assumed to
60be NULL terminated.
61
62I<iter> is the iteration count and its value should be greater than or
63equal to 1. RFC 2898 suggests an iteration count of at least 1000. Any
64I<iter> less than 1 is treated as a single iteration.
65
66I<digest> is the message digest function used in the derivation.
67
68Functions ending in _ex() take optional parameters I<libctx> and I<propq> which
69are used to select appropriate algorithm implementations.
70
71=head1 NOTES
72
73The functions are typically used in PKCS#12 to encrypt objects.
74
75These functions make no assumption regarding the given password.
76It will simply be treated as a byte sequence.
77
78=head1 RETURN VALUES
79
80PKCS12_PBE_keyivgen(), PKCS12_PBE_keyivgen_ex() return 1 on success or 0 on error.
81
82PKCS12_pbe_crypt() and PKCS12_pbe_crypt_ex() return a buffer containing the
83output or NULL if an error occurred.
84
85=head1 CONFORMING TO
86
87IETF RFC 7292 (L<https://tools.ietf.org/html/rfc7292>)
88
89=head1 SEE ALSO
90
91L<EVP_PBE_CipherInit_ex(3)>,
92L<PKCS8_encrypt_ex(3)>,
93L<passphrase-encoding(7)>
94
95=head1 HISTORY
96
97PKCS12_PBE_keyivgen_ex() and PKCS12_pbe_crypt_ex() were added in OpenSSL 3.0.
98
99=head1 COPYRIGHT
100
101Copyright 2014-2021 The OpenSSL Project Authors. All Rights Reserved.
102
103Licensed under the Apache License 2.0 (the "License").  You may not use
104this file except in compliance with the License.  You can obtain a copy
105in the file LICENSE in the source distribution or at
106L<https://www.openssl.org/source/license.html>.
107
108=cut
109