1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-06-01 22:28:02 +02:00

sm: Fix regression due to the new ECC cert generation

* sm/certreqgen.c (create_request): Also set SIGKEYLEN.
--

Fixes-commit: ed62b74a17
This commit is contained in:
Werner Koch 2023-01-13 09:43:25 +01:00
parent f2d25b04d7
commit 4d5126349d
No known key found for this signature in database
GPG Key ID: E3FDFF218E45B72B

View File

@ -1420,7 +1420,11 @@ create_request (ctrl_t ctrl,
}
}
else
sigkey = public;
{
sigkey = public;
sigkeylen = publiclen;
sigkeypkalgo = publicpkalgo;
}
do
{