diff options
author | Justus Winter <[email protected]> | 2015-12-04 14:19:07 +0000 |
---|---|---|
committer | Justus Winter <[email protected]> | 2017-05-24 15:01:48 +0000 |
commit | 3ac1a9d3a018816233a855faff059b4e0657a0f1 (patch) | |
tree | 21505b72fe2daf560ec214120612bd2286611fe7 /agent/command.c | |
parent | Register DCO for William L. Thomson Jr. (diff) | |
download | gnupg-3ac1a9d3a018816233a855faff059b4e0657a0f1.tar.gz gnupg-3ac1a9d3a018816233a855faff059b4e0657a0f1.zip |
common: Support different digest algorithms for ssh fingerprints.
* common/ssh-utils.c (get_fingerprint): Add and honor 'algo' parameter.
(ssh_get_fingerprint{,_string}): Likewise.
* common/ssh-utils.h (ssh_get_fingerprint{,_string}): Update prototypes.
* common/t-ssh-utils.c (main): Adapt accordingly.
* agent/command-ssh.c (agent_raw_key_from_file): Likewise.
(ssh_identity_register): Likewise.
* agent/command.c (do_one_keyinfo): Likewise.
* agent/findkey.c (modify_description): Likewise.
--
This lays the foundation to support other algorithms.
GnuPG-bug-id: 2106
Signed-off-by: Justus Winter <[email protected]>
Diffstat (limited to '')
-rw-r--r-- | agent/command.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/agent/command.c b/agent/command.c index df788ef1d..d3708217c 100644 --- a/agent/command.c +++ b/agent/command.c @@ -1201,7 +1201,7 @@ do_one_keyinfo (ctrl_t ctrl, const unsigned char *grip, assuan_context_t ctx, if (!agent_raw_key_from_file (ctrl, grip, &key)) { - ssh_get_fingerprint_string (key, &fpr); + ssh_get_fingerprint_string (key, GCRY_MD_MD5, &fpr); gcry_sexp_release (key); } } |