openssl生成数字证书和密钥

本文提供了一套详细的步骤来指导读者如何在Linux环境下生成SSL证书。包括生成私钥、创建证书签名请求、签署证书以及移除密码需求等过程,并介绍了如何在代码中配置使用这些证书。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

OK, for anyone finding this in the future, you need to create your certificates and sign them appropriately. Here are the commands for linux:


//Generate a private key


openssl genrsa -des3 -out server.key 1024
//Generate Certificate signing request


openssl req -new -key server.key -out server.csr
//Sign certificate with private key


openssl x509 -req -days 3650 -in server.csr -signkey server.key -out server.crt
//Remove password requirement (needed for example)


cp server.key server.key.secure
openssl rsa -in server.key.secure -out server.key
//Generate dhparam file


openssl dhparam -out dh512.pem 512
Once you've done that, you need to change the filenames in server.cpp and client.cpp.


server.cpp


context_.use_certificate_chain_file("server.crt"); 
context_.use_private_key_file("server.key", boost::asio::ssl::context::pem);
context_.use_tmp_dh_file("dh512.pem");
client.cpp


ctx.load_verify_file("server.crt");
Then it should all work!
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值