Bitcoin ABC
0.31.0
P2P Digital Currency
Toggle main menu visibility
Main Page
Modules
Namespaces
Namespace List
Namespace Members
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
z
Functions
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
Variables
a
b
c
d
f
g
h
i
k
m
n
o
p
s
t
u
v
w
Typedefs
Enumerations
Enumerator
a
b
c
d
e
h
i
l
m
n
p
q
r
s
t
u
v
w
z
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
!
:
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
~
Variables
!
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
e
f
i
k
l
m
n
o
p
q
r
s
t
u
v
w
Enumerations
a
b
c
d
e
f
m
n
o
r
s
t
u
v
w
Enumerator
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
Properties
Related Functions
:
a
b
c
d
e
f
g
i
o
p
r
s
t
u
v
w
Files
File List
File Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
z
Variables
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
Typedefs
b
c
d
e
h
i
k
l
m
n
p
r
s
t
u
v
Enumerations
b
c
d
e
f
g
h
i
j
m
n
o
p
r
s
t
v
w
Enumerator
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
w
Macros
_
a
b
c
d
e
f
g
h
i
l
m
n
p
q
r
s
t
u
v
w
x
y
Examples
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Modules
Pages
src
crypto
ripemd160.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_RIPEMD160_H
6
#define BITCOIN_CRYPTO_RIPEMD160_H
7
8
#include <cstdint>
9
#include <cstdlib>
10
12
class
CRIPEMD160
{
13
private
:
14
uint32_t
s
[5];
15
uint8_t
buf
[64];
16
uint64_t
bytes
;
17
18
public
:
19
static
const
size_t
OUTPUT_SIZE
= 20;
20
21
CRIPEMD160
();
22
CRIPEMD160
&
Write
(
const
uint8_t *data,
size_t
len);
23
void
Finalize
(uint8_t hash[
OUTPUT_SIZE
]);
24
CRIPEMD160
&
Reset
();
25
};
26
27
#endif
// BITCOIN_CRYPTO_RIPEMD160_H
CRIPEMD160
A hasher class for RIPEMD-160.
Definition:
ripemd160.h:12
CRIPEMD160::Write
CRIPEMD160 & Write(const uint8_t *data, size_t len)
Definition:
ripemd160.cpp:288
CRIPEMD160::Finalize
void Finalize(uint8_t hash[OUTPUT_SIZE])
Definition:
ripemd160.cpp:313
CRIPEMD160::bytes
uint64_t bytes
Definition:
ripemd160.h:16
CRIPEMD160::buf
uint8_t buf[64]
Definition:
ripemd160.h:15
CRIPEMD160::CRIPEMD160
CRIPEMD160()
Definition:
ripemd160.cpp:284
CRIPEMD160::s
uint32_t s[5]
Definition:
ripemd160.h:14
CRIPEMD160::OUTPUT_SIZE
static const size_t OUTPUT_SIZE
Definition:
ripemd160.h:19
CRIPEMD160::Reset
CRIPEMD160 & Reset()
Definition:
ripemd160.cpp:326
Generated on Mon Apr 7 2025 17:20:20 for Bitcoin ABC by
1.9.4