qb  2.0.0.0
C++17 Actor Framework
qb Issue Watch Star Fork Follow @isndev
Loading...
Searching...
No Matches
qb::io::ssl::Certificate Struct Reference

Structure to hold essential SSL certificate information. More...

#include <socket.h>

Public Attributes

std::string subject
 The subject name of the certificate.
std::string issuer
 The issuer name of the certificate.
int64_t version
 The version number of the certificate.
std::string serial_number
 The serial number of the certificate as a hex string.
int64_t not_before
 Certificate validity start date (Unix timestamp).
int64_t not_after
 Certificate validity end date (Unix timestamp).
std::string signature_algorithm
 The signature algorithm used in the certificate.
std::vector< std::string > subject_alternative_names
 List of Subject Alternative Names (DNS, IP, etc.).

Detailed Description

Structure to hold essential SSL certificate information.

Contains common fields extracted from an X509 certificate.