aboutsummaryrefslogtreecommitdiffstats
path: root/src/cert/x509/pkcs10.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/cert/x509/pkcs10.h')
-rw-r--r--src/cert/x509/pkcs10.h111
1 files changed, 0 insertions, 111 deletions
diff --git a/src/cert/x509/pkcs10.h b/src/cert/x509/pkcs10.h
deleted file mode 100644
index b54425133..000000000
--- a/src/cert/x509/pkcs10.h
+++ /dev/null
@@ -1,111 +0,0 @@
-/*
-* PKCS #10
-* (C) 1999-2007 Jack Lloyd
-*
-* Distributed under the terms of the Botan license
-*/
-
-#ifndef BOTAN_PKCS10_H__
-#define BOTAN_PKCS10_H__
-
-#include <botan/x509_obj.h>
-#include <botan/x509_dn.h>
-#include <botan/pkcs8.h>
-#include <botan/datastor.h>
-#include <botan/key_constraint.h>
-#include <botan/asn1_attribute.h>
-#include <botan/asn1_alt_name.h>
-#include <vector>
-
-namespace Botan {
-
-/**
-* PKCS #10 Certificate Request.
-*/
-class BOTAN_DLL PKCS10_Request : public X509_Object
- {
- public:
- /**
- * Get the subject public key.
- * @return subject public key
- */
- Public_Key* subject_public_key() const;
-
- /**
- * Get the raw DER encoded public key.
- * @return raw DER encoded public key
- */
- std::vector<byte> raw_public_key() const;
-
- /**
- * Get the subject DN.
- * @return subject DN
- */
- X509_DN subject_dn() const;
-
- /**
- * Get the subject alternative name.
- * @return subject alternative name.
- */
- AlternativeName subject_alt_name() const;
-
- /**
- * Get the key constraints for the key associated with this
- * PKCS#10 object.
- * @return key constraints
- */
- Key_Constraints constraints() const;
-
- /**
- * Get the extendend key constraints (if any).
- * @return extended key constraints
- */
- std::vector<OID> ex_constraints() const;
-
- /**
- * Find out whether this is a CA request.
- * @result true if it is a CA request, false otherwise.
- */
- bool is_CA() const;
-
- /**
- * Return the constraint on the path length defined
- * in the BasicConstraints extension.
- * @return path limit
- */
- u32bit path_limit() const;
-
- /**
- * Get the challenge password for this request
- * @return challenge password for this request
- */
- std::string challenge_password() const;
-
- /**
- * Create a PKCS#10 Request from a data source.
- * @param source the data source providing the DER encoded request
- */
- PKCS10_Request(DataSource& source);
-
- /**
- * Create a PKCS#10 Request from a file.
- * @param filename the name of the file containing the DER or PEM
- * encoded request file
- */
- PKCS10_Request(const std::string& filename);
-
- /**
- * Create a PKCS#10 Request from binary data.
- * @param vec a std::vector containing the DER value
- */
- PKCS10_Request(const std::vector<byte>& vec);
- private:
- void force_decode();
- void handle_attribute(const Attribute&);
-
- Data_Store info;
- };
-
-}
-
-#endif