aboutsummaryrefslogtreecommitdiffstats
path: root/scd/app-piv.c
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2020-09-21 12:47:53 +0000
committerWerner Koch <[email protected]>2020-09-21 12:47:53 +0000
commit26da47ae53d51e16ae6867cd419ddbf124a94933 (patch)
tree8c343896aacf1e07c71aabdebb457732bc540b14 /scd/app-piv.c
parentdoc: Some documentation updates. (diff)
downloadgnupg-26da47ae53d51e16ae6867cd419ddbf124a94933.tar.gz
gnupg-26da47ae53d51e16ae6867cd419ddbf124a94933.zip
scd: Extend KEYPAIRINFO with an algorithm string.
* scd/app-openpgp.c (send_keypair_info): Emit the algo string as part of a KEYPAIRINFO. * scd/command.c (do_readkey): Ditto. * scd/app-piv.c (do_readkey): Ditto. * scd/app-nks.c (do_learn_status_core): Ditto. (struct fid_cache_s): Add field algostr. (flush_fid_cache): Release it. (keygripstr_from_pk_file): Fill it and add it to the cache. Use a single exit label. * scd/app-help.c (app_help_get_keygrip_string_pk): Add new arg r_algostr. Change all callers. -- This is helpful so that callers do not need to parse the key for this basic information. Use "scd readkey --info-only" to return the info status line instead of the key material; using just --info returns the info in addition to the key material. Signed-off-by: Werner Koch <[email protected]>
Diffstat (limited to 'scd/app-piv.c')
-rw-r--r--scd/app-piv.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/scd/app-piv.c b/scd/app-piv.c
index 816c909cf..8ab778532 100644
--- a/scd/app-piv.c
+++ b/scd/app-piv.c
@@ -1538,8 +1538,10 @@ do_readkey (app_t app, ctrl_t ctrl, const char *keyrefstr, unsigned int flags,
char keygripstr[KEYGRIP_LEN*2+1];
char idbuf[50];
const char *usage;
+ char *algostr;
- err = app_help_get_keygrip_string_pk (pk, pklen, keygripstr, NULL, NULL);
+ err = app_help_get_keygrip_string_pk (pk, pklen, keygripstr,
+ NULL, NULL, &algostr);
if (err)
{
log_error ("app_help_get_keygrip_string_pk failed: %s\n",
@@ -1553,7 +1555,10 @@ do_readkey (app_t app, ctrl_t ctrl, const char *keyrefstr, unsigned int flags,
keygripstr, strlen (keygripstr),
idbuf, strlen (idbuf),
usage, strlen (usage),
+ "-", (size_t)1,
+ algostr, strlen (algostr),
NULL, (size_t)0);
+ xfree (algostr);
}
if (r_pk && r_pklen)