Bitcoin Core
31.0.0
P2P Digital Currency
Loading...
Searching...
No Matches
src
crypto
sha1.h
Go to the documentation of this file.
1
// Copyright (c) 2014-present 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
12
class
CSHA1
13
{
14
private
:
15
uint32_t
s
[5];
16
unsigned
char
buf
[64];
17
uint64_t
bytes
{0};
18
19
public
:
20
static
const
size_t
OUTPUT_SIZE
= 20;
21
22
CSHA1
();
23
CSHA1
&
Write
(
const
unsigned
char
* data,
size_t
len);
24
void
Finalize
(
unsigned
char
hash[
OUTPUT_SIZE
]);
25
CSHA1
&
Reset
();
26
};
27
28
#endif
// BITCOIN_CRYPTO_SHA1_H
CSHA1
A hasher class for SHA1.
Definition
sha1.h:13
CSHA1::Write
CSHA1 & Write(const unsigned char *data, size_t len)
Definition
sha1.cpp:154
CSHA1::OUTPUT_SIZE
static const size_t OUTPUT_SIZE
Definition
sha1.h:20
CSHA1::Finalize
void Finalize(unsigned char hash[OUTPUT_SIZE])
Definition
sha1.cpp:180
CSHA1::Reset
CSHA1 & Reset()
Definition
sha1.cpp:194
CSHA1::CSHA1
CSHA1()
Definition
sha1.cpp:149
CSHA1::bytes
uint64_t bytes
Definition
sha1.h:17
CSHA1::s
uint32_t s[5]
Definition
sha1.h:15
CSHA1::buf
unsigned char buf[64]
Definition
sha1.h:16
Ticks
constexpr auto Ticks(Dur2 d)
Helper to count the seconds of a duration/time_point.
Definition
time.h:73
Generated on Thu Apr 16 2026 09:42:38 for Bitcoin Core by
1.10.0