aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/asn1/asn1_time.cpp
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2017-10-02 23:46:53 -0400
committerJack Lloyd <[email protected]>2017-10-02 23:46:53 -0400
commitddab037dd56a9cfb86e4853ad62170ad9dc3748a (patch)
tree1a7f8106c54b0fff8f7b339404e427ae26f0bd4c /src/lib/asn1/asn1_time.cpp
parent4b783316693c8ef2e36a1d97f3dff06c9aea8f79 (diff)
Uppercase constants
Diffstat (limited to 'src/lib/asn1/asn1_time.cpp')
-rw-r--r--src/lib/asn1/asn1_time.cpp27
1 files changed, 15 insertions, 12 deletions
diff --git a/src/lib/asn1/asn1_time.cpp b/src/lib/asn1/asn1_time.cpp
index 5890ac7ca..2cd225915 100644
--- a/src/lib/asn1/asn1_time.cpp
+++ b/src/lib/asn1/asn1_time.cpp
@@ -73,18 +73,21 @@ std::string X509_Time::to_string() const
full_year = (m_year >= 2000) ? (m_year - 2000) : (m_year - 1900);
}
- const auto factor_y = uint64_t{10000000000ull}; // literal exceeds 32bit int range
- const auto factor_m = uint64_t{100000000ull};
- const auto factor_d = uint64_t{1000000ull};
- const auto factor_h = uint64_t{10000ull};
- const auto factor_i = uint64_t{100ull};
-
- std::string repr = std::to_string(factor_y * full_year +
- factor_m * m_month +
- factor_d * m_day +
- factor_h * m_hour +
- factor_i * m_minute +
- m_second) + "Z";
+ const uint64_t YEAR_FACTOR = 10000000000ULL;
+ const uint64_t MON_FACTOR = 100000000;
+ const uint64_t DAY_FACTOR = 1000000;
+ const uint64_t HOUR_FACTOR = 10000;
+ const uint64_t MIN_FACTOR = 100;
+
+ const uint64_t int_repr =
+ YEAR_FACTOR * full_year +
+ MON_FACTOR * m_month +
+ DAY_FACTOR * m_day +
+ HOUR_FACTOR * m_hour +
+ MIN_FACTOR * m_minute +
+ m_second;
+
+ std::string repr = std::to_string(int_repr) + "Z";
uint32_t desired_size = (m_tag == UTC_TIME) ? 13 : 15;