mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
util.hashes: Use defined hash function output lengths.
This commit is contained in:
parent
79dfc716bd
commit
ce764dee87
1 changed files with 3 additions and 3 deletions
|
@ -46,9 +46,9 @@ static int myFunc(lua_State *L) { \
|
|||
return 1; \
|
||||
}
|
||||
|
||||
MAKE_HASH_FUNCTION(Lsha1, SHA1, 20)
|
||||
MAKE_HASH_FUNCTION(Lsha256, SHA256, 32)
|
||||
MAKE_HASH_FUNCTION(Lmd5, MD5, 16)
|
||||
MAKE_HASH_FUNCTION(Lsha1, SHA1, SHA_DIGEST_LENGTH)
|
||||
MAKE_HASH_FUNCTION(Lsha256, SHA256, SHA256_DIGEST_LENGTH)
|
||||
MAKE_HASH_FUNCTION(Lmd5, MD5, MD5_DIGEST_LENGTH)
|
||||
|
||||
static const luaL_Reg Reg[] =
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue