diff options
author | Werner Koch <[email protected]> | 2015-02-23 16:54:05 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2015-02-23 16:54:05 +0000 |
commit | ae09515b9d3aae653b62a32ea5b4a9b9e557fc52 (patch) | |
tree | 162ad1ca241f9ac092a7a9219e7a96732fd43175 /g10/options.h | |
parent | gpg: Skip legacy keys while searching keyrings. (diff) | |
download | gnupg-ae09515b9d3aae653b62a32ea5b4a9b9e557fc52.tar.gz gnupg-ae09515b9d3aae653b62a32ea5b4a9b9e557fc52.zip |
gpg: Add option to print fingerprints in ICAO spelling.
* g10/gpg.c: Add option --with-icao-spelling.
* g10/options.h (struct opt): Add with_icao_spelling.
* g10/keylist.c (print_icao_hexdigit): New.
(print_fingerprint): Print ICAO spelling.
Signed-off-by: Werner Koch <[email protected]>
Diffstat (limited to '')
-rw-r--r-- | g10/options.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/g10/options.h b/g10/options.h index 7b9f36635..a09d3d5d8 100644 --- a/g10/options.h +++ b/g10/options.h @@ -67,6 +67,7 @@ struct int check_sigs; /* check key signatures */ int with_colons; int with_key_data; + int with_icao_spelling; /* Print ICAO spelling with fingerprints. */ int with_fingerprint; /* Option --with-fingerprint active. */ int with_keygrip; /* Option --with-keygrip active. */ int with_secret; /* Option --with-secret active. */ |