在.cpp文件中调用.c文件中的函数

问题描述:

提示:今日需要在c++项目中调用GMSSL中的SM2的相关函数接口。在包含头文件,链接动态库
.cpp中调用GMSSL(c语言库)的函数的代码:

@Override
        #include <openssl/bn.h>
        #include <openssl/ec.h>
        #include <openssl/evp.h>
        #include <openssl/rand.h>
        #include <openssl/engine.h>
        #include <openssl/sm2.h>
        #include <openssl/gmapi.h>
        
        /*从私钥证书里读取私钥*/
		EC_KEY *sm2_private_key = NULL;  //私钥
		char *passin = NULL;  //证书读取密码
		BIO *pri_in = NULL;  //输入输出流
		pri_in = BIO_new(BIO_S_FILE());
		
		if(BIO_read_filename(pri_in, "/home/pemfile/pri_key_pkcs8.pem") <= 0){
			cerr<<"Failed to read pem file"<<endl;
			return -1;
	}
		
		sm2_private_key = PEM_read_bio_ECPrivateKey(pri_in, NULL, NULL, passin);  //证书未设置密码,所以passin为NULL
		

编译命令:g++ -g -o parser_records.cpp --std=c++11 -I /usr/local/gmssl/include -lcrypto -ldl -pthread
在编译时已经把头文件包含进去,头文件路径给出(/usr/local/gmssl/include),把GM的动态库链接进去(-lcrypto)。在此情况下,编译时一直提示“函数PEM_read_bio_ECPrivateKey在此作用域中尚未申明”。

原因分析:

提示:后来发现是因为cpp文件中不能直接调用c的接口!


解决方案:

参照链接: https://blog.csdn.net/shaosunrise/article/details/81176880.

@Override

	extern "C" { 
        #include <openssl/bn.h>
        #include <openssl/ec.h>
        #include <openssl/evp.h>
        #include <openssl/rand.h>
        #include <openssl/engine.h>
        #include <openssl/sm2.h>
        #include <openssl/gmapi.h>
        }
        
        /*从私钥证书里读取私钥*/
		EC_KEY *sm2_private_key = NULL;  //私钥
		char *passin = NULL;  //证书读取密码
		BIO *pri_in = NULL;  //输入输出流
		pri_in = BIO_new(BIO_S_FILE());
		
		if(BIO_read_filename(pri_in, "/home/pemfile/pri_key_pkcs8.pem") <= 0){
			cerr<<"Failed to read pem file"<<endl;
			return -1;
	}
		
		sm2_private_key = PEM_read_bio_ECPrivateKey(pri_in, NULL, NULL, passin);  //证书未设置密码,所以passin为NULL
		

后编译通过。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值