wolfssl进行rsa加密

这篇博客展示了如何使用wolfssl库进行RSA加密。通过初始化RsaKey,加载公钥和私钥,然后使用wc_RsaPublicEncrypt进行公钥加密。
摘要由CSDN通过智能技术生成
写了点测试代码,记下来
#include "stdafx.h"
#include "iostream"
#include "wolfssl/wolfcrypt/rsa.h"

#pragma comment(lib, "wolfssl.lib")

using namespace std;

int main()
{
	RsaKey enc, enc2;
	int ret;
	RNG rng;
	
	wc_InitRng(&rng);
	ret = wc_InitRsaKey(&enc, NULL);
	if (ret != 0) {
		cout << "wc_InitRsaKey ret " << ret << endl;
		return 0;
	}

	ret = wc_InitRsaKey(&enc2, NULL);
	if (ret != 0) {
		cout << "wc_InitRsaKey ret " << ret << endl;
		return 0;
	}


	word32 idx = 0;
	
	// 解密私钥,使用golang.x509.MarshalPKCS1PrivateKey生成
	byte der[] = { 48,130,2,92,2,1,0,2,129,129,0,222,137,20,25,217,228,50,196,202,63,143,233,102,89,117,226,238,164,36,167,196,1,139,24,143,124,118,119,139,182,191,199,10,206,204,244,21,232,155,138,240,146,29,180,123,73,231,169,122,0,34,92,27,115,123,100,187,166,68,10,166,208,210,131,37,185,242,222,236,110,65,
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值