Class sha1_engine
Synopsis
#include "breeze/cryptography/sha1.hpp"
class sha1_engine
: public merkle_damgard_engine< 160, 512, big_endian_policy >
Description
SHA-1 policy class for merkle_damgard_machine
.
Inheritance
Ancestors: merkle_damgard_engine
Methods
init_state | ||
process_block |
Source
Lines 37-44 in breeze/cryptography/sha1.hpp.
class sha1_engine
: public merkle_damgard_engine< 160, 512, big_endian_policy >
{
public:
static void init_state( state_type & state ) ;
static void process_block( state_type & state,
block_type const & block ) ;
} ;