#include <sha224.hpp>
Definition at line 34 of file sha224.hpp.
◆ encoder()
fc::sha224::encoder::encoder |
( |
| ) |
|
◆ ~encoder()
fc::sha224::encoder::~encoder |
( |
| ) |
|
◆ put()
void fc::sha224::encoder::put |
( |
char | c | ) |
|
|
inline |
Definition at line 41 of file sha224.hpp.
void write(const char *d, uint32_t dlen)
◆ reset()
void fc::sha224::encoder::reset |
( |
| ) |
|
Definition at line 53 of file sha224.cpp.
53 {
54 SHA224_Init( &my->ctx);
55 }
◆ result()
sha224 fc::sha224::encoder::result |
( |
| ) |
|
Definition at line 48 of file sha224.cpp.
48 {
50 SHA224_Final((
uint8_t*)h.data(), &my->ctx );
51 return h;
52 }
◆ write()
void fc::sha224::encoder::write |
( |
const char * | d, |
|
|
uint32_t | dlen ) |
Definition at line 45 of file sha224.cpp.
45 {
46 SHA224_Update( &my->ctx, d, dlen);
47 }
The documentation for this class was generated from the following files: