aboutsummaryrefslogtreecommitdiffstats
path: root/include/alg_id.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/alg_id.h')
-rw-r--r--include/alg_id.h47
1 files changed, 0 insertions, 47 deletions
diff --git a/include/alg_id.h b/include/alg_id.h
deleted file mode 100644
index 8187fc070..000000000
--- a/include/alg_id.h
+++ /dev/null
@@ -1,47 +0,0 @@
-/*************************************************
-* Algorithm Identifier Header File *
-* (C) 1999-2007 Jack Lloyd *
-*************************************************/
-
-#ifndef BOTAN_ALGORITHM_IDENTIFIER_H__
-#define BOTAN_ALGORITHM_IDENTIFIER_H__
-
-#include <botan/asn1_int.h>
-#include <botan/asn1_oid.h>
-#include <string>
-
-namespace Botan {
-
-/*************************************************
-* Algorithm Identifier *
-*************************************************/
-class BOTAN_DLL AlgorithmIdentifier : public ASN1_Object
- {
- public:
- enum Encoding_Option { USE_NULL_PARAM };
-
- void encode_into(class DER_Encoder&) const;
- void decode_from(class BER_Decoder&);
-
- AlgorithmIdentifier() {}
- AlgorithmIdentifier(const OID&, Encoding_Option);
- AlgorithmIdentifier(const std::string&, Encoding_Option);
-
- AlgorithmIdentifier(const OID&, const MemoryRegion<byte>&);
- AlgorithmIdentifier(const std::string&, const MemoryRegion<byte>&);
-
- OID oid;
- SecureVector<byte> parameters;
- };
-
-/*************************************************
-* Comparison Operations *
-*************************************************/
-bool BOTAN_DLL operator==(const AlgorithmIdentifier&,
- const AlgorithmIdentifier&);
-bool BOTAN_DLL operator!=(const AlgorithmIdentifier&,
- const AlgorithmIdentifier&);
-
-}
-
-#endif