1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154
|
/*************************************************
* CRL Entry Source File *
* (C) 1999-2005 The Botan Project *
*************************************************/
#include <botan/crl_ent.h>
#include <botan/asn1.h>
#include <botan/conf.h>
#include <botan/oids.h>
#include <botan/x509_crl.h>
#include <botan/util.h>
namespace Botan {
/*************************************************
* Create a CRL_Entry *
*************************************************/
CRL_Entry::CRL_Entry()
{
reason = UNSPECIFIED;
}
/*************************************************
* Create a CRL_Entry *
*************************************************/
CRL_Entry::CRL_Entry(const X509_Certificate& cert, CRL_Code why)
{
serial = cert.serial_number();
time = X509_Time(system_time());
reason = why;
}
/*************************************************
* Compare two CRL_Entrys for equality *
*************************************************/
bool operator==(const CRL_Entry& a1, const CRL_Entry& a2)
{
if(a1.serial != a2.serial)
return false;
if(a1.time != a2.time)
return false;
if(a1.reason != a2.reason)
return false;
return true;
}
/*************************************************
* Compare two CRL_Entrys for inequality *
*************************************************/
bool operator!=(const CRL_Entry& a1, const CRL_Entry& a2)
{
return !(a1 == a2);
}
/*************************************************
* Compare two CRL_Entrys *
*************************************************/
bool operator<(const CRL_Entry& a1, const CRL_Entry& a2)
{
return (a1.time.cmp(a2.time) < 0);
}
namespace DER {
/*************************************************
* DER encode an CRL_Entry *
*************************************************/
void encode(DER_Encoder& encoder, const CRL_Entry& crl_ent)
{
encoder.start_sequence();
DER::encode(encoder, BigInt::decode(crl_ent.serial, crl_ent.serial.size()));
DER::encode(encoder, crl_ent.time);
encoder.start_sequence();
if(crl_ent.reason != UNSPECIFIED)
{
DER_Encoder v2_ext;
DER::encode(v2_ext, (u32bit)crl_ent.reason, ENUMERATED, UNIVERSAL);
DER::encode(encoder,
Extension("X509v3.ReasonCode", v2_ext.get_contents()));
}
encoder.end_sequence();
encoder.end_sequence();
}
}
namespace BER {
namespace {
/*************************************************
* Decode a CRL entry extension *
*************************************************/
void handle_crl_entry_extension(CRL_Entry& crl_ent, const Extension& extn)
{
BER_Decoder value(extn.value);
if(extn.oid == OIDS::lookup("X509v3.ReasonCode"))
{
u32bit reason_code;
BER::decode(value, reason_code, ENUMERATED, UNIVERSAL);
crl_ent.reason = CRL_Code(reason_code);
}
else
{
if(extn.critical)
{
std::string action = Config::get_string("x509/crl/unknown_critical");
if(action == "throw")
throw Decoding_Error("Unknown critical CRL entry extension " +
extn.oid.as_string());
else if(action != "ignore")
throw Invalid_Argument("Bad value of x509/crl/unknown_critical: "
+ action);
}
return;
}
value.verify_end();
}
}
/*************************************************
* Decode a BER encoded CRL_Entry *
*************************************************/
void decode(BER_Decoder& source, CRL_Entry& crl_ent)
{
BigInt serial_number;
BER_Decoder sequence = BER::get_subsequence(source);
BER::decode(sequence, serial_number);
crl_ent.serial = BigInt::encode(serial_number);
BER::decode(sequence, crl_ent.time);
if(sequence.more_items())
{
BER_Decoder crl_entry_exts = BER::get_subsequence(sequence);
while(crl_entry_exts.more_items())
{
Extension extn;
BER::decode(crl_entry_exts, extn);
handle_crl_entry_extension(crl_ent, extn);
}
}
sequence.verify_end();
}
}
}
|