blob: 269cc79839e551f2e921f8dae013de50849f20ce (
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
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
|
/*
* ASN.1 Time Representation
* (C) 1999-2007,2012 Jack Lloyd
*
* Botan is released under the Simplified BSD License (see license.txt)
*/
#ifndef BOTAN_ASN1_TIME_H__
#define BOTAN_ASN1_TIME_H__
#include <botan/asn1_obj.h>
#include <chrono>
namespace Botan {
/**
* X.509 Time
*/
class BOTAN_DLL X509_Time final : public ASN1_Object
{
public:
/// DER encode a X509_Time
void encode_into(DER_Encoder&) const override;
// Decode a BER encoded X509_Time
void decode_from(BER_Decoder&) override;
/// Return an internal string representation of the time
std::string to_string() const;
/// Returns a human friendly string replesentation of no particular formatting
std::string readable_string() const;
/// Return if the time has been set somehow
bool time_is_set() const;
/// Compare this time against another
s32bit cmp(const X509_Time& other) const;
/// Create an invalid X509_Time
X509_Time() {}
/// Create a X509_Time from a time point
X509_Time(const std::chrono::system_clock::time_point& time);
/// Create an X509_Time from string
X509_Time(const std::string& t_spec, ASN1_Tag tag);
private:
void set_to(const std::string& t_spec, ASN1_Tag);
bool passes_sanity_check() const;
u32bit m_year = 0;
u32bit m_month = 0;
u32bit m_day = 0;
u32bit m_hour = 0;
u32bit m_minute = 0;
u32bit m_second = 0;
ASN1_Tag m_tag = NO_OBJECT;
};
/*
* Comparison Operations
*/
bool BOTAN_DLL operator==(const X509_Time&, const X509_Time&);
bool BOTAN_DLL operator!=(const X509_Time&, const X509_Time&);
bool BOTAN_DLL operator<=(const X509_Time&, const X509_Time&);
bool BOTAN_DLL operator>=(const X509_Time&, const X509_Time&);
bool BOTAN_DLL operator<(const X509_Time&, const X509_Time&);
bool BOTAN_DLL operator>(const X509_Time&, const X509_Time&);
}
#endif
|