mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-03 22:56:33 +02:00
agent: Allow to use SETHASH for arbitrary data.
* agent/agent.h (struct server_control_s): Add field digest.data. * agent/gpg-agent.c (agent_deinit_default_ctrl): Free that field. * agent/command.c (reset_notify): Ditto. (start_command_handler): ditto. (cmd_sethash): Add new option --inquire. * agent/call-scd.c (agent_card_pksign): For now return an error if inquire mode was used. * agent/command-ssh.c (ssh_handler_sign_request): Make sure digest.data is cleared. * agent/divert-scd.c (divert_pksign): Implement inquire mode. * agent/pksign.c (agent_pksign_do): Ditto. -- This is required to support EdDSA according to RFC8410. GnuPG-bug-id: 4888
This commit is contained in:
parent
b1694987bb
commit
b18fb0264a
7 changed files with 100 additions and 28 deletions
|
@ -2809,6 +2809,8 @@ ssh_handler_sign_request (ctrl_t ctrl, estream_t request, estream_t response)
|
|||
if (!hash_algo)
|
||||
hash_algo = GCRY_MD_SHA1; /* Use the default. */
|
||||
ctrl->digest.algo = hash_algo;
|
||||
xfree (ctrl->digest.data);
|
||||
ctrl->digest.data = NULL;
|
||||
if ((spec.flags & SPEC_FLAG_USE_PKCS1V2))
|
||||
ctrl->digest.raw_value = 0;
|
||||
else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue