1D2I_PRIVATEKEY(3) OpenSSL D2I_PRIVATEKEY(3)
2
3
4
6 d2i_PrivateKey, d2i_PublicKey, d2i_AutoPrivateKey, i2d_PrivateKey,
7 i2d_PublicKey, d2i_PrivateKey_bio, d2i_PrivateKey_fp - decode and
8 encode functions for reading and saving EVP_PKEY structures
9
11 #include <openssl/evp.h>
12
13 EVP_PKEY *d2i_PrivateKey(int type, EVP_PKEY **a, const unsigned char **pp,
14 long length);
15 EVP_PKEY *d2i_PublicKey(int type, EVP_PKEY **a, const unsigned char **pp,
16 long length);
17 EVP_PKEY *d2i_AutoPrivateKey(EVP_PKEY **a, const unsigned char **pp,
18 long length);
19 int i2d_PrivateKey(EVP_PKEY *a, unsigned char **pp);
20 int i2d_PublicKey(EVP_PKEY *a, unsigned char **pp);
21
22 EVP_PKEY *d2i_PrivateKey_bio(BIO *bp, EVP_PKEY **a);
23 EVP_PKEY *d2i_PrivateKey_fp(FILE *fp, EVP_PKEY **a)
24
26 d2i_PrivateKey() decodes a private key using algorithm type. It
27 attempts to use any key specific format or PKCS#8 unencrypted
28 PrivateKeyInfo format. The type parameter should be a public key
29 algorithm constant such as EVP_PKEY_RSA. An error occurs if the decoded
30 key does not match type. d2i_PublicKey() does the same for public
31 keys.
32
33 d2i_AutoPrivateKey() is similar to d2i_PrivateKey() except it attempts
34 to automatically detect the private key format.
35
36 i2d_PrivateKey() encodes key. It uses a key specific format or, if none
37 is defined for that key type, PKCS#8 unencrypted PrivateKeyInfo format.
38 i2d_PublicKey() does the same for public keys.
39
40 These functions are similar to the d2i_X509() functions; see
41 d2i_X509(3).
42
44 All these functions use DER format and unencrypted keys. Applications
45 wishing to encrypt or decrypt private keys should use other functions
46 such as d2i_PKCS8PrivateKey() instead.
47
48 If the *a is not NULL when calling d2i_PrivateKey() or
49 d2i_AutoPrivateKey() (i.e. an existing structure is being reused) and
50 the key format is PKCS#8 then *a will be freed and replaced on a
51 successful call.
52
54 d2i_PrivateKey() and d2i_AutoPrivateKey() return a valid EVP_KEY
55 structure or NULL if an error occurs. The error code can be obtained by
56 calling ERR_get_error(3).
57
58 i2d_PrivateKey() returns the number of bytes successfully encoded or a
59 negative value if an error occurs. The error code can be obtained by
60 calling ERR_get_error(3).
61
63 crypto(7), d2i_PKCS8PrivateKey_bio(3)
64
66 Copyright 2017-2018 The OpenSSL Project Authors. All Rights Reserved.
67
68 Licensed under the OpenSSL license (the "License"). You may not use
69 this file except in compliance with the License. You can obtain a copy
70 in the file LICENSE in the source distribution or at
71 <https://www.openssl.org/source/license.html>.
72
73
74
751.1.1 2018-09-11 D2I_PRIVATEKEY(3)