aboutsummaryrefslogtreecommitdiffstats
path: root/src/lua/lua_rsa.c
Commit message (Collapse)AuthorAgeFilesLines
* [CritFix] Fix ARC-Seal signingJan Schär2024-10-201-0/+4
| | | | | | | | | | | | | | | | | Signing of ARC-Seal headers was recently broken; the created signatures failed to validate. Most likely, this was caused by commit 1e661a2fc6e3, which changed the way signatures are created in lua_rsa_sign_memory without adding the calls to EVP_PKEY_CTX_set_rsa_padding and EVP_PKEY_CTX_set_signature_md needed with the new interface. After fixing this, some existing tests failed, because the test values passed to the hash parameter did not have the correct size for a sha256 hash. I fixed these by adjusting the length of the test values. Additionally, I extended the "RSA sign" unit test to compare the created signature against the expected one. This is possible because RSA signing is deterministic, and should prevent the same bug from occuring again. Fixes: https://github.com/rspamd/rspamd/issues/5173
* [Minor] Use portable macro for old OpenSSLvstakhov-ssl-fixesVsevolod Stakhov2024-09-241-1/+1
|
* [Minor] Another compatibility fixVsevolod Stakhov2024-09-241-2/+9
|
* [Fix] Get rid of EVP_PKEY_CTX_set1_rsa_keygen_pubexpVsevolod Stakhov2024-09-231-7/+0
| | | | OpenSSL uses 65537 by default, no need in explicit set.
* [Minor] Fix some unsafe chmodVsevolod Stakhov2024-09-101-6/+12
|
* Provide OpenSSL 3.0 support for lua_rsa (#5101)Ivan Stakhov2024-08-171-76/+88
| | | | | | | | | | | | | | | | | | | | | | | | | * [Fix] Provide OSSL 3.0 support for lua_rsa (not working) * [Fix] Provide full OpenSSL 3.0 for lua_rsa * [Minor] Little clean up * [Minor] Clean up code from debug * [Test] Replace for fixed size fstring allocation * [Test] Add rsa padding and signature md for pctx * [Test] Little changes * [Fix] Little fix for rsa_sign_memory work correctly * [Minor] Little clean up * [Minor] Small fix * [Minor] Little clean up * [Test] Add signature verification test for rsa2048
* [Rework] Further types conversion (no functional changes)Vsevolod Stakhov2024-03-181-47/+47
|
* [Project] Convert the remainingVsevolod Stakhov2024-03-051-18/+18
|
* [Rework] Use clang-format to unify formatting in all sourcesVsevolod Stakhov2023-07-261-309/+300
| | | | No meaningful changes.
* [Rework] Write dkim keygen tool in luaVsevolod Stakhov2023-04-071-1/+7
|
* [Minor] Allow to save private key in outputVsevolod Stakhov2023-04-071-3/+10
|
* [Minor] Fix openssl invocationVsevolod Stakhov2023-04-071-1/+1
|
* [Feature] Add some missing functions to `lua_rsa` libraryVsevolod Stakhov2023-04-071-1/+122
|
* [Fix] Clear SSL errorsVsevolod Stakhov2021-12-081-2/+3
|
* [Minor] Fix some leaks on error pathsVsevolod Stakhov2021-09-191-2/+4
| | | | Found by: coverity scan
* [Minor] Plug some leaks on error pathsVsevolod Stakhov2021-09-181-0/+2
| | | | Found by: coverity scan
* [Rework] Lua core: Use lightuserdata to index classesVsevolod Stakhov2019-09-161-30/+6
|
* [CritFix] Fix \0 processing when doing RSA signVsevolod Stakhov2018-10-231-4/+6
|
* [Minor] Allow to fold base64 encoding of signaturesVsevolod Stakhov2018-10-231-1/+21
|
* [Minor] Another try to load RSA key from base64Vsevolod Stakhov2018-09-241-8/+19
|
* [Minor] Fix load of the rsa key from base64Vsevolod Stakhov2018-09-241-1/+1
|
* [Fix] Fix lua RSA verify and its testsVsevolod Stakhov2018-03-291-1/+1
|
* [Minor] Fix base64 encoding for signatureVsevolod Stakhov2017-05-281-1/+1
|
* [Feature] Rework lua RSA APIVsevolod Stakhov2017-05-271-154/+189
|
* [Minor] Fix various style issuesVsevolod Stakhov2017-03-231-12/+1
|
* [Feature] Use rspamd specific type checks for userdataVsevolod Stakhov2016-05-051-3/+3
|
* Switch the rest to apache 2Vsevolod Stakhov2016-02-041-21/+12
|
* Reorganize includes to reduce namespace pollution.Vsevolod Stakhov2015-10-081-0/+1
|
* Start miration to the new strings.Vsevolod Stakhov2015-10-061-36/+17
|
* Refactor function names.Vsevolod Stakhov2014-11-291-18/+18
|
* Use modules preload for lua.Vsevolod Stakhov2014-08-251-13/+46
|
* Rework lua function names to avoid ambiguity.Vsevolod Stakhov2014-08-171-11/+11
|
* Unify style without sorting headers.Vsevolod Stakhov2014-07-231-64/+83
|
* Revert "Unify code style."Vsevolod Stakhov2014-07-231-85/+66
| | | | This reverts commit e0483657ff6cf1adc828ccce457814d61fe90a0d.
* Unify code style.Vsevolod Stakhov2014-07-231-66/+85
|
* Add a simple test of rsa utils in lua.Vsevolod Stakhov2013-06-131-35/+325
| | | | | | Support RSA signing in lua_rsa module. Add save function for rsa_signature. Fix test logic for lua modules.
* Fix RSA signature handling.Vsevolod Stakhov2013-06-131-46/+42
|
* Add preliminary API for rsa verify to lua.Vsevolod Stakhov2013-06-121-0/+393