Come ottenere i fingerprint di GnuPG solo per il nome chiave specificato, non per le corrispondenze di sottostringhe?

3

Ho alcune chiavi GnuPG: test, test2, qualche test. Quando invoco gpg --fingerprint test , sono elencati i fingerprint di tutte le chiavi. Quando eseguo gpg --fingerprint test2 , viene stampata solo l'impronta digitale chiave test2. Come posso elencare le impronte digitali solo per la chiave denominata test?

Dalla pagina di manuale di GnuPG

--fingerprint [=names=] List all keys with their fingerprints. This is the same output as --list-keys but with the additional output of a line with the fingerprint. May also be combined with --list-sigs or --check-sigs. If this command is given twice, the fingerprints of all secondary keys are listed too.

    
posta ctomek 16.03.2016 - 09:41
fonte

1 risposta

2

La parte rilevante della documentazione ( man gpg ) è il capitolo "COME SPECIFICARE UN ID UTENTE", praticamente alla fine della pagina di manuale.

La modalità predefinita è la corrispondenza della sottostringa, che è ciò che osservi ( test2 contiene la sottostringa test ).

By substring match.

This is the default mode but applications may want to explicitly indicate this by putting the asterisk in front. Match is not case sensitive.

Heine
*Heine

Vuoi invece utilizzare corrispondenze esatte, in cui hai le opzioni di parole corrispondenti, un indirizzo email o l'intera stringa ID utente in base alle tue esigenze specifiche:

By exact match on OpenPGP user ID.

This is denoted by a leading equal sign. It does not make sense for X.509 certificates.

=Heinrich Heine <[email protected]>

By exact match on an email address.

This is indicated by enclosing the email address in the usual way with left and right angles.

<[email protected]>

By word match.

All words must match exactly (not case sensitive) but can appear in any order in the user ID or a subjects name. Words are any sequences of letters, digits, the under‐ score and all characters with bit 7 set.

+Heinrich Heine duesseldorf
    
risposta data 16.03.2016 - 14:09
fonte

Leggi altre domande sui tag