From ffc931dfb8829c8ae36b171d47f3230e10b67cea Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Sat, 9 Dec 2017 12:57:02 +0200 Subject: Add support for calculating SHA1 checksums --- libbutl/sha256.mxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libbutl/sha256.mxx') diff --git a/libbutl/sha256.mxx b/libbutl/sha256.mxx index c5e5864..23a116a 100644 --- a/libbutl/sha256.mxx +++ b/libbutl/sha256.mxx @@ -114,9 +114,9 @@ LIBBUTL_MODEXPORT namespace butl private: struct context // Note: identical to SHA256_CTX. { - uint32_t state[8]; - uint64_t count; - uint8_t buf[64]; + std::uint32_t state[8]; + std::uint64_t count; + std::uint8_t buf[64]; }; union -- cgit v1.1