Class md5_engine
Synopsis
#include "breeze/cryptography/md5.hpp"
class md5_engine
: public merkle_damgard_engine< 128, 512, little_endian_policy,
32, 128, hashing_count::wraps >
Description
The MD5 policy class for merkle_damgard_machine
.
Inheritance
Ancestors: merkle_damgard_engine
Methods
init_state | ||
process_block |
Source
Lines 35-44 in breeze/cryptography/md5.hpp.
class md5_engine
: public merkle_damgard_engine< 128, 512, little_endian_policy,
32, 128, hashing_count::wraps >
{
public:
static void init_state( state_type & state ) ;
static void process_block( state_type & state,
block_type const & block ) ;
} ;