diff options
author | lloyd <[email protected]> | 2010-09-17 22:12:39 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-09-17 22:12:39 +0000 |
commit | f69375f3a137af835bd6e74dd5c5a1e94c882d8c (patch) | |
tree | c9fe1adb6a77153d16d1a33c5455f7e85a5533e2 /src/asn1/asn1_obj.h | |
parent | f9d51dc97769c8dcda90221543f743a72391b2c2 (diff) |
Add strict comparisons for X509_Time
Diffstat (limited to 'src/asn1/asn1_obj.h')
-rw-r--r-- | src/asn1/asn1_obj.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/asn1/asn1_obj.h b/src/asn1/asn1_obj.h index 0672e6a44..068ed1565 100644 --- a/src/asn1/asn1_obj.h +++ b/src/asn1/asn1_obj.h @@ -145,6 +145,8 @@ 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&); bool BOTAN_DLL operator==(const X509_DN&, const X509_DN&); bool BOTAN_DLL operator!=(const X509_DN&, const X509_DN&); |