From 16b63f8cdf5b488ab2f4b0e029478b01a2d6b8a8 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Tue, 10 Jul 2018 09:20:25 +0200 Subject: Add support for hashing ifdstream --- libbutl/sha256.cxx | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'libbutl/sha256.cxx') diff --git a/libbutl/sha256.cxx b/libbutl/sha256.cxx index a688a15..c4556e7 100644 --- a/libbutl/sha256.cxx +++ b/libbutl/sha256.cxx @@ -27,6 +27,8 @@ extern "C" #include "sha256c.c" } +#include + #ifndef __cpp_lib_modules #include #include @@ -53,8 +55,10 @@ import std.core; #endif import butl.utility; // *case() +import butl.fdstream; #else #include +#include #endif using namespace std; @@ -74,6 +78,20 @@ namespace butl SHA256_Update (reinterpret_cast (buf_), b, n); } + void sha256:: + append (ifdstream& is) + { + fdbuf* buf (dynamic_cast (is.rdbuf ())); + assert (buf != nullptr); + + while (is.peek () != ifdstream::traits_type::eof () && is.good ()) + { + size_t n (buf->egptr () - buf->gptr ()); + append (buf->gptr (), n); + buf->gbump (static_cast (n)); + } + } + const sha256::digest_type& sha256:: binary () const { -- cgit v1.1