blob: 510c4f5a85b4e9cb3a60ab3b546e191b8bb7170e (
plain)
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
|
/*************************************************
* CRL Entry Header File *
* (C) 1999-2006 The Botan Project *
*************************************************/
#ifndef BOTAN_CRL_ENTRY_H__
#define BOTAN_CRL_ENTRY_H__
#include <botan/x509cert.h>
namespace Botan {
/*************************************************
* CRL Entry *
*************************************************/
class CRL_Entry : public ASN1_Object
{
public:
void encode_into(class DER_Encoder&) const;
void decode_from(class BER_Decoder&);
MemoryVector<byte> serial;
X509_Time time;
CRL_Code reason;
CRL_Entry();
CRL_Entry(const X509_Certificate&, CRL_Code = UNSPECIFIED);
};
/*************************************************
* Comparison Operations *
*************************************************/
bool operator==(const CRL_Entry&, const CRL_Entry&);
bool operator!=(const CRL_Entry&, const CRL_Entry&);
bool operator<(const CRL_Entry&, const CRL_Entry&);
}
#endif
|