diff options
author | lloyd <[email protected]> | 2006-06-23 06:02:39 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2006-06-23 06:02:39 +0000 |
commit | 0fe88012f8cc9512012335802f925f96b323c0e9 (patch) | |
tree | 145799e90f4ae79d1dfd67ae1a21a4b626c2d5b3 /include/pkcs10.h | |
parent | edd3efbc92c0563f607274e33294dc9783e3b05d (diff) |
Move all the members of PKCS10_Request into a Data_Store
Diffstat (limited to 'include/pkcs10.h')
-rw-r--r-- | include/pkcs10.h | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/include/pkcs10.h b/include/pkcs10.h index 212bf7749..c37040068 100644 --- a/include/pkcs10.h +++ b/include/pkcs10.h @@ -8,6 +8,7 @@ #include <botan/x509_obj.h> #include <botan/pkcs8.h> +#include <botan/datastor.h> #include <vector> namespace Botan { @@ -38,14 +39,7 @@ class PKCS10_Request : public X509_Object void handle_attribute(const Attribute&); void handle_v3_extension(const Extension&); - MemoryVector<byte> pub_key; - X509_DN dn; - AlternativeName subject_alt; - std::string challenge; - Key_Constraints constraints_value; - std::vector<OID> ex_constraints_list; - bool is_ca; - u32bit max_path_len; + Data_Store info; }; } |