aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/x509
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2016-11-25 13:04:54 -0500
committerJack Lloyd <[email protected]>2016-11-25 13:04:54 -0500
commit8eccf87635443b284a4b59fcd01cba9ddfb2ce9f (patch)
tree5c85d4cda8c4b79dd484daf6b0b5553bcc067b31 /src/lib/x509
parentc821af9ecb9df8b8e2e5ce0f9616a03193b23f55 (diff)
Add a test for to_string(Certificate_Status_Code)
Diffstat (limited to 'src/lib/x509')
-rw-r--r--src/lib/x509/cert_status.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/lib/x509/cert_status.cpp b/src/lib/x509/cert_status.cpp
index e08e8efcc..76a102aef 100644
--- a/src/lib/x509/cert_status.cpp
+++ b/src/lib/x509/cert_status.cpp
@@ -27,7 +27,7 @@ const char* to_string(Certificate_Status_Code code)
case Certificate_Status_Code::SIGNATURE_METHOD_TOO_WEAK:
return "Signature method too weak";
case Certificate_Status_Code::UNTRUSTED_HASH:
- return "Untrusted hash";
+ return "Hash function used is considered too weak for security";
case Certificate_Status_Code::CERT_NOT_YET_VALID:
return "Certificate is not yet valid";
@@ -36,9 +36,9 @@ const char* to_string(Certificate_Status_Code code)
case Certificate_Status_Code::OCSP_NOT_YET_VALID:
return "OCSP is not yet valid";
case Certificate_Status_Code::OCSP_HAS_EXPIRED:
- return "OCSP has expired";
+ return "OCSP response has expired";
case Certificate_Status_Code::CRL_NOT_YET_VALID:
- return "CRL is not yet valid";
+ return "CRL response is not yet valid";
case Certificate_Status_Code::CRL_HAS_EXPIRED:
return "CRL has expired";
@@ -54,9 +54,9 @@ const char* to_string(Certificate_Status_Code code)
return "Certificate issuer does not match subject of issuing cert";
case Certificate_Status_Code::POLICY_ERROR:
- return "Policy error";
+ return "Certificate policy error";
case Certificate_Status_Code::INVALID_USAGE:
- return "Invalid usage";
+ return "Certificate does not allow the requested usage";
case Certificate_Status_Code::CERT_CHAIN_TOO_LONG:
return "Certificate chain too long";
case Certificate_Status_Code::CA_CERT_NOT_FOR_CERT_ISSUER: