Botan 3.4.0
Crypto and TLS for C&
Public Types | Public Member Functions | Static Public Member Functions | List of all members
Botan::Path_Validation_Result Class Referencefinal

#include <x509path.h>

Public Types

typedef Certificate_Status_Code Code
 

Public Member Functions

const CertificatePathStatusCodesall_statuses () const
 
const std::vector< X509_Certificate > & cert_path () const
 
bool no_warnings () const
 
 Path_Validation_Result (Certificate_Status_Code status)
 
 Path_Validation_Result (CertificatePathStatusCodes status, std::vector< X509_Certificate > &&cert_chain)
 
Certificate_Status_Code result () const
 
std::string result_string () const
 
bool successful_validation () const
 
const X509_Certificatetrust_root () const
 
CertificatePathStatusCodes warnings () const
 
std::string warnings_string () const
 

Static Public Member Functions

static const char * status_string (Certificate_Status_Code code)
 

Detailed Description

Represents the result of a PKIX path validation

Definition at line 157 of file x509path.h.

Member Typedef Documentation

◆ Code

Definition at line 159 of file x509path.h.

Constructor & Destructor Documentation

◆ Path_Validation_Result() [1/2]

Botan::Path_Validation_Result::Path_Validation_Result ( CertificatePathStatusCodes status,
std::vector< X509_Certificate > && cert_chain )

Create a Path_Validation_Result

Parameters
statuslist of validation status codes
cert_chainthe certificate chain that was validated

Definition at line 996 of file x509path.cpp.

997 :
998 m_all_status(std::move(status)),
999 m_warnings(find_warnings(m_all_status)),
1000 m_cert_path(cert_chain),
1001 m_overall(PKIX::overall_status(m_all_status)) {}
Certificate_Status_Code overall_status(const CertificatePathStatusCodes &cert_status)
Definition x509path.cpp:830

◆ Path_Validation_Result() [2/2]

Botan::Path_Validation_Result::Path_Validation_Result ( Certificate_Status_Code status)
inlineexplicit

Create a Path_Validation_Result

Parameters
statusvalidation status code

Definition at line 225 of file x509path.h.

225: m_overall(status) {}

Member Function Documentation

◆ all_statuses()

const CertificatePathStatusCodes & Botan::Path_Validation_Result::all_statuses ( ) const
inline
Returns
a set of status codes for each certificate in the chain

Definition at line 191 of file x509path.h.

191{ return m_all_status; }

◆ cert_path()

const std::vector< X509_Certificate > & Botan::Path_Validation_Result::cert_path ( ) const
inline
Returns
the full path from subject to trust root This path may be empty

Definition at line 171 of file x509path.h.

171{ return m_cert_path; }

◆ no_warnings()

bool Botan::Path_Validation_Result::no_warnings ( ) const
Returns
true iff no warnings occured during validation

Definition at line 1019 of file x509path.cpp.

1019 {
1020 for(const auto& status_set_i : m_warnings) {
1021 if(!status_set_i.empty()) {
1022 return false;
1023 }
1024 }
1025 return true;
1026}

◆ result()

Certificate_Status_Code Botan::Path_Validation_Result::result ( ) const
inline
Returns
overall validation result code

Definition at line 186 of file x509path.h.

186{ return m_overall; }

Referenced by result_string(), successful_validation(), and trust_root().

◆ result_string()

std::string Botan::Path_Validation_Result::result_string ( ) const
Returns
string representation of the validation result

Definition at line 1032 of file x509path.cpp.

1032 {
1033 return status_string(result());
1034}
Certificate_Status_Code result() const
Definition x509path.h:186
static const char * status_string(Certificate_Status_Code code)

References result(), and status_string().

Referenced by Botan::TLS::Callbacks::tls_verify_cert_chain().

◆ status_string()

const char * Botan::Path_Validation_Result::status_string ( Certificate_Status_Code code)
static
Parameters
codevalidation status code
Returns
corresponding validation status message

Definition at line 1036 of file x509path.cpp.

1036 {
1037 if(const char* s = to_string(code)) {
1038 return s;
1039 }
1040
1041 return "Unknown error";
1042}
std::string to_string(ErrorType type)
Convert an ErrorType to string.
Definition exceptn.cpp:13

References Botan::to_string().

Referenced by result_string(), and warnings_string().

◆ successful_validation()

bool Botan::Path_Validation_Result::successful_validation ( ) const

◆ trust_root()

const X509_Certificate & Botan::Path_Validation_Result::trust_root ( ) const
Returns
the trust root of the validation if successful throws an exception if the validation failed

Definition at line 1003 of file x509path.cpp.

1003 {
1004 if(m_cert_path.empty()) {
1005 throw Invalid_State("Path_Validation_Result::trust_root no path set");
1006 }
1008 throw Invalid_State("Path_Validation_Result::trust_root meaningless with invalid status");
1009 }
1010
1011 return m_cert_path[m_cert_path.size() - 1];
1012}

References result(), and Botan::VERIFIED.

◆ warnings()

CertificatePathStatusCodes Botan::Path_Validation_Result::warnings ( ) const
Returns
the subset of status codes that are warnings

Definition at line 1028 of file x509path.cpp.

1028 {
1029 return m_warnings;
1030}

◆ warnings_string()

std::string Botan::Path_Validation_Result::warnings_string ( ) const
Returns
string representation of the warnings

Definition at line 1044 of file x509path.cpp.

1044 {
1045 const std::string sep(", ");
1046 std::ostringstream oss;
1047 for(size_t i = 0; i < m_warnings.size(); i++) {
1048 for(auto code : m_warnings[i]) {
1049 oss << "[" << std::to_string(i) << "] " << status_string(code) << sep;
1050 }
1051 }
1052
1053 std::string res = oss.str();
1054 // remove last sep
1055 if(res.size() >= sep.size()) {
1056 res = res.substr(0, res.size() - sep.size());
1057 }
1058 return res;
1059}

References status_string().


The documentation for this class was generated from the following files: