diff options
author | lloyd <[email protected]> | 2006-06-23 06:01:47 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2006-06-23 06:01:47 +0000 |
commit | edd3efbc92c0563f607274e33294dc9783e3b05d (patch) | |
tree | 61085433f2d451b5e0b80e05457f4f20d0b0d5e7 /include/x509cert.h | |
parent | 940697169376f32d10da71d6f0d4660a71c45545 (diff) |
Make create_dn (from x509cert.cpp) a public function. Add a
create_alt_name that performs the same sort of extraction for
alternative names.
Diffstat (limited to 'include/x509cert.h')
-rw-r--r-- | include/x509cert.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/x509cert.h b/include/x509cert.h index 4978ab9d2..d8fa5b313 100644 --- a/include/x509cert.h +++ b/include/x509cert.h @@ -62,6 +62,12 @@ class X509_Certificate : public X509_Object *************************************************/ bool operator!=(const X509_Certificate&, const X509_Certificate&); +/************************************************* +* Data Store Extraction Operations * +*************************************************/ +X509_DN create_dn(const Data_Store&); +AlternativeName create_alt_name(const Data_Store&); + } #endif |