Bitcoin ABC 0.26.3
P2P Digital Currency
Loading...
Searching...
No Matches
sha1.h
Go to the documentation of this file.
1// Copyright (c) 2014-2016 The Bitcoin Core developers
2// Distributed under the MIT software license, see the accompanying
3// file COPYING or http://www.opensource.org/licenses/mit-license.php.
4
5#ifndef BITCOIN_CRYPTO_SHA1_H
6#define BITCOIN_CRYPTO_SHA1_H
7
8#include <cstdint>
9#include <cstdlib>
10
12class CSHA1 {
13private:
17
18public:
19 static const size_t OUTPUT_SIZE = 20;
20
21 CSHA1();
22 CSHA1 &Write(const uint8_t *data, size_t len);
23 void Finalize(uint8_t hash[OUTPUT_SIZE]);
24 CSHA1 &Reset();
25};
26
27#endif // BITCOIN_CRYPTO_SHA1_H
A hasher class for SHA1.
Definition sha1.h:12
void Finalize(uint8_t hash[OUTPUT_SIZE])
Definition sha1.cpp:183
uint8_t buf[64]
Definition sha1.h:15
CSHA1 & Write(const uint8_t *data, size_t len)
Definition sha1.cpp:158
static const size_t OUTPUT_SIZE
Definition sha1.h:19
CSHA1 & Reset()
Definition sha1.cpp:196
CSHA1()
Definition sha1.cpp:154
uint64_t bytes
Definition sha1.h:16
uint32_t s[5]
Definition sha1.h:14
T GetRand(T nMax=std::numeric_limits< T >::max()) noexcept
Generate a uniform random integer of type T in the range [0..nMax) nMax defaults to std::numeric_limi...
Definition random.h:85