| 
									
										
										
										
											2016-05-18 02:24:46 +08:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2022-05-03 18:52:38 +08:00
										 |  |  |  * Copyright 1995-2022 The OpenSSL Project Authors. All Rights Reserved. | 
					
						
							| 
									
										
										
										
											2001-07-27 10:22:42 +08:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2018-12-06 20:48:17 +08:00
										 |  |  |  * Licensed under the Apache License 2.0 (the "License").  You may not use | 
					
						
							| 
									
										
										
										
											2016-05-18 02:24:46 +08:00
										 |  |  |  * this file except in compliance with the License.  You can obtain a copy | 
					
						
							|  |  |  |  * in the file LICENSE in the source distribution or at | 
					
						
							|  |  |  |  * https://www.openssl.org/source/license.html
 | 
					
						
							| 
									
										
										
										
											2001-07-27 10:22:42 +08:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <stdio.h>
 | 
					
						
							| 
									
										
										
										
											2015-05-14 22:56:48 +08:00
										 |  |  | #include "internal/cryptlib.h"
 | 
					
						
							| 
									
										
										
										
											2020-09-14 16:42:05 +08:00
										 |  |  | #include <openssl/core_dispatch.h>
 | 
					
						
							| 
									
										
										
										
											2001-07-27 10:22:42 +08:00
										 |  |  | #include <openssl/buffer.h>
 | 
					
						
							|  |  |  | #include <openssl/objects.h>
 | 
					
						
							|  |  |  | #include <openssl/evp.h>
 | 
					
						
							|  |  |  | #include <openssl/x509.h>
 | 
					
						
							|  |  |  | #include <openssl/pkcs12.h>
 | 
					
						
							|  |  |  | #include <openssl/pem.h>
 | 
					
						
							| 
									
										
										
										
											2020-08-17 03:25:08 +08:00
										 |  |  | #include <openssl/encoder.h>
 | 
					
						
							| 
									
										
										
										
											2001-07-27 10:22:42 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-16 04:51:25 +08:00
										 |  |  | static int do_pk8pkey(BIO *bp, const EVP_PKEY *x, int isder, | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                       int nid, const EVP_CIPHER *enc, | 
					
						
							| 
									
										
										
										
											2019-11-15 15:54:17 +08:00
										 |  |  |                       const char *kstr, int klen, | 
					
						
							| 
									
										
										
										
											2020-09-14 16:42:05 +08:00
										 |  |  |                       pem_password_cb *cb, void *u, | 
					
						
							| 
									
										
										
										
											2020-11-27 15:03:23 +08:00
										 |  |  |                       const char *propq); | 
					
						
							| 
									
										
										
										
											2015-09-12 02:56:32 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | #ifndef OPENSSL_NO_STDIO
 | 
					
						
							| 
									
										
										
										
											2019-01-16 04:51:25 +08:00
										 |  |  | static int do_pk8pkey_fp(FILE *bp, const EVP_PKEY *x, int isder, | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                          int nid, const EVP_CIPHER *enc, | 
					
						
							| 
									
										
										
										
											2019-11-15 15:54:17 +08:00
										 |  |  |                          const char *kstr, int klen, | 
					
						
							| 
									
										
										
										
											2020-09-14 16:42:05 +08:00
										 |  |  |                          pem_password_cb *cb, void *u, | 
					
						
							| 
									
										
										
										
											2020-11-27 15:03:23 +08:00
										 |  |  |                          const char *propq); | 
					
						
							| 
									
										
										
										
											2015-09-12 02:56:32 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * These functions write a private key in PKCS#8 format: it is a "drop in" | 
					
						
							| 
									
										
										
										
											2001-07-27 10:22:42 +08:00
										 |  |  |  * replacement for PEM_write_bio_PrivateKey() and friends. As usual if 'enc' | 
					
						
							|  |  |  |  * is NULL then it uses the unencrypted private key form. The 'nid' versions | 
					
						
							|  |  |  |  * uses PKCS#5 v1.5 PBE algorithms whereas the others use PKCS#5 v2.0. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-16 04:51:25 +08:00
										 |  |  | int PEM_write_bio_PKCS8PrivateKey_nid(BIO *bp, const EVP_PKEY *x, int nid, | 
					
						
							| 
									
										
										
										
											2019-11-15 15:54:17 +08:00
										 |  |  |                                       const char *kstr, int klen, | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                                       pem_password_cb *cb, void *u) | 
					
						
							| 
									
										
										
										
											2001-07-27 10:22:42 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-11-27 15:03:23 +08:00
										 |  |  |     return do_pk8pkey(bp, x, 0, nid, NULL, kstr, klen, cb, u, NULL); | 
					
						
							| 
									
										
										
										
											2001-07-27 10:22:42 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-16 04:51:25 +08:00
										 |  |  | int PEM_write_bio_PKCS8PrivateKey(BIO *bp, const EVP_PKEY *x, const EVP_CIPHER *enc, | 
					
						
							| 
									
										
										
										
											2019-11-15 15:54:17 +08:00
										 |  |  |                                   const char *kstr, int klen, | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                                   pem_password_cb *cb, void *u) | 
					
						
							| 
									
										
										
										
											2001-07-27 10:22:42 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-11-27 15:03:23 +08:00
										 |  |  |     return do_pk8pkey(bp, x, 0, -1, enc, kstr, klen, cb, u, NULL); | 
					
						
							| 
									
										
										
										
											2001-07-27 10:22:42 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-16 04:51:25 +08:00
										 |  |  | int i2d_PKCS8PrivateKey_bio(BIO *bp, const EVP_PKEY *x, const EVP_CIPHER *enc, | 
					
						
							| 
									
										
										
										
											2019-11-15 15:54:17 +08:00
										 |  |  |                             const char *kstr, int klen, | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                             pem_password_cb *cb, void *u) | 
					
						
							| 
									
										
										
										
											2001-07-27 10:22:42 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-11-27 15:03:23 +08:00
										 |  |  |     return do_pk8pkey(bp, x, 1, -1, enc, kstr, klen, cb, u, NULL); | 
					
						
							| 
									
										
										
										
											2001-07-27 10:22:42 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-16 04:51:25 +08:00
										 |  |  | int i2d_PKCS8PrivateKey_nid_bio(BIO *bp, const EVP_PKEY *x, int nid, | 
					
						
							| 
									
										
										
										
											2019-11-15 15:54:17 +08:00
										 |  |  |                                 const char *kstr, int klen, | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                                 pem_password_cb *cb, void *u) | 
					
						
							| 
									
										
										
										
											2001-07-27 10:22:42 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-11-27 15:03:23 +08:00
										 |  |  |     return do_pk8pkey(bp, x, 1, nid, NULL, kstr, klen, cb, u, NULL); | 
					
						
							| 
									
										
										
										
											2001-07-27 10:22:42 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-16 04:51:25 +08:00
										 |  |  | static int do_pk8pkey(BIO *bp, const EVP_PKEY *x, int isder, int nid, | 
					
						
							| 
									
										
										
										
											2019-11-15 15:54:17 +08:00
										 |  |  |                       const EVP_CIPHER *enc, const char *kstr, int klen, | 
					
						
							| 
									
										
										
										
											2020-11-27 15:03:23 +08:00
										 |  |  |                       pem_password_cb *cb, void *u, const char *propq) | 
					
						
							| 
									
										
										
										
											2001-07-27 10:22:42 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-05-18 14:32:28 +08:00
										 |  |  |     int ret = 0; | 
					
						
							| 
									
										
										
										
											2020-09-14 16:42:05 +08:00
										 |  |  |     const char *outtype = isder ? "DER" : "PEM"; | 
					
						
							|  |  |  |     OSSL_ENCODER_CTX *ctx = | 
					
						
							| 
									
										
										
										
											2021-02-11 23:57:37 +08:00
										 |  |  |         OSSL_ENCODER_CTX_new_for_pkey(x, OSSL_KEYMGMT_SELECT_ALL, | 
					
						
							| 
									
										
										
										
											2021-05-27 18:34:03 +08:00
										 |  |  |                                       outtype, "PrivateKeyInfo", propq); | 
					
						
							| 
									
										
										
										
											2015-05-07 01:43:59 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-18 14:32:28 +08:00
										 |  |  |     if (ctx == NULL) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2020-05-18 14:32:28 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * If no keystring or callback is set, OpenSSL traditionally uses the | 
					
						
							|  |  |  |      * user's cb argument as a password string, or if that's NULL, it falls | 
					
						
							|  |  |  |      * back on PEM_def_callback(). | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     if (kstr == NULL && cb == NULL) { | 
					
						
							|  |  |  |         if (u != NULL) { | 
					
						
							|  |  |  |             kstr = u; | 
					
						
							|  |  |  |             klen = strlen(u); | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             cb = PEM_def_callback; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-05 14:58:37 +08:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * NOTE: There is no attempt to do a EVP_CIPHER_fetch() using the nid, | 
					
						
							|  |  |  |      * since the nid is a PBE algorithm which can't be fetched currently. | 
					
						
							|  |  |  |      * (e.g. NID_pbe_WithSHA1And2_Key_TripleDES_CBC). Just use the legacy | 
					
						
							|  |  |  |      * path if the NID is passed. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     if (nid == -1 && OSSL_ENCODER_CTX_get_num_encoders(ctx) != 0) { | 
					
						
							| 
									
										
										
										
											2020-05-18 14:32:28 +08:00
										 |  |  |         ret = 1; | 
					
						
							|  |  |  |         if (enc != NULL) { | 
					
						
							|  |  |  |             ret = 0; | 
					
						
							| 
									
										
										
											
												Rename all getters to use get/get0 in name
For functions that exist in 1.1.1 provide a simple aliases via #define.
Fixes #15236
Functions with OSSL_DECODER_, OSSL_ENCODER_, OSSL_STORE_LOADER_,
EVP_KEYEXCH_, EVP_KEM_, EVP_ASYM_CIPHER_, EVP_SIGNATURE_,
EVP_KEYMGMT_, EVP_RAND_, EVP_MAC_, EVP_KDF_, EVP_PKEY_,
EVP_MD_, and EVP_CIPHER_ prefixes are renamed.
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/15405)
											
										 
											2021-05-21 22:58:08 +08:00
										 |  |  |             if (OSSL_ENCODER_CTX_set_cipher(ctx, EVP_CIPHER_get0_name(enc), | 
					
						
							|  |  |  |                                             NULL)) { | 
					
						
							| 
									
										
										
										
											2020-05-18 14:32:28 +08:00
										 |  |  |                 const unsigned char *ukstr = (const unsigned char *)kstr; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 /*
 | 
					
						
							|  |  |  |                  * Try to pass the passphrase if one was given, or the | 
					
						
							|  |  |  |                  * passphrase callback if one was given.  If none of them | 
					
						
							|  |  |  |                  * are given and that's wrong, we rely on the _to_bio() | 
					
						
							|  |  |  |                  * call to generate errors. | 
					
						
							|  |  |  |                  */ | 
					
						
							|  |  |  |                 ret = 1; | 
					
						
							|  |  |  |                 if (kstr != NULL | 
					
						
							| 
									
										
										
										
											2020-08-17 03:25:08 +08:00
										 |  |  |                     && !OSSL_ENCODER_CTX_set_passphrase(ctx, ukstr, klen)) | 
					
						
							| 
									
										
										
										
											2020-05-18 14:32:28 +08:00
										 |  |  |                     ret = 0; | 
					
						
							|  |  |  |                 else if (cb != NULL | 
					
						
							| 
									
										
										
										
											2020-09-14 16:42:05 +08:00
										 |  |  |                          && !OSSL_ENCODER_CTX_set_pem_password_cb(ctx, cb, u)) | 
					
						
							| 
									
										
										
										
											2020-05-18 14:32:28 +08:00
										 |  |  |                     ret = 0; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2020-08-17 03:25:08 +08:00
										 |  |  |         ret = ret && OSSL_ENCODER_to_bio(ctx, bp); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     } else { | 
					
						
							| 
									
										
										
										
											2020-05-18 14:32:28 +08:00
										 |  |  |         X509_SIG *p8; | 
					
						
							|  |  |  |         PKCS8_PRIV_KEY_INFO *p8inf; | 
					
						
							|  |  |  |         char buf[PEM_BUFSIZE]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         ret = 0; | 
					
						
							|  |  |  |         if ((p8inf = EVP_PKEY2PKCS8(x)) == NULL) { | 
					
						
							| 
									
										
										
										
											2020-11-04 19:23:19 +08:00
										 |  |  |             ERR_raise(ERR_LIB_PEM, PEM_R_ERROR_CONVERTING_PRIVATE_KEY); | 
					
						
							| 
									
										
										
										
											2020-05-18 14:32:28 +08:00
										 |  |  |             goto legacy_end; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if (enc || (nid != -1)) { | 
					
						
							|  |  |  |             if (kstr == NULL) { | 
					
						
							|  |  |  |                 klen = cb(buf, PEM_BUFSIZE, 1, u); | 
					
						
							| 
									
										
										
										
											2022-01-22 20:26:05 +08:00
										 |  |  |                 if (klen < 0) { | 
					
						
							| 
									
										
										
										
											2020-11-04 19:23:19 +08:00
										 |  |  |                     ERR_raise(ERR_LIB_PEM, PEM_R_READ_KEY); | 
					
						
							| 
									
										
										
										
											2020-05-18 14:32:28 +08:00
										 |  |  |                     goto legacy_end; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 kstr = buf; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             p8 = PKCS8_encrypt(nid, enc, kstr, klen, NULL, 0, 0, p8inf); | 
					
						
							|  |  |  |             if (kstr == buf) | 
					
						
							|  |  |  |                 OPENSSL_cleanse(buf, klen); | 
					
						
							|  |  |  |             if (p8 == NULL) | 
					
						
							|  |  |  |                 goto legacy_end; | 
					
						
							|  |  |  |             if (isder) | 
					
						
							|  |  |  |                 ret = i2d_PKCS8_bio(bp, p8); | 
					
						
							|  |  |  |             else | 
					
						
							|  |  |  |                 ret = PEM_write_bio_PKCS8(bp, p8); | 
					
						
							|  |  |  |             X509_SIG_free(p8); | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             if (isder) | 
					
						
							|  |  |  |                 ret = i2d_PKCS8_PRIV_KEY_INFO_bio(bp, p8inf); | 
					
						
							|  |  |  |             else | 
					
						
							|  |  |  |                 ret = PEM_write_bio_PKCS8_PRIV_KEY_INFO(bp, p8inf); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |      legacy_end: | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         PKCS8_PRIV_KEY_INFO_free(p8inf); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2020-08-17 03:25:08 +08:00
										 |  |  |     OSSL_ENCODER_CTX_free(ctx); | 
					
						
							| 
									
										
										
										
											2020-05-18 14:32:28 +08:00
										 |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											2001-07-27 10:22:42 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | EVP_PKEY *d2i_PKCS8PrivateKey_bio(BIO *bp, EVP_PKEY **x, pem_password_cb *cb, | 
					
						
							|  |  |  |                                   void *u) | 
					
						
							| 
									
										
										
										
											2001-07-27 10:22:42 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     PKCS8_PRIV_KEY_INFO *p8inf = NULL; | 
					
						
							|  |  |  |     X509_SIG *p8 = NULL; | 
					
						
							|  |  |  |     int klen; | 
					
						
							|  |  |  |     EVP_PKEY *ret; | 
					
						
							| 
									
										
										
										
											2024-08-30 16:56:58 +08:00
										 |  |  |     char psbuf[PEM_BUFSIZE + 1]; /* reserve one byte at the end */ | 
					
						
							| 
									
										
										
										
											2019-09-17 03:28:57 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     p8 = d2i_PKCS8_bio(bp, NULL); | 
					
						
							| 
									
										
										
										
											2019-09-17 03:28:57 +08:00
										 |  |  |     if (p8 == NULL) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         return NULL; | 
					
						
							| 
									
										
										
										
											2019-09-17 03:28:57 +08:00
										 |  |  |     if (cb != NULL) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         klen = cb(psbuf, PEM_BUFSIZE, 0, u); | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |         klen = PEM_def_callback(psbuf, PEM_BUFSIZE, 0, u); | 
					
						
							| 
									
										
										
										
											2024-08-30 16:56:58 +08:00
										 |  |  |     if (klen < 0 || klen > PEM_BUFSIZE) { | 
					
						
							| 
									
										
										
										
											2020-11-04 19:23:19 +08:00
										 |  |  |         ERR_raise(ERR_LIB_PEM, PEM_R_BAD_PASSWORD_READ); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         X509_SIG_free(p8); | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     p8inf = PKCS8_decrypt(p8, psbuf, klen); | 
					
						
							|  |  |  |     X509_SIG_free(p8); | 
					
						
							| 
									
										
										
										
											2017-07-29 18:19:29 +08:00
										 |  |  |     OPENSSL_cleanse(psbuf, klen); | 
					
						
							| 
									
										
										
										
											2019-09-17 03:28:57 +08:00
										 |  |  |     if (p8inf == NULL) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         return NULL; | 
					
						
							|  |  |  |     ret = EVP_PKCS82PKEY(p8inf); | 
					
						
							|  |  |  |     PKCS8_PRIV_KEY_INFO_free(p8inf); | 
					
						
							|  |  |  |     if (!ret) | 
					
						
							|  |  |  |         return NULL; | 
					
						
							| 
									
										
										
										
											2019-09-17 03:28:57 +08:00
										 |  |  |     if (x != NULL) { | 
					
						
							| 
									
										
										
										
											2015-03-28 22:54:15 +08:00
										 |  |  |         EVP_PKEY_free(*x); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         *x = ret; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											2001-07-27 10:22:42 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-15 04:57:28 +08:00
										 |  |  | #ifndef OPENSSL_NO_STDIO
 | 
					
						
							| 
									
										
										
										
											2001-07-27 10:22:42 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-16 04:51:25 +08:00
										 |  |  | int i2d_PKCS8PrivateKey_fp(FILE *fp, const EVP_PKEY *x, const EVP_CIPHER *enc, | 
					
						
							| 
									
										
										
										
											2019-11-15 15:54:17 +08:00
										 |  |  |                            const char *kstr, int klen, | 
					
						
							|  |  |  |                            pem_password_cb *cb, void *u) | 
					
						
							| 
									
										
										
										
											2001-07-27 10:22:42 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-11-27 15:03:23 +08:00
										 |  |  |     return do_pk8pkey_fp(fp, x, 1, -1, enc, kstr, klen, cb, u, NULL); | 
					
						
							| 
									
										
										
										
											2001-07-27 10:22:42 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-16 04:51:25 +08:00
										 |  |  | int i2d_PKCS8PrivateKey_nid_fp(FILE *fp, const EVP_PKEY *x, int nid, | 
					
						
							| 
									
										
										
										
											2019-11-15 15:54:17 +08:00
										 |  |  |                                const char *kstr, int klen, | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                                pem_password_cb *cb, void *u) | 
					
						
							| 
									
										
										
										
											2001-07-27 10:22:42 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-11-27 15:03:23 +08:00
										 |  |  |     return do_pk8pkey_fp(fp, x, 1, nid, NULL, kstr, klen, cb, u, NULL); | 
					
						
							| 
									
										
										
										
											2001-07-27 10:22:42 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-16 04:51:25 +08:00
										 |  |  | int PEM_write_PKCS8PrivateKey_nid(FILE *fp, const EVP_PKEY *x, int nid, | 
					
						
							| 
									
										
										
										
											2019-11-15 15:54:17 +08:00
										 |  |  |                                   const char *kstr, int klen, | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                                   pem_password_cb *cb, void *u) | 
					
						
							| 
									
										
										
										
											2001-07-27 10:22:42 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-11-27 15:03:23 +08:00
										 |  |  |     return do_pk8pkey_fp(fp, x, 0, nid, NULL, kstr, klen, cb, u, NULL); | 
					
						
							| 
									
										
										
										
											2001-07-27 10:22:42 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-16 04:51:25 +08:00
										 |  |  | int PEM_write_PKCS8PrivateKey(FILE *fp, const EVP_PKEY *x, const EVP_CIPHER *enc, | 
					
						
							| 
									
										
										
										
											2019-11-15 15:54:17 +08:00
										 |  |  |                               const char *kstr, int klen, | 
					
						
							|  |  |  |                               pem_password_cb *cb, void *u) | 
					
						
							| 
									
										
										
										
											2001-07-27 10:22:42 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-11-27 15:03:23 +08:00
										 |  |  |     return do_pk8pkey_fp(fp, x, 0, -1, enc, kstr, klen, cb, u, NULL); | 
					
						
							| 
									
										
										
										
											2001-07-27 10:22:42 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-16 04:51:25 +08:00
										 |  |  | static int do_pk8pkey_fp(FILE *fp, const EVP_PKEY *x, int isder, int nid, | 
					
						
							| 
									
										
										
										
											2019-11-15 15:54:17 +08:00
										 |  |  |                          const EVP_CIPHER *enc, const char *kstr, int klen, | 
					
						
							| 
									
										
										
										
											2020-11-27 15:03:23 +08:00
										 |  |  |                          pem_password_cb *cb, void *u, const char *propq) | 
					
						
							| 
									
										
										
										
											2001-07-27 10:22:42 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     BIO *bp; | 
					
						
							|  |  |  |     int ret; | 
					
						
							| 
									
										
										
										
											2015-05-07 01:43:59 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if ((bp = BIO_new_fp(fp, BIO_NOCLOSE)) == NULL) { | 
					
						
							| 
									
										
										
										
											2020-11-04 19:23:19 +08:00
										 |  |  |         ERR_raise(ERR_LIB_PEM, ERR_R_BUF_LIB); | 
					
						
							| 
									
										
										
										
											2017-10-17 22:04:09 +08:00
										 |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2020-11-27 15:03:23 +08:00
										 |  |  |     ret = do_pk8pkey(bp, x, isder, nid, enc, kstr, klen, cb, u, propq); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     BIO_free(bp); | 
					
						
							|  |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											2001-07-27 10:22:42 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | EVP_PKEY *d2i_PKCS8PrivateKey_fp(FILE *fp, EVP_PKEY **x, pem_password_cb *cb, | 
					
						
							|  |  |  |                                  void *u) | 
					
						
							| 
									
										
										
										
											2001-07-27 10:22:42 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     BIO *bp; | 
					
						
							|  |  |  |     EVP_PKEY *ret; | 
					
						
							| 
									
										
										
										
											2015-05-07 01:43:59 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if ((bp = BIO_new_fp(fp, BIO_NOCLOSE)) == NULL) { | 
					
						
							| 
									
										
										
										
											2020-11-04 19:23:19 +08:00
										 |  |  |         ERR_raise(ERR_LIB_PEM, ERR_R_BUF_LIB); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     ret = d2i_PKCS8PrivateKey_bio(bp, x, cb, u); | 
					
						
							|  |  |  |     BIO_free(bp); | 
					
						
							|  |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											2001-07-27 10:22:42 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | IMPLEMENT_PEM_rw(PKCS8, X509_SIG, PEM_STRING_PKCS8, X509_SIG) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-27 10:22:42 +08:00
										 |  |  | IMPLEMENT_PEM_rw(PKCS8_PRIV_KEY_INFO, PKCS8_PRIV_KEY_INFO, PEM_STRING_PKCS8INF, | 
					
						
							| 
									
										
										
										
											2020-08-17 03:25:08 +08:00
										 |  |  |                  PKCS8_PRIV_KEY_INFO) |