Class sha224_engine
Synopsis
#include "breeze/cryptography/sha224.hpp"
class sha224_engine
: public merkle_damgard_engine< 224, 512, big_endian_policy, 32, 256 >
Description
SHA-224 policy class for merkle_damgard_machine
.
Inheritance
Ancestors: merkle_damgard_engine
Methods
init_state | ||
process_block |
Source
Lines 40-47 in breeze/cryptography/sha224.hpp.
class sha224_engine
: public merkle_damgard_engine< 224, 512, big_endian_policy, 32, 256 >
{
public:
static void init_state( state_type & state ) ;
static void process_block( state_type & state,
block_type const & block ) ;
} ;