可以通过openssl提供的库函数验证
Linux(openssl):创建selfsign证书-CSDN博客文章来源:https://www.toymoban.com/news/detail-740598.html
生成的正式是否为selfsign 文章来源地址https://www.toymoban.com/news/detail-740598.html
//check_cert.hpp
#include <string>
#include <memory>
#include <filesystem>
#include <openssl/pem.h>
using namespace std;
namespace fs = std::filesystem;
class CheckSelfsign{
public:
CheckSelfsign(const fs::path& filePath) : m_filePath(filePath) {}
public:
int doCheck()
{
if(m_filePath.string().length() > 0)
{
if(fs::exists(m_filePath))
{
shared_ptr<BIO> certBio(BIO_new_file(m_filePath.string().c_str(), "rb"), ::BIO_free);
if(certBio == nullptr)
{
return -2;
}
到了这里,关于Linux(openssl):通过编程检查证书是否为selfsign的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!