当前位置: 首页 > article >正文

openssl3.2 - 官方demo学习 - pkcs12 - pkread.c

文章目录

    • openssl3.2 - 官方demo学习 - pkcs12 - pkread.c
    • 概述
    • 笔记
    • END

openssl3.2 - 官方demo学习 - pkcs12 - pkread.c

概述

openssl3.2 - 官方demo学习 - 索引贴
将官方demos的pkread.c 过了一下.
只要有正确的.P12证书和导出口令, 这个实验做起来很快.

程序功能, 读.P12文件(需要给出导出口令), 将证书的友好名称, 私钥, 可信任证书都导出到指定的输出文件.

笔记

/*!
\file pkread.c
\note 
openssl3.2 - 官方demo学习 - pkcs12 - pkread.c

*/

/*
 * Copyright 2000-2020 The OpenSSL Project Authors. All Rights Reserved.
 *
 * Licensed under the Apache License 2.0 (the "License").  You may not use
 * 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
 */

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

#include "my_openSSL_lib.h"

 /* Simple PKCS#12 file reader */

static char* find_friendly_name(PKCS12* p12)
{
	STACK_OF(PKCS7)* safes;
	int n, m;
	char* name = NULL;
	PKCS7* safe;
	STACK_OF(PKCS12_SAFEBAG)* bags;
	PKCS12_SAFEBAG* bag;

	if ((safes = PKCS12_unpack_authsafes(p12)) == NULL)
		return NULL;

	for (n = 0; n < sk_PKCS7_num(safes) && name == NULL; n++) {
		safe = sk_PKCS7_value(safes, n);
		if (OBJ_obj2nid(safe->type) != NID_pkcs7_data
			|| (bags = PKCS12_unpack_p7data(safe)) == NULL)
			continue;

		for (m = 0; m < sk_PKCS12_SAFEBAG_num(bags) && name == NULL; m++) {
			bag = sk_PKCS12_SAFEBAG_value(bags, m);
			name = PKCS12_get_friendlyname(bag);
		}
		sk_PKCS12_SAFEBAG_pop_free(bags, PKCS12_SAFEBAG_free);
	}

	sk_PKCS7_pop_free(safes, PKCS7_free);

	return name;
}

/*!
* 程序功能, 读.P12文件(需要给出导出口令), 将证书的友好名称, 私钥, 可信任证书都导出到指定的输出文件.  
*/
int main(int argc, char** argv)
{
	FILE* fp;
	EVP_PKEY* pkey = NULL;
	X509* cert = NULL;
	STACK_OF(X509)* ca = NULL;
	PKCS12* p12 = NULL;
	char* name = NULL;
	int i, ret = EXIT_FAILURE;

	const char* psz_p12file = NULL;
	const char* psz_pwd = NULL;
	const char* psz_opfile = NULL;

	if (argc != 4) {
		// pkread p12file password opfile
		//        my_server.p12 pwd_my_server out.pem      
		fprintf(stderr, "Usage: pkread p12file password opfile\n");
		exit(EXIT_FAILURE);
	}

	psz_p12file = argv[1];
	psz_pwd = argv[2];
	psz_opfile = argv[3];

	if ((fp = fopen(psz_p12file, "rb")) == NULL) {
		fprintf(stderr, "Error opening file %s\n", psz_p12file);
		exit(EXIT_FAILURE);
	}
	p12 = d2i_PKCS12_fp(fp, NULL);
	fclose(fp);
	if (p12 == NULL) {
		fprintf(stderr, "Error reading PKCS#12 file\n");
		ERR_print_errors_fp(stderr);
		goto err;
	}
	if (!PKCS12_parse(p12, psz_pwd, &pkey, &cert, &ca)) {
		fprintf(stderr, "Error parsing PKCS#12 file\n");
		ERR_print_errors_fp(stderr);
		goto err;
	}
	name = find_friendly_name(p12);
	PKCS12_free(p12);
	if ((fp = fopen(psz_opfile, "w")) == NULL) {
		fprintf(stderr, "Error opening file %s\n", psz_opfile);
		goto err;
	}
	if (name != NULL)
		fprintf(fp, "***Friendly Name***\n%s\n", name);
	if (pkey != NULL) {
		fprintf(fp, "***Private Key***\n");
		PEM_write_PrivateKey(fp, pkey, NULL, NULL, 0, NULL, NULL);
	}
	if (cert != NULL) {
		fprintf(fp, "***User Certificate***\n");
		PEM_write_X509_AUX(fp, cert);
	}
	if (ca != NULL && sk_X509_num(ca) > 0) {
		fprintf(fp, "***Other Certificates***\n");
		for (i = 0; i < sk_X509_num(ca); i++)
			PEM_write_X509_AUX(fp, sk_X509_value(ca, i));
	}
	fclose(fp);

	ret = EXIT_SUCCESS;

err:
	OPENSSL_free(name);
	X509_free(cert);
	EVP_PKEY_free(pkey);
	OSSL_STACK_OF_X509_free(ca);

	return ret;
}

END


http://www.kler.cn/a/228586.html

相关文章:

  • Tcl教程
  • PyTorch使用教程(13)-一文搞定模型的可视化和训练过程监控
  • 在离线无管理员权限的情况下为Linux配置oh-my-zsh(zsh+oh my zsh+powerlevel10k)
  • GIFT ICA 下载记录
  • (一)相机标定——四大坐标系的介绍、对应转换、畸变原理以及OpenCV完整代码实战(C++版)
  • Spring Boot 中使用 @Transactional 注解配置事务管理
  • SD卡数据恢复:快速恢复丢失的照片和视频
  • Linux环境下配置mysql主从复制
  • ChatGPT之搭建API代理服务
  • C/C++实现无序入参的命令解析工具
  • 跟我学C++中级篇——STL中decay的应用
  • 计算机网络原理基础
  • PMSA Memory Model--1 Overview
  • 数据湖Paimon入门指南
  • 【数据分享】1929-2023年全球站点的逐日平均能见度(Shp\Excel\免费获取)
  • 贪心算法篇2
  • Selenium——利用input标签上传文件
  • 机器学习数学基础
  • 【安防】三个问题:IPC和ITC主要的差异点和相同点 、影响图像成像效果的因素有哪些、摩尔纹如何产生的和消除方法
  • SpringBoot使用Rabbit详解含完整代码
  • 家政小程序系统开发:从构思到实现
  • NLP_语言模型的雏形 N-Gram 模型
  • ansible批量修改主机密码
  • 【Ubuntu】安装hbase
  • 【c++】跟webrtc学引用计数
  • Jmeter学习系列之五:基础线程组(Thread Group)