Botan 2.19.3
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< std::shared_ptr< const X509_Certificate > > & cert_path () const
 
bool no_warnings () const
 
 Path_Validation_Result (Certificate_Status_Code status)
 
 Path_Validation_Result (CertificatePathStatusCodes status, std::vector< std::shared_ptr< const X509_Certificate > > &&cert_chain)
 
Certificate_Status_Code result () const
 
std::string result_string () const
 
bool successful_validation () const
 
const X509_Certificatetrust_root () const
 
std::set< std::string > trusted_hashes () 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 125 of file x509path.h.

Member Typedef Documentation

◆ Code

Definition at line 128 of file x509path.h.

Constructor & Destructor Documentation

◆ Path_Validation_Result() [1/2]

Botan::Path_Validation_Result::Path_Validation_Result ( CertificatePathStatusCodes  status,
std::vector< std::shared_ptr< const 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 1018 of file x509path.cpp.

1019 :
1020 m_all_status(status),
1021 m_warnings(find_warnings(m_all_status)),
1022 m_cert_path(cert_chain),
1023 m_overall(PKIX::overall_status(m_all_status))
1024 {
1025 }

◆ 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 202 of file x509path.h.

202: 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 166 of file x509path.h.

167 { return m_all_status; }

◆ cert_path()

const std::vector< std::shared_ptr< const 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 146 of file x509path.h.

146{ 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 1052 of file x509path.cpp.

1053 {
1054 for(auto status_set_i : m_warnings)
1055 if(!status_set_i.empty())
1056 return false;
1057 return true;
1058 }

◆ result()

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

Definition at line 161 of file x509path.h.

161{ 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 1065 of file x509path.cpp.

1066 {
1067 return status_string(result());
1068 }
Certificate_Status_Code result() const
Definition x509path.h:161
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 1070 of file x509path.cpp.

1071 {
1072 if(const char* s = to_string(code))
1073 return s;
1074
1075 return "Unknown error";
1076 }
std::string to_string(ErrorType type)
Convert an ErrorType to string.
Definition exceptn.cpp:11

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 1027 of file x509path.cpp.

1028 {
1029 if(m_cert_path.empty())
1030 throw Invalid_State("Path_Validation_Result::trust_root no path set");
1032 throw Invalid_State("Path_Validation_Result::trust_root meaningless with invalid status");
1033
1034 return *m_cert_path[m_cert_path.size()-1];
1035 }

References result(), and Botan::VERIFIED.

◆ trusted_hashes()

std::set< std::string > Botan::Path_Validation_Result::trusted_hashes ( ) const
Returns
the set of hash functions you are implicitly trusting by trusting this result.

Definition at line 1037 of file x509path.cpp.

1038 {
1039 std::set<std::string> hashes;
1040 for(size_t i = 0; i != m_cert_path.size(); ++i)
1041 hashes.insert(m_cert_path[i]->hash_used_for_signature());
1042 return hashes;
1043 }

◆ warnings()

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

Definition at line 1060 of file x509path.cpp.

1061 {
1062 return m_warnings;
1063 }

◆ warnings_string()

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

Definition at line 1078 of file x509path.cpp.

1079 {
1080 const std::string sep(", ");
1081 std::string res;
1082 for(size_t i = 0; i < m_warnings.size(); i++)
1083 {
1084 for(auto code : m_warnings[i])
1085 res += "[" + std::to_string(i) + "] " + status_string(code) + sep;
1086 }
1087 // remove last sep
1088 if(res.size() >= sep.size())
1089 res = res.substr(0, res.size() - sep.size());
1090 return res;
1091 }
Definition bigint.h:1143

References status_string().


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