diff options
author | Pieter Wuille <sipa@ulyssis.org> | 2014-06-12 13:34:29 +0200 |
---|---|---|
committer | Pieter Wuille <pieter.wuille@gmail.com> | 2014-06-21 19:47:43 +0200 |
commit | a0495bb68c6eff9c732d458bacab10490d6452b4 (patch) | |
tree | 191a3bb7929e1de43ea484873587249fd2533b19 /src/crypto/sha1.h | |
parent | 4791b99e2dea0593775a8c75f62c8406d340191e (diff) |
Add <Hasher>::OUTPUT_SIZE
Diffstat (limited to 'src/crypto/sha1.h')
-rw-r--r-- | src/crypto/sha1.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/crypto/sha1.h b/src/crypto/sha1.h index 6efde78a5b..b16f2c88ce 100644 --- a/src/crypto/sha1.h +++ b/src/crypto/sha1.h @@ -16,9 +16,11 @@ private: size_t bytes; public: + static const size_t OUTPUT_SIZE = 20; + CSHA1(); CSHA1& Write(const unsigned char *data, size_t len); - void Finalize(unsigned char *hash); + void Finalize(unsigned char hash[OUTPUT_SIZE]); CSHA1& Reset(); }; |