aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2016-11-18 15:10:10 -0500
committerJack Lloyd <[email protected]>2016-11-18 15:10:10 -0500
commiteb59bf8c33ed4dbb3990351954bfb7112e6cf273 (patch)
tree36565e93af150f2f5974ed83338a65032d246605
parentdc94557f0f72766dbfba5e129da25dd0111fa564 (diff)
Add X509_DN::empty
-rw-r--r--src/lib/asn1/x509_dn.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/asn1/x509_dn.h b/src/lib/asn1/x509_dn.h
index 2b841feb6..92dd7a3d2 100644
--- a/src/lib/asn1/x509_dn.h
+++ b/src/lib/asn1/x509_dn.h
@@ -37,6 +37,8 @@ class BOTAN_DLL X509_DN final : public ASN1_Object
std::vector<byte> get_bits() const;
+ bool empty() const { return m_dn_info.empty(); }
+
X509_DN();
explicit X509_DN(const std::multimap<OID, std::string>&);
explicit X509_DN(const std::multimap<std::string, std::string>&);