#include <ripemd160.hpp>
Definition at line 36 of file ripemd160.hpp.
◆ encoder()
fc::ripemd160::encoder::encoder |
( |
| ) |
|
◆ ~encoder()
fc::ripemd160::encoder::~encoder |
( |
| ) |
|
◆ put()
void fc::ripemd160::encoder::put |
( |
char | c | ) |
|
|
inline |
Definition at line 43 of file ripemd160.hpp.
void write(const char *d, uint32_t dlen)
◆ reset()
void fc::ripemd160::encoder::reset |
( |
| ) |
|
Definition at line 69 of file ripemd160.cpp.
69 {
70 RIPEMD160_Init( &my->ctx);
71}
◆ result()
Definition at line 64 of file ripemd160.cpp.
64 {
66 RIPEMD160_Final((
uint8_t*)h.data(), &my->ctx );
67 return h;
68}
◆ write()
void fc::ripemd160::encoder::write |
( |
const char * | d, |
|
|
uint32_t | dlen ) |
Definition at line 61 of file ripemd160.cpp.
61 {
62 RIPEMD160_Update( &my->ctx, d, dlen);
63}
The documentation for this class was generated from the following files: