Merging upstream version 1.25~pre1.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
8062cdcacd
commit
3e4c2fba01
60 changed files with 5261 additions and 1250 deletions
2
md5.h
2
md5.h
|
@ -23,7 +23,7 @@ struct md5_type
|
|||
uint8_t data[16]; // 128-bit md5 digest
|
||||
|
||||
bool operator==( const md5_type & d ) const
|
||||
{ return ( std::memcmp( data, d.data, 16 ) == 0 ); }
|
||||
{ return std::memcmp( data, d.data, 16 ) == 0; }
|
||||
bool operator!=( const md5_type & d ) const { return !( *this == d ); }
|
||||
// const uint8_t & operator[]( const int i ) const { return data[i]; }
|
||||
uint8_t & operator[]( const int i ) { return data[i]; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue