aboutsummaryrefslogtreecommitdiffstats
path: root/lib/asn1/asn1_attribute.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/asn1/asn1_attribute.h')
-rw-r--r--lib/asn1/asn1_attribute.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/lib/asn1/asn1_attribute.h b/lib/asn1/asn1_attribute.h
new file mode 100644
index 000000000..877135803
--- /dev/null
+++ b/lib/asn1/asn1_attribute.h
@@ -0,0 +1,36 @@
+/*
+* ASN.1 Attribute
+* (C) 1999-2007,2012 Jack Lloyd
+*
+* Distributed under the terms of the Botan license
+*/
+
+#ifndef BOTAN_ASN1_ATTRIBUTE_H__
+#define BOTAN_ASN1_ATTRIBUTE_H__
+
+#include <botan/asn1_obj.h>
+#include <botan/asn1_oid.h>
+#include <vector>
+
+namespace Botan {
+
+/**
+* Attribute
+*/
+class BOTAN_DLL Attribute : public ASN1_Object
+ {
+ public:
+ void encode_into(class DER_Encoder& to) const;
+ void decode_from(class BER_Decoder& from);
+
+ OID oid;
+ std::vector<byte> parameters;
+
+ Attribute() {}
+ Attribute(const OID&, const std::vector<byte>&);
+ Attribute(const std::string&, const std::vector<byte>&);
+ };
+
+}
+
+#endif