pem_pkey.c
Go to the documentation of this file.
1 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
2  * All rights reserved.
3  *
4  * This package is an SSL implementation written
5  * by Eric Young (eay@cryptsoft.com).
6  * The implementation was written so as to conform with Netscapes SSL.
7  *
8  * This library is free for commercial and non-commercial use as long as
9  * the following conditions are aheared to. The following conditions
10  * apply to all code found in this distribution, be it the RC4, RSA,
11  * lhash, DES, etc., code; not just the SSL code. The SSL documentation
12  * included with this distribution is covered by the same copyright terms
13  * except that the holder is Tim Hudson (tjh@cryptsoft.com).
14  *
15  * Copyright remains Eric Young's, and as such any Copyright notices in
16  * the code are not to be removed.
17  * If this package is used in a product, Eric Young should be given attribution
18  * as the author of the parts of the library used.
19  * This can be in the form of a textual message at program startup or
20  * in documentation (online or textual) provided with the package.
21  *
22  * Redistribution and use in source and binary forms, with or without
23  * modification, are permitted provided that the following conditions
24  * are met:
25  * 1. Redistributions of source code must retain the copyright
26  * notice, this list of conditions and the following disclaimer.
27  * 2. Redistributions in binary form must reproduce the above copyright
28  * notice, this list of conditions and the following disclaimer in the
29  * documentation and/or other materials provided with the distribution.
30  * 3. All advertising materials mentioning features or use of this software
31  * must display the following acknowledgement:
32  * "This product includes cryptographic software written by
33  * Eric Young (eay@cryptsoft.com)"
34  * The word 'cryptographic' can be left out if the rouines from the library
35  * being used are not cryptographic related :-).
36  * 4. If you include any Windows specific code (or a derivative thereof) from
37  * the apps directory (application code) you must include an acknowledgement:
38  * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
39  *
40  * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
41  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
42  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
43  * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
44  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
45  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
46  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
48  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
49  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
50  * SUCH DAMAGE.
51  *
52  * The licence and distribution terms for any publically available version or
53  * derivative of this code cannot be changed. i.e. this code cannot simply be
54  * copied and put under another distribution licence
55  * [including the GNU Public Licence.] */
56 
57 #include <openssl/pem.h>
58 
59 #include <stdio.h>
60 #include <string.h>
61 
62 #include <openssl/dh.h>
63 #include <openssl/err.h>
64 #include <openssl/evp.h>
65 #include <openssl/mem.h>
66 #include <openssl/obj.h>
67 #include <openssl/pkcs8.h>
68 #include <openssl/rand.h>
69 #include <openssl/x509.h>
70 
72  void *u)
73 {
74  char *nm = NULL;
75  const unsigned char *p = NULL;
76  unsigned char *data = NULL;
77  long len;
78  EVP_PKEY *ret = NULL;
79 
81  return NULL;
82  p = data;
83 
84  if (strcmp(nm, PEM_STRING_PKCS8INF) == 0) {
85  PKCS8_PRIV_KEY_INFO *p8inf;
86  p8inf = d2i_PKCS8_PRIV_KEY_INFO(NULL, &p, len);
87  if (!p8inf)
88  goto p8err;
89  ret = EVP_PKCS82PKEY(p8inf);
90  if (x) {
91  if (*x)
93  *x = ret;
94  }
96  } else if (strcmp(nm, PEM_STRING_PKCS8) == 0) {
97  PKCS8_PRIV_KEY_INFO *p8inf;
98  X509_SIG *p8;
99  int klen;
100  char psbuf[PEM_BUFSIZE];
101  p8 = d2i_X509_SIG(NULL, &p, len);
102  if (!p8)
103  goto p8err;
104 
105  klen = 0;
106  if (!cb)
108  klen = cb(psbuf, PEM_BUFSIZE, 0, u);
109  if (klen <= 0) {
111  X509_SIG_free(p8);
112  goto err;
113  }
114  p8inf = PKCS8_decrypt(p8, psbuf, klen);
115  X509_SIG_free(p8);
116  OPENSSL_cleanse(psbuf, klen);
117  if (!p8inf)
118  goto p8err;
119  ret = EVP_PKCS82PKEY(p8inf);
120  if (x) {
121  if (*x)
122  EVP_PKEY_free((EVP_PKEY *)*x);
123  *x = ret;
124  }
126  } else if (strcmp(nm, PEM_STRING_RSA) == 0) {
127  /* TODO(davidben): d2i_PrivateKey parses PKCS#8 along with the
128  * standalone format. This and the cases below probably should not
129  * accept PKCS#8. */
131  } else if (strcmp(nm, PEM_STRING_EC) == 0) {
133  } else if (strcmp(nm, PEM_STRING_DSA) == 0) {
135  }
136  p8err:
137  if (ret == NULL)
139 
140  err:
141  OPENSSL_free(nm);
143  return (ret);
144 }
145 
147  unsigned char *kstr, int klen,
148  pem_password_cb *cb, void *u)
149 {
150  return PEM_write_bio_PKCS8PrivateKey(bp, x, enc, (char *)kstr, klen, cb, u);
151 }
152 
154  void *u)
155 {
156  BIO *b = BIO_new_fp(fp, BIO_NOCLOSE);
157  if (b == NULL) {
159  return NULL;
160  }
162  BIO_free(b);
163  return ret;
164 }
165 
167  unsigned char *kstr, int klen,
168  pem_password_cb *cb, void *u)
169 {
170  BIO *b = BIO_new_fp(fp, BIO_NOCLOSE);
171  if (b == NULL) {
173  return 0;
174  }
175  int ret = PEM_write_bio_PrivateKey(b, x, enc, kstr, klen, cb, u);
176  BIO_free(b);
177  return ret;
178 }
179 
180 
181 /* Transparently read in PKCS#3 or X9.42 DH parameters */
182 
184 {
185  char *nm = NULL;
186  const unsigned char *p = NULL;
187  unsigned char *data = NULL;
188  long len;
189  DH *ret = NULL;
190 
192  return NULL;
193  p = data;
194 
195  ret = d2i_DHparams(x, &p, len);
196 
197  if (ret == NULL)
199  OPENSSL_free(nm);
201  return ret;
202 }
203 
205 {
206  BIO *b = BIO_new_fp(fp, BIO_NOCLOSE);
207  if (b == NULL) {
209  return NULL;
210  }
211  DH *ret = PEM_read_bio_DHparams(b, x, cb, u);
212  BIO_free(b);
213  return ret;
214 }
PEM_bytes_read_bio
#define PEM_bytes_read_bio
Definition: boringssl_prefix_symbols.h:1915
BIO_new_fp
#define BIO_new_fp
Definition: boringssl_prefix_symbols.h:819
EVP_PKEY_EC
#define EVP_PKEY_EC
Definition: evp.h:178
EVP_PKCS82PKEY
OPENSSL_EXPORT EVP_PKEY * EVP_PKCS82PKEY(PKCS8_PRIV_KEY_INFO *p8)
OPENSSL_cleanse
#define OPENSSL_cleanse
Definition: boringssl_prefix_symbols.h:1864
PEM_BUFSIZE
#define PEM_BUFSIZE
Definition: pem.h:78
bio_st
Definition: bio.h:822
kstr
X509 X509_REQ PKCS7 PKCS8_PRIV_KEY_INFO RSA DSA DSA EC_KEY EVP_PKEY EVP_PKEY int char * kstr
Definition: pem.h:425
evp.h
d2i_X509_SIG
#define d2i_X509_SIG
Definition: boringssl_prefix_symbols.h:3052
PKCS8_decrypt
OPENSSL_EXPORT PKCS8_PRIV_KEY_INFO * PKCS8_decrypt(X509_SIG *pkcs8, const char *pass, int pass_len)
OPENSSL_PUT_ERROR
#define OPENSSL_PUT_ERROR(library, reason)
Definition: err.h:423
PEM_def_callback
#define PEM_def_callback
Definition: boringssl_prefix_symbols.h:1916
string.h
PEM_STRING_EC
#define PEM_STRING_EC
Definition: pem.h:93
X509_sig_st
Definition: x_sig.c:64
error_ref_leak.err
err
Definition: error_ref_leak.py:35
u
OPENSSL_EXPORT pem_password_cb void * u
Definition: pem.h:351
pem.h
EVP_PKEY_RSA
#define EVP_PKEY_RSA
Definition: evp.h:175
pkcs8.h
xds_manager.p
p
Definition: xds_manager.py:60
pem_password_cb
int pem_password_cb(char *buf, int size, int rwflag, void *userdata)
Definition: pem.h:313
PEM_STRING_DSA
#define PEM_STRING_DSA
Definition: pem.h:91
PEM_read_bio_PrivateKey
EVP_PKEY * PEM_read_bio_PrivateKey(BIO *bp, EVP_PKEY **x, pem_password_cb *cb, void *u)
Definition: pem_pkey.c:71
EVP_PKEY_DSA
#define EVP_PKEY_DSA
Definition: evp.h:177
PEM_write_PrivateKey
int PEM_write_PrivateKey(FILE *fp, EVP_PKEY *x, const EVP_CIPHER *enc, unsigned char *kstr, int klen, pem_password_cb *cb, void *u)
Definition: pem_pkey.c:166
dh.h
evp_cipher_st
Definition: cipher.h:585
evp_pkey_st
Definition: evp.h:1046
EVP_PKEY_free
#define EVP_PKEY_free
Definition: boringssl_prefix_symbols.h:1625
err.h
PEM_read_bio_DHparams
DH * PEM_read_bio_DHparams(BIO *bp, DH **x, pem_password_cb *cb, void *u)
Definition: pem_pkey.c:183
x
int x
Definition: bloaty/third_party/googletest/googlemock/test/gmock-matchers_test.cc:3610
d2i_DHparams
#define d2i_DHparams
Definition: boringssl_prefix_symbols.h:2965
data
char data[kBufferLength]
Definition: abseil-cpp/absl/strings/internal/str_format/float_conversion.cc:1006
b
uint64_t b
Definition: abseil-cpp/absl/container/internal/layout_test.cc:53
ERR_R_BUF_LIB
#define ERR_R_BUF_LIB
Definition: err.h:335
PKCS8_PRIV_KEY_INFO_free
#define PKCS8_PRIV_KEY_INFO_free
Definition: boringssl_prefix_symbols.h:2029
ERR_R_ASN1_LIB
#define ERR_R_ASN1_LIB
Definition: err.h:340
BIO_free
#define BIO_free
Definition: boringssl_prefix_symbols.h:787
PEM_read_DHparams
DH * PEM_read_DHparams(FILE *fp, DH **x, pem_password_cb *cb, void *u)
Definition: pem_pkey.c:204
PEM_read_PrivateKey
EVP_PKEY * PEM_read_PrivateKey(FILE *fp, EVP_PKEY **x, pem_password_cb *cb, void *u)
Definition: pem_pkey.c:153
rand.h
benchmark.FILE
FILE
Definition: benchmark.py:21
PEM_STRING_EVP_PKEY
#define PEM_STRING_EVP_PKEY
Definition: pem.h:87
d2i_PKCS8_PRIV_KEY_INFO
#define d2i_PKCS8_PRIV_KEY_INFO
Definition: boringssl_prefix_symbols.h:3004
d2i_PrivateKey
#define d2i_PrivateKey
Definition: boringssl_prefix_symbols.h:3016
PEM_R_BAD_PASSWORD_READ
#define PEM_R_BAD_PASSWORD_READ
Definition: pem.h:471
ret
UniquePtr< SSL_SESSION > ret
Definition: ssl_x509.cc:1029
PEM_STRING_PKCS8INF
#define PEM_STRING_PKCS8INF
Definition: pem.h:97
PEM_STRING_DHPARAMS
#define PEM_STRING_DHPARAMS
Definition: pem.h:98
PEM_write_bio_PKCS8PrivateKey
#define PEM_write_bio_PKCS8PrivateKey
Definition: boringssl_prefix_symbols.h:1990
obj.h
BIO_NOCLOSE
#define BIO_NOCLOSE
Definition: bio.h:373
PEM_write_bio_PrivateKey
int PEM_write_bio_PrivateKey(BIO *bp, EVP_PKEY *x, const EVP_CIPHER *enc, unsigned char *kstr, int klen, pem_password_cb *cb, void *u)
Definition: pem_pkey.c:146
X509_SIG_free
#define X509_SIG_free
Definition: boringssl_prefix_symbols.h:2481
dh_st
Definition: dh.h:305
mem.h
len
int len
Definition: abseil-cpp/absl/base/internal/low_level_alloc_test.cc:46
PEM_STRING_RSA
#define PEM_STRING_RSA
Definition: pem.h:89
pkcs8_priv_key_info_st
Definition: third_party/boringssl-with-bazel/src/crypto/pkcs8/internal.h:66
OPENSSL_free
#define OPENSSL_free
Definition: boringssl_prefix_symbols.h:1869
klen
X509 X509_REQ PKCS7 PKCS8_PRIV_KEY_INFO RSA DSA DSA EC_KEY EVP_PKEY EVP_PKEY int char int klen
Definition: pem.h:426
X509_name_st
Definition: third_party/boringssl-with-bazel/src/crypto/x509/internal.h:95
cb
OPENSSL_EXPORT pem_password_cb * cb
Definition: pem.h:351
x509.h
PEM_STRING_PKCS8
#define PEM_STRING_PKCS8
Definition: pem.h:96


grpc
Author(s):
autogenerated on Fri May 16 2025 02:59:41