2016-05-18 21:16:36 +08:00
|
|
|
/*
|
2023-09-07 16:59:15 +08:00
|
|
|
* Copyright 2000-2023 The OpenSSL Project Authors. All Rights Reserved.
|
2016-05-18 21:16:36 +08:00
|
|
|
*
|
2018-12-06 21:08:15 +08:00
|
|
|
* Licensed under the Apache License 2.0 (the "License"). You may not use
|
2016-05-18 21:16:36 +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
|
|
|
|
*/
|
2000-09-08 07:14:26 +08:00
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <openssl/pem.h>
|
|
|
|
#include <openssl/err.h>
|
|
|
|
#include <openssl/pkcs12.h>
|
|
|
|
|
|
|
|
/* Simple PKCS#12 file creator */
|
|
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
2015-01-22 11:40:55 +08:00
|
|
|
FILE *fp;
|
|
|
|
EVP_PKEY *pkey;
|
|
|
|
X509 *cert;
|
|
|
|
PKCS12 *p12;
|
|
|
|
if (argc != 5) {
|
|
|
|
fprintf(stderr, "Usage: pkwrite infile password name p12file\n");
|
2023-03-20 12:48:33 +08:00
|
|
|
exit(EXIT_FAILURE);
|
2015-01-22 11:40:55 +08:00
|
|
|
}
|
2015-10-28 03:11:48 +08:00
|
|
|
OpenSSL_add_all_algorithms();
|
2015-01-22 11:40:55 +08:00
|
|
|
ERR_load_crypto_strings();
|
2015-05-07 01:43:59 +08:00
|
|
|
if ((fp = fopen(argv[1], "r")) == NULL) {
|
2015-01-22 11:40:55 +08:00
|
|
|
fprintf(stderr, "Error opening file %s\n", argv[1]);
|
2023-03-20 12:48:33 +08:00
|
|
|
exit(EXIT_FAILURE);
|
2015-01-22 11:40:55 +08:00
|
|
|
}
|
|
|
|
cert = PEM_read_X509(fp, NULL, NULL, NULL);
|
|
|
|
rewind(fp);
|
|
|
|
pkey = PEM_read_PrivateKey(fp, NULL, NULL, NULL);
|
|
|
|
fclose(fp);
|
|
|
|
p12 = PKCS12_create(argv[2], argv[3], pkey, cert, NULL, 0, 0, 0, 0, 0);
|
|
|
|
if (!p12) {
|
|
|
|
fprintf(stderr, "Error creating PKCS#12 structure\n");
|
|
|
|
ERR_print_errors_fp(stderr);
|
2023-03-20 12:48:33 +08:00
|
|
|
exit(EXIT_FAILURE);
|
2015-01-22 11:40:55 +08:00
|
|
|
}
|
2015-05-07 01:43:59 +08:00
|
|
|
if ((fp = fopen(argv[4], "wb")) == NULL) {
|
2020-03-11 15:28:05 +08:00
|
|
|
fprintf(stderr, "Error opening file %s\n", argv[4]);
|
2015-01-22 11:40:55 +08:00
|
|
|
ERR_print_errors_fp(stderr);
|
2023-03-20 12:48:33 +08:00
|
|
|
exit(EXIT_FAILURE);
|
2015-01-22 11:40:55 +08:00
|
|
|
}
|
|
|
|
i2d_PKCS12_fp(fp, p12);
|
|
|
|
PKCS12_free(p12);
|
|
|
|
fclose(fp);
|
2023-03-20 12:48:33 +08:00
|
|
|
return EXIT_SUCCESS;
|
2000-09-08 07:14:26 +08:00
|
|
|
}
|