diff options
author | Jack Lloyd <[email protected]> | 2017-12-18 17:00:45 -0500 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2017-12-18 17:00:45 -0500 |
commit | e886e5942c1117115c72cfa0ed808af37693efab (patch) | |
tree | 31aff512f1c346bafb39f96367d16f1fd6969200 /src/lib/utils/parsing.h | |
parent | a29484c932bb40bd2bdd259718d0699d5e717d1a (diff) |
Avoid tying encoding of CRLs to the current system clock
Diffstat (limited to 'src/lib/utils/parsing.h')
-rw-r--r-- | src/lib/utils/parsing.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/utils/parsing.h b/src/lib/utils/parsing.h index 1cba23bc3..9185cfaad 100644 --- a/src/lib/utils/parsing.h +++ b/src/lib/utils/parsing.h @@ -124,7 +124,8 @@ BOTAN_PUBLIC_API(2,3) uint16_t to_uint16(const std::string& str); * @param timespec the time specification * @return number of seconds represented by timespec */ -BOTAN_PUBLIC_API(2,0) uint32_t timespec_to_u32bit(const std::string& timespec); +BOTAN_PUBLIC_API(2,0) uint32_t BOTAN_DEPRECATED("Not used anymore") +timespec_to_u32bit(const std::string& timespec); /** * Convert a string representation of an IPv4 address to a number |