Commit graph

52 commits

Author SHA1 Message Date
Kim Alvefur
8136aa749a util: Add compat for prosody module name change to C sources 2023-03-17 18:03:07 +01:00
Kim Alvefur
732d5ad8a8 util.hashes: Silence compiler warning about char pointer signedness
Introduced in dbe9781fd278
2023-01-17 15:30:28 +01:00
Matthew Wild
341c8417c2 util.hashes: Add HKDF-HMAC-SHA256/HKDF-HMAC-SHA384
These are needed for PASETO v3.local.
2023-01-13 14:29:08 +00:00
Kim Alvefur
dff4beae02 util-src: Remove Lua 5.1 compat macros
Part of #1600
2022-07-01 21:21:21 +02:00
Kim Alvefur
b1c7b93139 util.hashes: Revert to HMAC() convenience function
Reverts some of 1e41dd0f8353

Seems HMAC() isn't deprecated after all? Must have been at some point
according to #1589

Twice as fast for some reason.
2022-06-24 16:59:54 +02:00
Kim Alvefur
8f3d837cd2 util.hashes: Remove unused constants 2022-06-24 16:49:03 +02:00
Kim Alvefur
452f9e4e2b util.hashes: Remove unused struct
Unused since 9f1c5ae8d70b
2022-06-24 16:12:11 +02:00
Kim Alvefur
9a96021706 util.hashes: Return OpenSSL error messages on failure
With luck, might contain more details than just "failed"
2022-06-24 15:33:04 +02:00
Kim Alvefur
a7567a9055 util.hashes: Add SHA3 bindings 2020-09-10 21:58:24 +02:00
Kim Alvefur
f3d61e3945 util.hashes: Bind BLAKE2 algoritms supported by OpenSSL 2020-09-10 21:58:24 +02:00
Kim Alvefur
9f932f7559 util.hashes: Refactor PBKDF2 to deduplicate code 2020-09-10 21:58:25 +02:00
Kim Alvefur
ae14dc1220 util.hashes: Expose sha224 and sha384 HMAC functions
For completeness and consistency with set of plain hash functions
2020-11-29 17:58:45 +01:00
Kim Alvefur
54f8ca81f4 util.hashes: Refactor HMAC bindings (fixes #1589)
HMAC() is deprecated

As with the regular hash functions, macros like this make it awkward to
apply static analysis and code formatting.
2020-11-29 17:58:30 +01:00
Kim Alvefur
d690f1502a util.hashes: Refactor hash functions to use OpenSSL EVP methods (fix #1698)
MD5() is deprecated, but EVP_md5() is not.

Functions in macros like this make it awkward to apply static analysis
and code formatting.
2020-09-10 21:58:23 +02:00
Kim Alvefur
654fd45546 util.hashes: Expose OpenSSL version 2021-05-12 01:11:15 +02:00
Matthew Wild
5bc8b2a379 Merge 0.11->trunk 2021-05-13 11:17:13 +01:00
Matthew Wild
f5460a5037 util.hashes: Add constant-time string comparison (binding to CRYPTO_memcmp) 2021-05-10 16:24:54 +01:00
Kim Alvefur
701c5f4811 util.hashes: Fix output length of PBKDF2-HMAC-SHA256
Somehow it got SHA1's 20 byte output instead of the proper 32 = 256/8
2020-04-22 21:38:36 +02:00
Emmanuel Gil Peyrot
a149dda0e3 util.*.c: Add static qualifiers everywhere 2019-12-01 20:25:20 +01:00
Kim Alvefur
7ef028d8d4 util.hashes: Use HMAC function provided by OpenSSL (fixes #1345) 2019-04-19 13:12:00 +02:00
Kim Alvefur
40d8e257d8 util-src/*.c: Attach pointer * to name instead of type 2017-02-12 16:42:29 +01:00
Kim Alvefur
0d28378a7a util-src/*.c: Squeeze repeated blank lines 2017-01-23 18:33:35 +01:00
Kim Alvefur
5b10d245e3 util-src: Make C modules assert that the Lua runtime matches what it was compiled for 2017-01-08 14:21:08 +01:00
Kim Alvefur
ddeed6873e util-src/*.c: Invert Lua 5.2 compat to be 5.2+ by default and a macro to support 5.1 2015-04-26 12:38:37 +02:00
Florian Zeitz
4d46c2e866 util-src/*.c: Per convention call luaL_error() as argument to return 2015-04-03 20:30:14 +02:00
Kim Alvefur
e866ef555a util-src/*.c: astyle --indent=tab --brackets=attach --indent-switches --break-blocks --pad-oper --unpad-paren --add-brackets --align-pointer=type --lineend=linux 2015-04-03 19:52:48 +02:00
Kim Alvefur
8affcc3ff7 util-src/*.c: Add macro for compiling with Lua 5.2 2014-09-17 14:30:29 +02:00
Kim Alvefur
4f6f0fe480 util-src/*.c: Use the more concise lua_setfield 2014-09-17 02:23:17 +02:00
Kim Alvefur
c57e98cd7d util-src/*.c: Don't create globals when loaded 2014-09-16 21:56:18 +02:00
Kim Alvefur
a6f6a0568f util.hashes: Silence compiler warning about pointer signedness 2013-08-09 16:03:17 +02:00
Kim Alvefur
22ad7256ba util.hashes: Correct argument order 2013-08-06 14:31:20 +02:00
Waqas Hussain
af2f923773 util.hashes: inttypes.h not available with MS Windows SDK, use MS specific __int32 instead. 2013-05-13 15:52:01 -04:00
Florian Zeitz
b6199cf81a util.hashes, util.sasl.scram: Implement SCRAM-SHA1's Hi in C 2013-04-28 02:28:42 +02:00
Florian Zeitz
1dc0a831cf util.hmac, util.hashes: Implement HMAC functions in C, and move to util.hashes 2013-04-27 17:01:31 +02:00
Kim Alvefur
90d4d6bda8 Backed out changeset 61bc5c52c941
luaL_buffinitsize is only available in Lua 5.2+
2019-04-21 00:59:36 +02:00
Kim Alvefur
165ee3a5ef util.hashes: Allow specifying output key length
This is not needed for SCRAM but PBKDF2 takes this argument.
2019-04-20 15:11:04 +02:00
Kim Alvefur
ffc422e2f6 util.hashes: Add PBKDF2-HMAC-SHA256 2019-01-13 13:59:26 +01:00
Kim Alvefur
5a6c7ae673 util.hashes: Rename PBKDF2 function
It's not SCRAM-specific
2019-01-13 13:57:18 +01:00
Kim Alvefur
86219e2532 util.hashes: Remove now unused hmac() function 2019-04-19 13:24:32 +02:00
Kim Alvefur
5bc034dcf5 util.hashes: Use PBKDF2 from libcrypto 2019-01-13 13:57:14 +01:00
Kim Alvefur
70bbc77e68 Merge 0.11->trunk 2019-04-19 13:21:00 +02:00
Kim Alvefur
e70c9f1828 util.hashes: Remove redundant semicolon 2019-04-19 12:41:38 +02:00
Kim Alvefur
150e5e4aec util.hashes: Add sha224, sha384, sha512 2012-05-10 05:57:24 +02:00
Kim Alvefur
ce764dee87 util.hashes: Use defined hash function output lengths. 2012-05-09 01:26:56 +02:00
Matthew Wild
2bc0606453 Update copyright headers for 2010 2010-03-22 17:06:15 +00:00
Matthew Wild
c80f91dc02 0.3->0.4 2009-03-20 20:16:25 +00:00
Matthew Wild
25d0df0a5b Licensing/version updates for some files (forgot to commit, doh...) 2009-02-02 18:03:18 +00:00
Matthew Wild
72f6ff8408 and the C files too 2008-12-03 14:45:03 +00:00
Waqas Hussain
2fdb13c54d Minor changes to C files (to prevent compiler warnings) 2008-11-27 21:47:13 +05:00
Matthew Wild
1985b40ecf Fix for hashes.c and encodings.c to rename luaopen for util_* 2008-11-26 22:45:33 +00:00