c - 如何以编程方式在 OpenSSL 中加载 PKCS#12 文件?

标签 c ssl openssl pkcs#12

在基于 OpenSSL 的 SSL 服务器应用程序中,我们如何以编程方式加载 PKCS#12 文件?

此外,我可以在 OpenSSL 中的同一文件中加载具有证书、 key 和 CA 的 PKCS#12 文件吗?

最佳答案

是的,您可以使用 OpenSSL 在同一文件中加载包含证书、 key 和 CA 的 PKCS#12 文件。

  • 使用 d2i_PKCS12_fp()d2i_PKCS12_bio() 加载 PKCS#12 文件。
  • 可选择使用 PKCS12_verify_mac() 验证密码。
  • 使用 PKCS12_parse() 为您解密和提取 key 、证书和 CA 链。

来自 openssl-1.0.0d/demos/pkcs12/pkread.c :

#include <stdio.h>
#include <stdlib.h>
#include <openssl/pem.h>
#include <openssl/err.h>
#include <openssl/pkcs12.h>

/* Simple PKCS#12 file reader */

int main(int argc, char **argv)
{
    FILE *fp;
    EVP_PKEY *pkey;
    X509 *cert;
    STACK_OF(X509) *ca = NULL;
    PKCS12 *p12;
    int i;
    if (argc != 4) {
        fprintf(stderr, "Usage: pkread p12file password opfile\n");
        exit (1);
    }
    OpenSSL_add_all_algorithms();
    ERR_load_crypto_strings();
    if (!(fp = fopen(argv[1], "rb"))) {
        fprintf(stderr, "Error opening file %s\n", argv[1]);
        exit(1);
    }
    p12 = d2i_PKCS12_fp(fp, NULL);
    fclose (fp);
    if (!p12) {
        fprintf(stderr, "Error reading PKCS#12 file\n");
        ERR_print_errors_fp(stderr);
        exit (1);
    }
    if (!PKCS12_parse(p12, argv[2], &pkey, &cert, &ca)) {
        fprintf(stderr, "Error parsing PKCS#12 file\n");
        ERR_print_errors_fp(stderr);
        exit (1);
    }
    PKCS12_free(p12);
    if (!(fp = fopen(argv[3], "w"))) {
        fprintf(stderr, "Error opening file %s\n", argv[1]);
        exit(1);
    }
    if (pkey) {
        fprintf(fp, "***Private Key***\n");
        PEM_write_PrivateKey(fp, pkey, NULL, NULL, 0, NULL, NULL);
    }
    if (cert) {
        fprintf(fp, "***User Certificate***\n");
        PEM_write_X509_AUX(fp, cert);
    }
    if (ca && sk_X509_num(ca)) {
        fprintf(fp, "***Other Certificates***\n");
        for (i = 0; i < sk_X509_num(ca); i++) 
            PEM_write_X509_AUX(fp, sk_X509_value(ca, i));
    }

    sk_X509_pop_free(ca, X509_free);
    X509_free(cert);
    EVP_PKEY_free(pkey);

    fclose(fp);
    return 0;
}

关于c - 如何以编程方式在 OpenSSL 中加载 PKCS#12 文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6371775/

相关文章:

java - JNA ByteBuffer statvfs

c - 函数参数无效

ruby - 错误 SSL 协议(protocol)错误 : ERROR bad URI

php - OpenSSL C++ 加密问题

c++ - Boost ASIO SSL 握手失败

c - 如何使用 argv 打印 ASCII?

c - time_t是如何定义的?

ssl - HTTPS 和证书

powershell - SMTP 的安全连接

android - 在 Android 上编译并使用 OpenSSL,在 Windows 上使用 eclipse