used boost std types in the function prototypes,
(I thought I had committed this several weeks ago.)
This commit is contained in:
parent
d0a0aee1d9
commit
361fc19909
1 changed files with 2 additions and 2 deletions
|
@ -46,11 +46,11 @@ class MD5 {
|
|||
public:
|
||||
// methods for controlled operation:
|
||||
MD5 (); // simple initializer
|
||||
void update (unsigned char *input, boost::uint32_t input_length);
|
||||
void update (boost::uint8_t *input, boost::uint32_t input_length);
|
||||
void finalize ();
|
||||
|
||||
// methods to acquire finalized result
|
||||
unsigned char *raw_digest (); // digest as a 16-byte binary array
|
||||
boost::uint8_t *raw_digest (); // digest as a 16-byte binary array
|
||||
|
||||
|
||||
private:
|
||||
|
|
Loading…
Add table
Reference in a new issue