diff options
Diffstat (limited to 'src/lib/libcrypto/pkcs12/p12_crt.c')
| -rw-r--r-- | src/lib/libcrypto/pkcs12/p12_crt.c | 172 |
1 files changed, 172 insertions, 0 deletions
diff --git a/src/lib/libcrypto/pkcs12/p12_crt.c b/src/lib/libcrypto/pkcs12/p12_crt.c new file mode 100644 index 0000000000..40340a7bef --- /dev/null +++ b/src/lib/libcrypto/pkcs12/p12_crt.c | |||
| @@ -0,0 +1,172 @@ | |||
| 1 | /* p12_crt.c */ | ||
| 2 | /* Written by Dr Stephen N Henson (shenson@bigfoot.com) for the OpenSSL | ||
| 3 | * project 1999. | ||
| 4 | */ | ||
| 5 | /* ==================================================================== | ||
| 6 | * Copyright (c) 1999 The OpenSSL Project. All rights reserved. | ||
| 7 | * | ||
| 8 | * Redistribution and use in source and binary forms, with or without | ||
| 9 | * modification, are permitted provided that the following conditions | ||
| 10 | * are met: | ||
| 11 | * | ||
| 12 | * 1. Redistributions of source code must retain the above copyright | ||
| 13 | * notice, this list of conditions and the following disclaimer. | ||
| 14 | * | ||
| 15 | * 2. Redistributions in binary form must reproduce the above copyright | ||
| 16 | * notice, this list of conditions and the following disclaimer in | ||
| 17 | * the documentation and/or other materials provided with the | ||
| 18 | * distribution. | ||
| 19 | * | ||
| 20 | * 3. All advertising materials mentioning features or use of this | ||
| 21 | * software must display the following acknowledgment: | ||
| 22 | * "This product includes software developed by the OpenSSL Project | ||
| 23 | * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" | ||
| 24 | * | ||
| 25 | * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to | ||
| 26 | * endorse or promote products derived from this software without | ||
| 27 | * prior written permission. For written permission, please contact | ||
| 28 | * licensing@OpenSSL.org. | ||
| 29 | * | ||
| 30 | * 5. Products derived from this software may not be called "OpenSSL" | ||
| 31 | * nor may "OpenSSL" appear in their names without prior written | ||
| 32 | * permission of the OpenSSL Project. | ||
| 33 | * | ||
| 34 | * 6. Redistributions of any form whatsoever must retain the following | ||
| 35 | * acknowledgment: | ||
| 36 | * "This product includes software developed by the OpenSSL Project | ||
| 37 | * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" | ||
| 38 | * | ||
| 39 | * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY | ||
| 40 | * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
| 41 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | ||
| 42 | * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR | ||
| 43 | * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | ||
| 44 | * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT | ||
| 45 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
| 46 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
| 47 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, | ||
| 48 | * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | ||
| 49 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED | ||
| 50 | * OF THE POSSIBILITY OF SUCH DAMAGE. | ||
| 51 | * ==================================================================== | ||
| 52 | * | ||
| 53 | * This product includes cryptographic software written by Eric Young | ||
| 54 | * (eay@cryptsoft.com). This product includes software written by Tim | ||
| 55 | * Hudson (tjh@cryptsoft.com). | ||
| 56 | * | ||
| 57 | */ | ||
| 58 | |||
| 59 | #include <stdio.h> | ||
| 60 | #include "cryptlib.h" | ||
| 61 | #include <openssl/pkcs12.h> | ||
| 62 | |||
| 63 | PKCS12 *PKCS12_create(char *pass, char *name, EVP_PKEY *pkey, X509 *cert, | ||
| 64 | STACK_OF(X509) *ca, int nid_key, int nid_cert, int iter, int mac_iter, | ||
| 65 | int keytype) | ||
| 66 | { | ||
| 67 | PKCS12 *p12; | ||
| 68 | STACK_OF(PKCS12_SAFEBAG) *bags; | ||
| 69 | STACK_OF(PKCS7) *safes; | ||
| 70 | PKCS12_SAFEBAG *bag; | ||
| 71 | PKCS8_PRIV_KEY_INFO *p8; | ||
| 72 | PKCS7 *authsafe; | ||
| 73 | X509 *tcert; | ||
| 74 | int i; | ||
| 75 | unsigned char keyid[EVP_MAX_MD_SIZE]; | ||
| 76 | unsigned int keyidlen; | ||
| 77 | |||
| 78 | /* Set defaults */ | ||
| 79 | if(!nid_cert) | ||
| 80 | { | ||
| 81 | #ifdef OPENSSL_FIPS | ||
| 82 | if (FIPS_mode()) | ||
| 83 | nid_cert = NID_pbe_WithSHA1And3_Key_TripleDES_CBC; | ||
| 84 | else | ||
| 85 | #endif | ||
| 86 | nid_cert = NID_pbe_WithSHA1And40BitRC2_CBC; | ||
| 87 | } | ||
| 88 | if(!nid_key) nid_key = NID_pbe_WithSHA1And3_Key_TripleDES_CBC; | ||
| 89 | if(!iter) iter = PKCS12_DEFAULT_ITER; | ||
| 90 | if(!mac_iter) mac_iter = 1; | ||
| 91 | |||
| 92 | if(!pkey || !cert) { | ||
| 93 | PKCS12err(PKCS12_F_PKCS12_CREATE,PKCS12_R_INVALID_NULL_ARGUMENT); | ||
| 94 | return NULL; | ||
| 95 | } | ||
| 96 | |||
| 97 | if(!X509_check_private_key(cert, pkey)) return NULL; | ||
| 98 | |||
| 99 | if(!(bags = sk_PKCS12_SAFEBAG_new_null ())) { | ||
| 100 | PKCS12err(PKCS12_F_PKCS12_CREATE,ERR_R_MALLOC_FAILURE); | ||
| 101 | return NULL; | ||
| 102 | } | ||
| 103 | |||
| 104 | /* Add user certificate */ | ||
| 105 | if(!(bag = PKCS12_x5092certbag(cert))) return NULL; | ||
| 106 | if(name && !PKCS12_add_friendlyname(bag, name, -1)) return NULL; | ||
| 107 | X509_digest(cert, EVP_sha1(), keyid, &keyidlen); | ||
| 108 | if(!PKCS12_add_localkeyid(bag, keyid, keyidlen)) return NULL; | ||
| 109 | |||
| 110 | if(!sk_PKCS12_SAFEBAG_push(bags, bag)) { | ||
| 111 | PKCS12err(PKCS12_F_PKCS12_CREATE,ERR_R_MALLOC_FAILURE); | ||
| 112 | return NULL; | ||
| 113 | } | ||
| 114 | |||
| 115 | /* Add all other certificates */ | ||
| 116 | if(ca) { | ||
| 117 | for(i = 0; i < sk_X509_num(ca); i++) { | ||
| 118 | tcert = sk_X509_value(ca, i); | ||
| 119 | if(!(bag = PKCS12_x5092certbag(tcert))) return NULL; | ||
| 120 | if(!sk_PKCS12_SAFEBAG_push(bags, bag)) { | ||
| 121 | PKCS12err(PKCS12_F_PKCS12_CREATE,ERR_R_MALLOC_FAILURE); | ||
| 122 | return NULL; | ||
| 123 | } | ||
| 124 | } | ||
| 125 | } | ||
| 126 | |||
| 127 | /* Turn certbags into encrypted authsafe */ | ||
| 128 | authsafe = PKCS12_pack_p7encdata (nid_cert, pass, -1, NULL, 0, | ||
| 129 | iter, bags); | ||
| 130 | sk_PKCS12_SAFEBAG_pop_free(bags, PKCS12_SAFEBAG_free); | ||
| 131 | |||
| 132 | if (!authsafe) return NULL; | ||
| 133 | |||
| 134 | if(!(safes = sk_PKCS7_new_null ()) | ||
| 135 | || !sk_PKCS7_push(safes, authsafe)) { | ||
| 136 | PKCS12err(PKCS12_F_PKCS12_CREATE,ERR_R_MALLOC_FAILURE); | ||
| 137 | return NULL; | ||
| 138 | } | ||
| 139 | |||
| 140 | /* Make a shrouded key bag */ | ||
| 141 | if(!(p8 = EVP_PKEY2PKCS8 (pkey))) return NULL; | ||
| 142 | if(keytype && !PKCS8_add_keyusage(p8, keytype)) return NULL; | ||
| 143 | bag = PKCS12_MAKE_SHKEYBAG (nid_key, pass, -1, NULL, 0, iter, p8); | ||
| 144 | if(!bag) return NULL; | ||
| 145 | PKCS8_PRIV_KEY_INFO_free(p8); | ||
| 146 | if (name && !PKCS12_add_friendlyname (bag, name, -1)) return NULL; | ||
| 147 | if(!PKCS12_add_localkeyid (bag, keyid, keyidlen)) return NULL; | ||
| 148 | if(!(bags = sk_PKCS12_SAFEBAG_new_null()) | ||
| 149 | || !sk_PKCS12_SAFEBAG_push (bags, bag)) { | ||
| 150 | PKCS12err(PKCS12_F_PKCS12_CREATE,ERR_R_MALLOC_FAILURE); | ||
| 151 | return NULL; | ||
| 152 | } | ||
| 153 | /* Turn it into unencrypted safe bag */ | ||
| 154 | if(!(authsafe = PKCS12_pack_p7data (bags))) return NULL; | ||
| 155 | sk_PKCS12_SAFEBAG_pop_free(bags, PKCS12_SAFEBAG_free); | ||
| 156 | if(!sk_PKCS7_push(safes, authsafe)) { | ||
| 157 | PKCS12err(PKCS12_F_PKCS12_CREATE,ERR_R_MALLOC_FAILURE); | ||
| 158 | return NULL; | ||
| 159 | } | ||
| 160 | |||
| 161 | if(!(p12 = PKCS12_init (NID_pkcs7_data))) return NULL; | ||
| 162 | |||
| 163 | if(!PKCS12_pack_authsafes (p12, safes)) return NULL; | ||
| 164 | |||
| 165 | sk_PKCS7_pop_free(safes, PKCS7_free); | ||
| 166 | |||
| 167 | if(!PKCS12_set_mac (p12, pass, -1, NULL, 0, mac_iter, NULL)) | ||
| 168 | return NULL; | ||
| 169 | |||
| 170 | return p12; | ||
| 171 | |||
| 172 | } | ||
