2 * Copyright 2008, Ingo Weinhold, ingo_weinhold@gmx.de.
3 * Distributed under the terms of the MIT License.
9 #include <SupportDefs.h>
12 #define SHA_DIGEST_LENGTH 32
23 void Update(const void* buffer
, size_t size
);
24 const uint8
* Digest();
25 size_t DigestLength() const
26 { return SHA_DIGEST_LENGTH
; }
35 size_t fBytesInBuffer
;
41 } // namespace BPrivate
43 using BPrivate::SHA256
;