Fixed type.

This commit is contained in:
Vincent Richard 2014-01-31 21:53:40 +01:00
parent 64ffcdb456
commit 6d417b1db7

View File

@ -95,8 +95,7 @@ void sha1MessageDigest::update(const string& s)
}
void sha1MessageDigest::update(const byte_t* buffer, const size_t offset,
const unsigned long len)
void sha1MessageDigest::update(const byte_t* buffer, const size_t offset, const size_t len)
{
update(buffer + offset, len);
}