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