2 Format of colon listings
3 ========================
6 $ gpg --fixed-list-mode --with-colons --list-keys \
7 --with-fingerprint --with-fingerprint wk@gnupg.org
9 pub:f:1024:17:6C7EE1B8621CC013:899817715:1055898235::m:::scESC:
10 fpr:::::::::ECAF7590EB3443B5C7CF3ACB6C7EE1B8621CC013:
11 uid:f::::::::Werner Koch <wk@g10code.com>:
12 uid:f::::::::Werner Koch <wk@gnupg.org>:
13 sub:f:1536:16:06AD222CADF6A6E1:919537416:1036177416:::::e:
14 fpr:::::::::CF8BCC4B18DE08FCD8A1615906AD222CADF6A6E1:
15 sub:r:1536:20:5CE086B5B5A18FF4:899817788:1025961788:::::esc:
16 fpr:::::::::AB059359A3B81F410FCFF97F5CE086B5B5A18FF4:
18 The double --with-fingerprint prints the fingerprint for the subkeys
19 too, --fixed-list-mode is themodern listing way printing dates in
20 seconds since Epoch and does not merge the first userID with the pub
24 1. Field: Type of record
26 crt = X.509 certificate
27 crs = X.509 certificate and private key available
28 sub = subkey (secondary key)
30 ssb = secret subkey (secondary key)
31 uid = user id (only field 10 is used).
32 uat = user attribute (same as user id except for field 10).
34 rev = revocation signature
35 fpr = fingerprint: (fingerprint is in field 10)
36 pkd = public key data (special field format, see below)
37 grp = reserved for gpgsm
39 tru = trust database information
40 spk = signature subpacket
42 2. Field: A letter describing the calculated trust. This is a single
43 letter, but be prepared that additional information may follow
44 in some future versions. (not used for secret keys)
45 o = Unknown (this key is new to the system)
46 i = The key is invalid (e.g. due to a missing self-signature)
47 d = The key has been disabled
48 (deprecated - use the 'D' in field 12 instead)
49 r = The key has been revoked
50 e = The key has expired
51 - = Unknown trust (i.e. no value assigned)
53 '-' and 'q' may safely be treated as the same
54 value for most purposes
55 n = Don't trust this key at all
56 m = There is marginal trust in this key
57 f = The key is fully trusted
58 u = The key is ultimately trusted. This often means
59 that the secret key is available, but any key may
60 be marked as ultimately trusted.
62 3. Field: length of key in bits.
64 4. Field: Algorithm: 1 = RSA
65 16 = Elgamal (encrypt only)
66 17 = DSA (sometimes called DH, sign only)
67 20 = Elgamal (sign and encrypt - don't use them!)
68 (for other id's see include/cipher.h)
72 6. Field: Creation Date (in UTC). For UID and UAT records, this is the
73 self-signature date. Note that the dae is usally printed
74 in seconds since epoch, however, we are migrating to an ISO
75 8601 format (e.g. "19660205T091500"). This is currently
76 only relevant for X.509, A simple way to detect the format
77 is be scannning for the 'T'.
79 7. Field: Key or user ID/user attribute expiration date or empty if none.
81 8. Field: Used for serial number in crt records (used to be the Local-ID).
82 For UID and UAT records, this is a hash of the user ID contents
83 used to represent that exact user ID. For trust signatures,
84 this is the trust depth seperated by the trust value by a
87 9. Field: Ownertrust (primary public keys only)
88 This is a single letter, but be prepared that additional
89 information may follow in some future versions. For trust
90 signatures with a regular expression, this is the regular
91 expression value, quoted as in field 10.
93 10. Field: User-ID. The value is quoted like a C string to avoid
94 control characters (the colon is quoted "\x3a").
95 This is not used with --fixed-list-mode in gpg.
96 A UAT record puts the attribute subpacket count here, a
97 space, and then the total attribute subpacket size.
98 In gpgsm the issuer name comes here
99 An FPR record stores the fingerprint here.
100 The fingerprint of an revocation key is stored here.
102 11. Field: Signature class. This is a 2 digit hexnumber followed by
103 either the letter 'x' for an exportable signature or the
104 letter 'l' for a local-only signature.
105 The class byte of an revocation key is also given here,
106 'x' and 'l' ist used the same way.
108 12. Field: Key capabilities:
113 A key may have any combination of them in any order. In
114 addition to these letters, the primary key has uppercase
115 versions of the letters to denote the _usable_
116 capabilities of the entire key, and a potential letter 'D'
117 to indicate a disabled key.
119 13. Field: Used in FPR records for S/MIME keys to store the
120 fingerprint of the issuer certificate. This is useful to
121 build the certificate path based on certificates stored in
122 the local keyDB; it is only filled if the issuer
123 certificate is available. The root has been reached if
124 this is the same string as the fingerprint. The advantage
125 of using this value is that it is guaranteed to have been
126 been build by the same lookup algorithm as gpgsm uses.
127 For "uid" recods this lists the preferences n the sameway the
129 For "sig" records, this is the fingerprint of the key that
130 issued the signature. Note that this is only filled in if
131 the signature verified correctly. Note also that for
132 various technical reasons, this fingerprint is only
133 available if --no-sig-cache is used.
135 14. Field Flag field used in the --edit menu output:
137 15. Field Used in sec/sbb to print the serial number of a token
138 (internal protect mode 1002) or a '#' if that key is a
139 simple stub (internal protect mode 1001)
141 All dates are displayed in the format yyyy-mm-dd unless you use the
142 option --fixed-list-mode in which case they are displayed as seconds
143 since Epoch. More fields may be added later, so parsers should be
144 prepared for this. When parsing a number the parser should stop at the
145 first non-number character so that additional information can later be
148 If field 1 has the tag "pkd", a listing looks like this:
149 pkd:0:1024:B665B1435F4C2 .... FF26ABB:
151 ! !------ for information number of bits in the value
152 !--------- index (eg. DSA goes from 0 to 3: p,q,g,y)
155 The "tru" trust database records have the fields:
157 2: Reason for staleness of trust. If this field is empty, then the
158 trustdb is not stale. This field may have multiple flags in it:
161 t: Trustdb was built with a different trust model than the one we
165 0: Classic trust model, as used in PGP 2.x.
166 1: PGP trust model, as used in PGP 6 and later. This is the same
167 as the classic trust model, except for the addition of trust
170 GnuPG before version 1.4 used the classic trust model by default.
171 GnuPG 1.4 and later uses the PGP trust model by default.
173 4: Date trustdb was created in seconds since 1/1/1970.
174 5: Date trustdb will expire in seconds since 1/1/1970.
176 The "spk" signature subpacket records have the fields:
178 2: Subpacket number as per RFC-2440 and later.
179 3: Flags in hex. Currently the only two bits assigned are 1, to
180 indicate that the subpacket came from the hashed part of the
181 signature, and 2, to indicate the subpacket was marked critical.
182 4: Length of the subpacket. Note that this is the length of the
183 subpacket, and not the length of field 5 below. Due to the need
184 for %-encoding, the length of field 5 may be up to 3x this value.
185 5: The subpacket data. Printable ASCII is shown as ASCII, but other
186 values are rendered as %XX where XX is the hex value for the byte.
189 Format of the "--status-fd" output
190 ==================================
191 Every line is prefixed with "[GNUPG:] ", followed by a keyword with
192 the type of the status line and a some arguments depending on the
193 type (maybe none); an application should always be prepared to see
194 more arguments in future versions.
198 May be issued right before a signature verification starts. This
199 is useful to define a context for parsing ERROR status
200 messages. No arguments are currently defined.
202 GOODSIG <long_keyid_or_fpr> <username>
203 The signature with the keyid is good. For each signature only
204 one of the three codes GOODSIG, BADSIG or ERRSIG will be
205 emitted and they may be used as a marker for a new signature.
206 The username is the primary one encoded in UTF-8 and %XX
207 escaped. The fingerprint may be used instead of the long keyid
208 if it is available. This is the case with CMS and might
209 eventually also be available for OpenPGP.
211 EXPSIG <long_keyid_or_fpr> <username>
212 The signature with the keyid is good, but the signature is
213 expired. The username is the primary one encoded in UTF-8 and
214 %XX escaped. The fingerprint may be used instead of the long
215 keyid if it is available. This is the case with CMS and might
216 eventually also be available for OpenPGP.
218 EXPKEYSIG <long_keyid_or_fpr> <username>
219 The signature with the keyid is good, but the signature was
220 made by an expired key. The username is the primary one
221 encoded in UTF-8 and %XX escaped. The fingerprint may be used
222 instead of the long keyid if it is available. This is the
223 case with CMS and might eventually also be available for
226 REVKEYSIG <long_keyid_or_fpr> <username>
227 The signature with the keyid is good, but the signature was
228 made by a revoked key. The username is the primary one encoded
229 in UTF-8 and %XX escaped. The fingerprint may be used instead
230 of the long keyid if it is available. This is the case with
231 CMS and might eventually also be available for OpenPGP.
233 BADSIG <long_keyid_or_fpr> <username>
234 The signature with the keyid has not been verified okay. The
235 username is the primary one encoded in UTF-8 and %XX
236 escaped. The fingerprint may be used instead of the long keyid
237 if it is available. This is the case with CMS and might
238 eventually also be available for OpenPGP.
240 ERRSIG <long_keyid_or_fpr> <pubkey_algo> <hash_algo> \
241 <sig_class> <timestamp> <rc>
242 It was not possible to check the signature. This may be
243 caused by a missing public key or an unsupported algorithm. A
244 RC of 4 indicates unknown algorithm, a 9 indicates a missing
245 public key. The other fields give more information about this
246 signature. sig_class is a 2 byte hex-value. The fingerprint
247 may be used instead of the long keyid if it is available.
248 This is the case with CMS and might eventually also be
249 available for OpenPGP.
251 Note, that TIMESTAMP may either be a number with seconds since
252 epoch or an ISO 8601 string which can be detected by the
253 presence of the letter 'T' inside.
255 VALIDSIG <fingerprint in hex> <sig_creation_date> <sig-timestamp>
256 <expire-timestamp> <sig-version> <reserved> <pubkey-algo>
257 <hash-algo> <sig-class> [ <primary-key-fpr> ]
259 The signature with the keyid is good. This is the same as
260 GOODSIG but has the fingerprint as the argument. Both status
261 lines are emitted for a good signature. All arguments here
262 are on one long line. sig-timestamp is the signature creation
263 time in seconds after the epoch. expire-timestamp is the
264 signature expiration time in seconds after the epoch (zero
265 means "does not expire"). sig-version, pubkey-algo, hash-algo,
266 and sig-class (a 2-byte hex value) are all straight from the
267 signature packet. PRIMARY-KEY-FPR is the fingerprint of the
268 primary key or identical to the first argument. This is
269 useful to get back to the primary key without running gpg
270 again for this purpose.
272 The primary-key-fpr parameter is used for OpenPGP and not
273 available for CMS signatures. The sig-version as well as the
274 sig class is not defined for CMS and currently set to 0 and 00.
276 Note, that *-TIMESTAMP may either be a number with seconds
277 since epoch or an ISO 8601 string which can be detected by the
278 presence of the letter 'T' inside.
280 SIG_ID <radix64_string> <sig_creation_date> <sig-timestamp>
281 This is emitted only for signatures of class 0 or 1 which
282 have been verified okay. The string is a signature id
283 and may be used in applications to detect replay attacks
284 of signed messages. Note that only DLP algorithms give
285 unique ids - others may yield duplicated ones when they
286 have been created in the same second.
288 Note, that SIG-TIMESTAMP may either be a number with seconds
289 since epoch or an ISO 8601 string which can be detected by the
290 presence of the letter 'T' inside.
293 ENC_TO <long keyid> <keytype> <keylength>
294 The message is encrypted to this keyid.
295 keytype is the numerical value of the public key algorithm,
296 keylength is the length of the key or 0 if it is not known
297 (which is currently always the case).
300 No data has been found. Codes for what are:
302 2 - Expected a packet but did not found one.
303 3 - Invalid packet found, this may indicate a non OpenPGP
305 4 - signature expected but not found
306 You may see more than one of these status lines.
309 Unexpected data has been encountered
310 0 - not further specified 1
313 TRUST_UNDEFINED <error token>
314 TRUST_NEVER <error token>
315 TRUST_MARGINAL [0 [<validation_model>]]
316 TRUST_FULLY [0 [<validation_model>]]
317 TRUST_ULTIMATE [0 [<validation_model>]]
318 For good signatures one of these status lines are emitted to
319 indicate how trustworthy the signature is. The error token
320 values are currently only emitted by gpgsm. VALIDATION_MODEL
321 describes the algorithm used to check the validity of the key.
322 The default is the standard gpg Web of Trust model respective
323 the standard X.509 model. The defined values are
325 "pgp" for the standard PGP WoT.
326 "shell" for the standard X.509 model.
327 "chain" for the chain model.
330 PKA_TRUST_GOOD <mailbox>
331 PKA_TRUST_BAD <mailbox>
332 Depending on the outcome of the PKA check one of the above
333 status codes is emitted in addition to a TRUST_* status.
334 Without PKA info available or
337 This is deprecated in favor of KEYEXPIRED.
339 KEYEXPIRED <expire-timestamp>
340 The key has expired. expire-timestamp is the expiration time
341 in seconds after the epoch.
343 Note, that TIMESTAMP may either be a number with seconds since
344 epoch or an ISO 8601 string which can be detected by the
345 presence of the letter 'T' inside.
348 The used key has been revoked by its owner. No arguments yet.
351 The ASCII armor is corrupted. No arguments yet.
354 The IDEA algorithms has been used in the data. A
355 program might want to fallback to another program to handle
356 the data if GnuPG failed. This status message used to be emitted
357 also for RSA but this has been dropped after the RSA patent expired.
358 However we can't change the name of the message.
370 NEED_PASSPHRASE <long main keyid> <long keyid> <keytype> <keylength>
371 Issued whenever a passphrase is needed.
372 keytype is the numerical value of the public key algorithm
373 or 0 if this is not applicable, keylength is the length
374 of the key or 0 if it is not known (this is currently always the case).
376 NEED_PASSPHRASE_SYM <cipher_algo> <s2k_mode> <s2k_hash>
377 Issued whenever a passphrase for symmetric encryption is needed.
379 NEED_PASSPHRASE_PIN <card_type> <chvno> [<serialno>]
380 Issued whenever a PIN is requested to unlock a card.
383 No passphrase was supplied. An application which encounters this
384 message may want to stop parsing immediately because the next message
385 will probably be a BAD_PASSPHRASE. However, if the application
386 is a wrapper around the key edit menu functionality it might not
387 make sense to stop parsing but simply ignoring the following
390 BAD_PASSPHRASE <long keyid>
391 The supplied passphrase was wrong or not given. In the latter case
392 you may have seen a MISSING_PASSPHRASE.
395 The supplied passphrase was good and the secret key material
399 The symmetric decryption failed - one reason could be a wrong
400 passphrase for a symmetrical encrypted message.
403 The decryption process succeeded. This means, that either the
404 correct secret key has been used or the correct passphrase
405 for a conventional encrypted message was given. The program
406 itself may return an errorcode because it may not be possible to
407 verify a signature for some reasons.
409 NO_PUBKEY <long keyid>
410 NO_SECKEY <long keyid>
411 The key is not available
413 IMPORT_CHECK <long keyid> <fingerprint> <user ID>
414 This status is emitted in interactive mode right before
415 the "import.okay" prompt.
417 IMPORTED <long keyid> <username>
418 The keyid and name of the signature just imported
420 IMPORT_OK <reason> [<fingerprint>]
421 The key with the primary key's FINGERPRINT has been imported.
423 0 := Not actually changed
424 1 := Entirely new key.
428 16 := Contains private key.
429 The flags may be ORed.
431 IMPORT_PROBLEM <reason> [<fingerprint>]
432 Issued for each import failure. Reason codes are:
433 0 := "No specific reason given".
434 1 := "Invalid Certificate".
435 2 := "Issuer Certificate missing".
436 3 := "Certificate Chain too long".
437 4 := "Error storing certificate".
439 IMPORT_RES <count> <no_user_id> <imported> <imported_rsa> <unchanged>
440 <n_uids> <n_subk> <n_sigs> <n_revoc> <sec_read> <sec_imported> <sec_dups> <not_imported>
441 Final statistics on import process (this is one long line)
443 FILE_START <what> <filename>
444 Start processing a file <filename>. <what> indicates the performed
451 Marks the end of a file processing which has been started
456 Mark the start and end of the actual decryption process. These
457 are also emitted when in --list-only mode.
459 BEGIN_ENCRYPTION <mdc_method> <sym_algo>
461 Mark the start and end of the actual encryption process.
464 Mark the start of the actual signing process. This may be used
465 as an indication that all requested secret keys are ready for
468 DELETE_PROBLEM reason_code
469 Deleting a key failed. Reason codes are:
471 2 - Must delete secret key first
472 3 - Ambigious specification
474 PROGRESS what char cur total
475 Used by the primegen and Public key functions to indicate progress.
476 "char" is the character displayed with no --status-fd enabled, with
477 the linefeed replaced by an 'X'. "cur" is the current amount
478 done and "total" is amount to be done; a "total" of 0 indicates that
479 the total amount is not known. 100/100 may be used to detect the
481 Well known values for WHAT:
482 "pk_dsa" - DSA key generation
483 "pk_elg" - Elgamal key generation
484 "primegen" - Prime generation
485 "need_entropy" - Waiting for new entropy in the RNG
486 "file:XXX" - processing file XXX
487 (note that current gpg versions leave out the
489 "tick" - generic tick without any special meaning - useful
490 for letting clients know that the server is
492 "starting_agent" - A gpg-agent was started because it is not
496 SIG_CREATED <type> <pubkey algo> <hash algo> <class> <timestamp> <key fpr>
497 A signature has been created using these parameters.
501 (only the first character should be checked)
502 class: 2 hex digits with the signature class
504 Note, that TIMESTAMP may either be a number with seconds since
505 epoch or an ISO 8601 string which can be detected by the
506 presence of the letter 'T' inside.
508 KEY_CREATED <type> <fingerprint> [<handle>]
509 A key has been created
510 type: 'B' = primary and subkey
513 The fingerprint is one of the primary key for type B and P and
514 the one of the subkey for S. Handle is an arbitrary
515 non-whitespace string used to match key parameters from batch
518 KEY_NOT_CREATED [<handle>]
519 The key from batch run has not been created due to errors.
522 SESSION_KEY <algo>:<hexdigits>
523 The session key used to decrypt the message. This message will
524 only be emitted when the special option --show-session-key
525 is used. The format is suitable to be passed to the option
526 --override-session-key
529 NOTATION_DATA <string>
530 name and string are %XX escaped; the data may be splitted
531 among several notation_data lines.
533 USERID_HINT <long main keyid> <string>
534 Give a hint about the user ID for a certain keyID.
537 string is %XX escaped
543 INV_RECP <reason> <requested_recipient>
544 Issued for each unusable recipient. The reasons codes
545 currently in use are:
546 0 := "No specific reason given".
548 2 := "Ambigious specification"
549 3 := "Wrong key usage"
554 8 := "Policy mismatch"
555 9 := "Not a secret key"
556 10 := "Key not trusted"
557 11 := "Missing certifciate" (e.g. intermediate or root cert.)
559 Note that this status is also used for gpgsm's SIGNER command
560 where it relates to signer's of course.
563 Issued when no recipients are usable.
565 ALREADY_SIGNED <long-keyid>
566 Warning: This is experimental and might be removed at any time.
569 The output was truncated to MAXNO items. This status code is issued
570 for certain external requests
572 ERROR <error location> <error code> [<more>]
574 This is a generic error status message, it might be followed
575 by error location specific data. <error code> and
576 <error_location> should not contain spaces. The error code is
577 a either a string commencing with a letter or such a string
578 prefixed with a numerical error code and an underscore; e.g.:
581 ATTRIBUTE <fpr> <octets> <type> <index> <count>
582 <timestamp> <expiredate> <flags>
583 This is one long line issued for each attribute subpacket when
584 an attribute packet is seen during key listing. <fpr> is the
585 fingerprint of the key. <octets> is the length of the
586 attribute subpacket. <type> is the attribute type
587 (1==image). <index>/<count> indicates that this is the Nth
588 indexed subpacket of count total subpackets in this attribute
589 packet. <timestamp> and <expiredate> are from the
590 self-signature on the attribute packet. If the attribute
591 packet does not have a valid self-signature, then the
592 timestamp is 0. <flags> are a bitwise OR of:
593 0x01 = this attribute packet is a primary uid
594 0x02 = this attribute packet is revoked
595 0x04 = this attribute packet is expired
597 CARDCTRL <what> [<serialno>]
598 This is used to control smartcard operations.
599 Defined values for WHAT are:
600 1 = Request insertion of a card. Serialnumber may be given
601 to request a specific card.
602 2 = Request removal of a card.
603 3 = Card with serialnumber detected
604 4 = No card available.
605 5 = No card reader available
608 PLAINTEXT <format> <timestamp> <filename>
609 This indicates the format of the plaintext that is about to be
610 written. The format is a 1 byte hex code that shows the
611 format of the plaintext: 62 ('b') is binary data, 74 ('t') is
612 text data with no character set specified, and 75 ('u') is
613 text data encoded in the UTF-8 character set. The timestamp
614 is in seconds since the epoch. If a filename is available it
615 gets printed as the third argument, percent-escaped as usual.
617 PLAINTEXT_LENGTH <length>
618 This indicates the length of the plaintext that is about to be
619 written. Note that if the plaintext packet has partial length
620 encoding it is not possible to know the length ahead of time.
621 In that case, this status tag does not appear.
623 SIG_SUBPACKET <type> <flags> <len> <data>
624 This indicates that a signature subpacket was seen. The
625 format is the same as the "spk" record above.
627 SC_OP_FAILURE [<code>]
628 An operation on a smartcard definitely failed. Currently
629 there is no indication of the actual error code, but
630 application should be prepared to later accept more arguments.
631 Defined values for CODE are:
632 0 - unspecified error (identically to a missing CODE)
637 A smart card operaion succeeded. This status is only printed
638 for certain operation and is mostly useful to check whether a
639 PIN change really worked.
641 BACKUP_KEY_CREATED fingerprint fname
642 A backup key named FNAME has been created for the key with
646 Format of the "--attribute-fd" output
647 =====================================
649 When --attribute-fd is set, during key listings (--list-keys,
650 --list-secret-keys) GnuPG dumps each attribute packet to the file
651 descriptor specified. --attribute-fd is intended for use with
652 --status-fd as part of the required information is carried on the
653 ATTRIBUTE status tag (see above).
655 The contents of the attribute data is specified by 2440bis, but for
656 convenience, here is the Photo ID format, as it is currently the only
659 Byte 0-1: The length of the image header. Due to a historical
660 accident (i.e. oops!) back in the NAI PGP days, this is
661 a little-endian number. Currently 16 (0x10 0x00).
663 Byte 2: The image header version. Currently 0x01.
665 Byte 3: Encoding format. 0x01 == JPEG.
667 Byte 4-15: Reserved, and currently unused.
669 All other data after this header is raw image (JPEG) data.
672 Format of the "--list-config" output
673 ====================================
675 --list-config outputs information about the GnuPG configuration for
676 the benefit of frontends or other programs that call GnuPG. There are
677 several list-config items, all colon delimited like the rest of the
678 --with-colons output. The first field is always "cfg" to indicate
679 configuration information. The second field is one of (with
682 version: the third field contains the version of GnuPG.
686 pubkey: the third field contains the public key algorithmdcaiphers
687 this version of GnuPG supports, separated by semicolons. The
688 algorithm numbers are as specified in RFC-2440.
690 cfg:pubkey:1;2;3;16;17
692 cipher: the third field contains the symmetric ciphers this version of
693 GnuPG supports, separated by semicolons. The cipher numbers
694 are as specified in RFC-2440.
696 cfg:cipher:2;3;4;7;8;9;10
698 digest: the third field contains the digest (hash) algorithms this
699 version of GnuPG supports, separated by semicolons. The
700 digest numbers are as specified in RFC-2440.
702 cfg:digest:1;2;3;8;9;10
704 compress: the third field contains the compression algorithms this
705 version of GnuPG supports, separated by semicolons. The
706 algorithm numbers are as specified in RFC-2440.
710 group: the third field contains the name of the group, and the fourth
711 field contains the values that the group expands to, separated
714 For example, a group of:
715 group mynames = paige 0x12345678 joe patti
718 cfg:group:mynames:patti;joe;0x12345678;paige
723 Key generation shows progress by printing different characters to
725 "." Last 10 Miller-Rabin tests failed
726 "+" Miller-Rabin test succeeded
727 "!" Reloading the pool with fresh prime numbers
728 "^" Checking a new value for the generator
729 "<" Size of one factor decreased
730 ">" Size of one factor increased
732 The prime number for Elgamal is generated this way:
734 1) Make a prime number q of 160, 200, 240 bits (depending on the keysize)
735 2) Select the length of the other prime factors to be at least the size
736 of q and calculate the number of prime factors needed
737 3) Make a pool of prime numbers, each of the length determined in step 2
738 4) Get a new permutation out of the pool or continue with step 3
739 if we have tested all permutations.
740 5) Calculate a candidate prime p = 2 * q * p[1] * ... * p[n] + 1
741 6) Check that this prime has the correct length (this may change q if
742 it seems not to be possible to make a prime of the desired length)
743 7) Check whether this is a prime using trial divisions and the
745 8) Continue with step 4 if we did not find a prime in step 7.
746 9) Find a generator for that prime.
748 This algorithm is based on Lim and Lee's suggestion from the
749 Crypto '97 proceedings p. 260.
752 Unattended key generation
753 =========================
754 This feature allows unattended generation of keys controlled by a
755 parameter file. To use this feature, you use --gen-key together with
756 --batch and feed the parameters either from stdin or from a file given
759 The format of this file is as follows:
760 o Text only, line length is limited to about 1000 chars.
761 o You must use UTF-8 encoding to specify non-ascii characters.
762 o Empty lines are ignored.
763 o Leading and trailing spaces are ignored.
764 o A hash sign as the first non white space character indicates a comment line.
765 o Control statements are indicated by a leading percent sign, the
766 arguments are separated by white space from the keyword.
767 o Parameters are specified by a keyword, followed by a colon. Arguments
768 are separated by white space.
769 o The first parameter must be "Key-Type", control statements
770 may be placed anywhere.
771 o Key generation takes place when either the end of the parameter file
772 is reached, the next "Key-Type" parameter is encountered or at the
773 control statement "%commit"
774 o Control statements:
778 Suppress actual key generation (useful for syntax checking).
780 Perform the key generation. An implicit commit is done
781 at the next "Key-Type" parameter.
784 Do not write the key to the default or commandline given
785 keyring but to <filename>. This must be given before the first
786 commit to take place, duplicate specification of the same filename
787 is ignored, the last filename before a commit is used.
788 The filename is used until a new filename is used (at commit points)
789 and all keys are written to that file. If a new filename is given,
790 this file is created (and overwrites an existing one).
791 Both control statements must be given.
792 o The order of the parameters does not matter except for "Key-Type"
793 which must be the first parameter. The parameters are only for the
794 generated keyblock and parameters from previous key generations are not
795 used. Some syntactically checks may be performed.
796 The currently defined parameters are:
797 Key-Type: <algo-number>|<algo-string>
798 Starts a new parameter block by giving the type of the
799 primary key. The algorithm must be capable of signing.
800 This is a required parameter.
801 Key-Length: <length-in-bits>
802 Length of the key in bits. Default is 1024.
803 Key-Usage: <usage-list>
804 Space or comma delimited list of key usage, allowed values are
805 "encrypt", "sign", and "auth". This is used to generate the
806 key flags. Please make sure that the algorithm is capable of
807 this usage. Note that OpenPGP requires that all primary keys
808 are capable of certification, so no matter what usage is given
809 here, the "cert" flag will be on. If no Key-Usage is
810 specified, all the allowed usages for that particular
812 Subkey-Type: <algo-number>|<algo-string>
813 This generates a secondary key. Currently only one subkey
815 Subkey-Length: <length-in-bits>
816 Length of the subkey in bits. Default is 1024.
817 Subkey-Usage: <usage-list>
818 Similar to Key-Usage.
820 If you want to specify a passphrase for the secret key,
821 enter it here. Default is not to use any passphrase.
823 Name-Comment: <string>
825 The 3 parts of a key. Remember to use UTF-8 here.
826 If you don't give any of them, no user ID is created.
827 Expire-Date: <iso-date>|(<number>[d|w|m|y])
828 Set the expiration date for the key (and the subkey). It
829 may either be entered in ISO date format (2000-08-15) or as
830 number of days, weeks, month or years. Without a letter days
832 Creation-Date: <iso-date>
833 Set the creation date of the key as stored in the key
834 information and which is also part of the fingerprint
835 calculation. Either a date like "1986-04-26" or a full
836 timestamp like "19860426T042640" may be used. The time is
837 considered to be UTC. If it is not given the current time
839 Preferences: <string>
840 Set the cipher, hash, and compression preference values for
841 this key. This expects the same type of string as "setpref"
843 Revoker: <algo>:<fpr> [sensitive]
844 Add a designated revoker to the generated key. Algo is the
845 public key algorithm of the designated revoker (i.e. RSA=1,
846 DSA=17, etc.) Fpr is the fingerprint of the designated
847 revoker. The optional "sensitive" flag marks the designated
848 revoker as sensitive information. Only v4 keys may be
851 This is an optional parameter only used with the status lines
852 KEY_CREATED and KEY_NOT_CREATED. STRING may be up to 100
853 characters and should not contain spaces. It is useful for
854 batch key generation to associate a key parameter block with a
857 This is an optional parameter that specifies the preferred
858 keyserver URL for the key.
863 %echo Generating a standard key
868 Name-Real: Joe Tester
869 Name-Comment: with stupid passphrase
870 Name-Email: joe@foo.bar
875 # Do a commit here, so that we can later print "done" :-)
879 $ gpg --batch --gen-key foo
881 $ gpg --no-default-keyring --secret-keyring ./foo.sec \
882 --keyring ./foo.pub --list-secret-keys
883 /home/wk/work/gnupg-stable/scratch/foo.sec
884 ------------------------------------------
885 sec 1024D/915A878D 2000-03-09 Joe Tester (with stupid passphrase) <joe@foo.bar>
886 ssb 1024g/8F70E2C0 2000-03-09
890 Layout of the TrustDB
891 =====================
892 The TrustDB is built from fixed length records, where the first byte
893 describes the record type. All numeric values are stored in network
894 byte order. The length of each record is 40 bytes. The first record of
895 the DB is always of type 1 and this is the only record of this type.
897 FIXME: The layout changed, document it here.
901 Unused record, can be reused for any purpose.
905 Version information for this TrustDB. This is always the first
906 record of the DB and the only one with type 1.
908 3 bytes 'gpg' magic value
909 1 byte Version of the TrustDB (2)
910 1 byte marginals needed
911 1 byte completes needed
912 1 byte max_cert_depth
913 The three items are used to check whether the cached
914 validity value from the dir record can be used.
915 1 u32 locked flags [not used]
916 1 u32 timestamp of trustdb creation
917 1 u32 timestamp of last modification which may affect the validity
918 of keys in the trustdb. This value is checked against the
919 validity timestamp in the dir records.
920 1 u32 timestamp of last validation [currently not used]
921 (Used to keep track of the time, when this TrustDB was checked
923 1 u32 record number of keyhashtable [currently not used]
924 1 u32 first free record
925 1 u32 record number of shadow directory hash table [currently not used]
926 It does not make sense to combine this table with the key table
927 because the keyid is not in every case a part of the fingerprint.
928 1 u32 record number of the trusthashtbale
931 Record type 2: (directory record)
933 Informations about a public key certificate.
934 These are static values which are never changed without user interaction.
938 1 u32 LID . (This is simply the record number of this record.)
939 1 u32 List of key-records (the first one is the primary key)
940 1 u32 List of uid-records
944 1 byte maximum validity of all the user ids
945 1 u32 time of last validity check.
946 1 u32 Must check when this time has been reached.
947 (0 = no check required)
950 Record type 3: (key record)
952 Informations about a primary public key.
953 (This is mainly used to lookup a trust record)
958 1 u32 next - next key record
961 1 byte pubkey algorithm
962 1 byte length of the fingerprint (in bytes)
963 20 bytes fingerprint of the public key
964 (This is the value we use to identify a key)
966 Record type 4: (uid record)
968 Informations about a userid
969 We do not store the userid but the hash value of the userid because that
974 1 u32 LID points to the directory record.
975 1 u32 next next userid
976 1 u32 pointer to preference record
977 1 u32 siglist list of valid signatures
979 1 byte validity of the key calculated over this user id
980 20 bytes ripemd160 hash of the username.
983 Record type 5: (pref record)
985 This record type is not anymore used.
989 1 u32 LID; points to the directory record (and not to the uid record!).
990 (or 0 for standard preference record)
992 30 byte preference data
994 Record type 6 (sigrec)
996 Used to keep track of key signatures. Self-signatures are not
997 stored. If a public key is not in the DB, the signature points to
998 a shadow dir record, which in turn has a list of records which
999 might be interested in this key (and the signature record here
1004 1 u32 LID points back to the dir record
1005 1 u32 next next sigrec of this uid or 0 to indicate the
1008 1 u32 Local_id of signatures dir or shadow dir record
1009 1 byte Flag: Bit 0 = checked: Bit 1 is valid (we have a real
1010 directory record for this)
1011 1 = valid is set (but may be revoked)
1015 Record type 8: (shadow directory record)
1017 This record is used to reserve a LID for a public key. We
1018 need this to create the sig records of other keys, even if we
1019 do not yet have the public key of the signature.
1020 This record (the record number to be more precise) will be reused
1021 as the dir record when we import the real public key.
1025 1 u32 LID (This is simply the record number of this record.)
1027 1 byte pubkey algorithm
1029 1 u32 hintlist A list of records which have references to
1030 this key. This is used for fast access to
1031 signature records which are not yet checked.
1032 Note, that this is only a hint and the actual records
1033 may not anymore hold signature records for that key
1034 but that the code cares about this.
1039 Record Type 10 (hash table)
1041 Due to the fact that we use fingerprints to lookup keys, we can
1042 implement quick access by some simple hash methods, and avoid
1043 the overhead of gdbm. A property of fingerprints is that they can be
1044 used directly as hash values. (They can be considered as strong
1046 What we use is a dynamic multilevel architecture, which combines
1047 hashtables, record lists, and linked lists.
1049 This record is a hashtable of 256 entries; a special property
1050 is that all these records are stored consecutively to make one
1051 big table. The hash value is simple the 1st, 2nd, ... byte of
1052 the fingerprint (depending on the indirection level).
1054 When used to hash shadow directory records, a different table is used
1055 and indexed by the keyid.
1059 n u32 recnum; n depends on the record length:
1060 n = (reclen-2)/4 which yields 9 for the current record length
1063 the total number of such record which makes up the table is:
1065 which is 29 for a record length of 40.
1067 To look up a key we use the first byte of the fingerprint to get
1068 the recnum from this hashtable and look up the addressed record:
1069 - If this record is another hashtable, we use 2nd byte
1070 to index this hash table and so on.
1071 - if this record is a hashlist, we walk all entries
1072 until we found one a matching one.
1073 - if this record is a key record, we compare the
1074 fingerprint and to decide whether it is the requested key;
1077 Record type 11 (hash list)
1079 see hash table for an explanation.
1080 This is also used for other purposes.
1084 1 u32 next next hash list record
1085 n times n = (reclen-5)/5
1088 For the current record length of 40, n is 7
1092 Record type 254 (free record)
1094 All these records form a linked list of unused records.
1104 GNUPG uses PGP 2 packet headers and also understands OpenPGP packet header.
1105 There is one enhancement used with the old style packet headers:
1107 CTB bits 10, the "packet-length length bits", have values listed in
1108 the following table:
1110 00 - 1-byte packet-length field
1111 01 - 2-byte packet-length field
1112 10 - 4-byte packet-length field
1113 11 - no packet length supplied, unknown packet length
1115 As indicated in this table, depending on the packet-length length
1116 bits, the remaining 1, 2, 4, or 0 bytes of the packet structure field
1117 are a "packet-length field". The packet-length field is a whole
1118 number field. The value of the packet-length field is defined to be
1119 the value of the whole number field.
1121 A value of 11 is currently used in one place: on compressed data.
1122 That is, a compressed data block currently looks like <A3 01 . . .>,
1123 where <A3>, binary 10 1000 11, is an indefinite-length packet. The
1124 proper interpretation is "until the end of the enclosing structure",
1125 although it should never appear outermost (where the enclosing
1126 structure is a file).
1128 + This will be changed with another version, where the new meaning of
1129 + the value 11 (see below) will also take place.
1131 + A value of 11 for other packets enables a special length encoding,
1132 + which is used in case, where the length of the following packet can
1133 + not be determined prior to writing the packet; especially this will
1134 + be used if large amounts of data are processed in filter mode.
1136 + It works like this: After the CTB (with a length field of 11) a
1137 + marker field is used, which gives the length of the following datablock.
1138 + This is a simple 2 byte field (MSB first) containing the amount of data
1139 + following this field, not including this length field. After this datablock
1140 + another length field follows, which gives the size of the next datablock.
1141 + A value of 0 indicates the end of the packet. The maximum size of a
1142 + data block is limited to 65534, thereby reserving a value of 0xffff for
1143 + future extensions. These length markers must be inserted into the data
1144 + stream just before writing the data out.
1146 + This 2 byte field is large enough, because the application must buffer
1147 + this amount of data to prepend the length marker before writing it out.
1148 + Data block sizes larger than about 32k doesn't make any sense. Note
1149 + that this may also be used for compressed data streams, but we must use
1150 + another packet version to tell the application that it can not assume,
1151 + that this is the last packet.
1154 GNU extensions to the S2K algorithm
1155 ===================================
1156 S2K mode 101 is used to identify these extensions.
1157 After the hash algorithm the 3 bytes "GNU" are used to make
1158 clear that these are extensions for GNU, the next bytes gives the
1159 GNU protection mode - 1000. Defined modes are:
1160 1001 - do not store the secret part at all
1161 1002 - a stub to access smartcards (not used in 1.2.x)
1166 NOTE: This is deprecated and will be removed in future versions.
1168 This mode can be used to perform multiple operations with one call to
1169 gpg. It comes handy in cases where you have to verify a lot of
1170 signatures. Currently we support only detached signatures. This mode
1171 is a kludge to avoid running gpg n daemon mode and using Unix Domain
1172 Sockets to pass the data to it. There is no easy portable way to do
1173 this under Windows, so we use plain old pipes which do work well under
1174 Windows. Because there is no way to signal multiple EOFs in a pipe we
1175 have to embed control commands in the data stream: We distinguish
1176 between a data state and a control state. Initially the system is in
1177 data state but it won't accept any data. Instead it waits for
1178 transition to control state which is done by sending a single '@'
1179 character. While in control state the control command os expected and
1180 this command is just a single byte after which the system falls back
1181 to data state (but does not necesary accept data now). The simplest
1182 control command is a '@' which just inserts this character into the
1185 Here is the format we use for detached signatures:
1186 "@<" - Begin of new stream
1187 "@B" - Detached signature follows.
1188 This emits a control packet (1,'B')
1189 <detached_signature>
1190 "@t" - Signed text follows.
1191 This emits the control packet (2, 'B')
1193 "@." - End of operation. The final control packet forces signature
1195 "@>" - End of stream
1204 * For packet version 3 we calculate the keyids this way:
1205 RSA := low 64 bits of n
1206 ELGAMAL := build a v3 pubkey packet (with CTB 0x99) and calculate
1207 a rmd160 hash value from it. This is used as the
1208 fingerprint and the low 64 bits are the keyid.
1210 * Revocation certificates consist only of the signature packet;
1211 "import" knows how to handle this. The rationale behind it is
1220 Keyserver Message Format
1221 =========================
1223 The keyserver may be contacted by a Unix Domain socket or via TCP.
1225 The format of a request is:
1229 "Content-length:" digits
1233 Where command-tag is
1241 The format of a response is:
1244 "GNUPG/1.0" status-code status-text
1245 "Content-length:" digits
1248 followed by <digits> bytes of data
1253 o 1xx: Informational - Request received, continuing process
1255 o 2xx: Success - The action was successfully received, understood,
1258 o 4xx: Client Error - The request contains bad syntax or cannot be
1261 o 5xx: Server Error - The server failed to fulfill an apparently
1266 Documentation on HKP (the http keyserver protocol):
1268 A minimalistic HTTP server on port 11371 recognizes a GET for /pks/lookup.
1269 The standard http URL encoded query parameters are this (always key=value):
1271 - op=index (like pgp -kv), op=vindex (like pgp -kvv) and op=get (like
1274 - search=<stringlist>. This is a list of words that must occur in the key.
1275 The words are delimited with space, points, @ and so on. The delimiters
1276 are not searched for and the order of the words doesn't matter (but see
1279 - exact=on. This switch tells the hkp server to only report exact matching
1280 keys back. In this case the order and the "delimiters" are important.
1282 - fingerprint=on. Also reports the fingerprints when used with 'index' or
1285 The keyserver also recognizes http-POSTs to /pks/add. Use this to upload
1289 A better way to do this would be a request like:
1291 /pks/lookup/<gnupg_formatierte_user_id>?op=<operation>
1293 This can be implemented using Hurd's translator mechanism.
1294 However, I think the whole key server stuff has to be re-thought;
1295 I have some ideas and probably create a white paper.