The unified diff between revisions [92f17752..] and [48b49b84..] is displayed below. It can also be downloaded as a raw diff.
This diff has been restricted to the following files: 'include/enums.h'
#
#
# patch "include/enums.h"
# from [baf21a6f233200a4cfd0e09f584285a4fd3caef4]
# to [68dbc74e69996937ec15c7cc13b99a04ae0f1d6d]
#
============================================================
--- include/enums.h baf21a6f233200a4cfd0e09f584285a4fd3caef4
+++ include/enums.h 68dbc74e69996937ec15c7cc13b99a04ae0f1d6d
@@ -1,6 +1,6 @@
/*************************************************
* Enumerations Header File *
-* (C) 1999-2006 The Botan Project *
+* (C) 1999-2007 Jack Lloyd *
*************************************************/
#ifndef BOTAN_ENUMS_H__
@@ -9,43 +9,6 @@ namespace Botan {
namespace Botan {
/*************************************************
-* ASN.1 Type and Class Tags *
-*************************************************/
-enum ASN1_Tag {
- UNIVERSAL = 0x00,
- APPLICATION = 0x40,
- CONTEXT_SPECIFIC = 0x80,
- PRIVATE = 0xC0,
-
- CONSTRUCTED = 0x20,
-
- EOC = 0x00,
- BOOLEAN = 0x01,
- INTEGER = 0x02,
- BIT_STRING = 0x03,
- OCTET_STRING = 0x04,
- NULL_TAG = 0x05,
- OBJECT_ID = 0x06,
- ENUMERATED = 0x0A,
- SEQUENCE = 0x10,
- SET = 0x11,
-
- UTF8_STRING = 0x0C,
- NUMERIC_STRING = 0x12,
- PRINTABLE_STRING = 0x13,
- T61_STRING = 0x14,
- IA5_STRING = 0x16,
- VISIBLE_STRING = 0x1A,
- BMP_STRING = 0x1E,
-
- UTC_TIME = 0x17,
- GENERALIZED_TIME = 0x18,
-
- NO_OBJECT = 0xFF00,
- DIRECTORY_STRING = 0xFF01
-};
-
-/*************************************************
* X.509v3 Key Constraints *
*************************************************/
enum Key_Constraints {
@@ -90,8 +53,6 @@ enum Cipher_Dir { ENCRYPTION, DECRYPTION
enum Cipher_Dir { ENCRYPTION, DECRYPTION };
-enum Signature_Format { IEEE_1363, DER_SEQUENCE };
-
enum Character_Set {
LOCAL_CHARSET,
UCS2_CHARSET,
@@ -99,21 +60,6 @@ enum Character_Set {
LATIN1_CHARSET
};
-/*************************************************
-* Pulse Function *
-*************************************************/
-enum Pulse_Type {
- GENERAL_PULSE,
-
- PIPE_WRITE,
-
- PRIME_SEARCHING,
- PRIME_SIEVING,
- PRIME_PASSED_SIEVE,
- PRIME_TESTING,
- PRIME_FOUND
-};
-
static const u32bit NO_CERT_PATH_LIMIT = 0xFFFFFFF0;
}