diff options
| author | Pieter Wuille <[email protected]> | 2014-06-12 13:34:29 +0200 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2014-06-21 19:47:43 +0200 |
| commit | a0495bb68c6eff9c732d458bacab10490d6452b4 (patch) | |
| tree | 191a3bb7929e1de43ea484873587249fd2533b19 /src/crypto/sha1.h | |
| parent | crypto: create a separate lib for crypto functions (diff) | |
| download | discoin-a0495bb68c6eff9c732d458bacab10490d6452b4.tar.xz discoin-a0495bb68c6eff9c732d458bacab10490d6452b4.zip | |
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 6efde78a5..b16f2c88c 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(); }; |