summaryrefslogtreecommitdiff
path: root/docs/_static/DETAILS.html
blob: 7b0b9f88573590ef8e81b61e998b51502b06a83c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
               "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<title>GnuPG Details</title>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8"/>
<meta name="title" content="GnuPG Details"/>
<meta name="generator" content="Org-mode"/>
<meta name="generated" content="2013-07-03T09:52+0000"/>
<meta name="author" content="isis"/>
<meta name="description" content=""/>
<meta name="keywords" content=""/>
<style type="text/css">
 <!--/*--><![CDATA[/*><!--*/
  html { font-family: Times, serif; font-size: 12pt; }
  .title  { text-align: center; }
  .todo   { color: red; }
  .done   { color: green; }
  .tag    { background-color: #add8e6; font-weight:normal }
  .target { }
  .timestamp { color: #bebebe; }
  .timestamp-kwd { color: #5f9ea0; }
  .right  {margin-left:auto; margin-right:0px;  text-align:right;}
  .left   {margin-left:0px;  margin-right:auto; text-align:left;}
  .center {margin-left:auto; margin-right:auto; text-align:center;}
  p.verse { margin-left: 3% }
  pre {
	border: 1pt solid #AEBDCC;
	background-color: #F3F5F7;
	padding: 5pt;
	font-family: courier, monospace;
        font-size: 90%;
        overflow:auto;
  }
  table { border-collapse: collapse; }
  td, th { vertical-align: top;  }
  th.right  { text-align:center;  }
  th.left   { text-align:center;   }
  th.center { text-align:center; }
  td.right  { text-align:right;  }
  td.left   { text-align:left;   }
  td.center { text-align:center; }
  dt { font-weight: bold; }
  div.figure { padding: 0.5em; }
  div.figure p { text-align: center; }
  div.inlinetask {
    padding:10px;
    border:2px solid gray;
    margin:10px;
    background: #ffffcc;
  }
  textarea { overflow-x: auto; }
  .linenr { font-size:smaller }
  .code-highlighted {background-color:#ffff00;}
  .org-info-js_info-navigation { border-style:none; }
  #org-info-js_console-label { font-size:10px; font-weight:bold;
                               white-space:nowrap; }
  .org-info-js_search-highlight {background-color:#ffff00; color:#000000;
                                 font-weight:bold; }
  /*]]>*/-->
</style>
<script type="text/javascript">
/*
@licstart  The following is the entire license notice for the
JavaScript code in this tag.

Copyright (C) 2012  Free Software Foundation, Inc.

The JavaScript code in this tag is free software: you can
redistribute it and/or modify it under the terms of the GNU
General Public License (GNU GPL) as published by the Free Software
Foundation, either version 3 of the License, or (at your option)
any later version.  The code is distributed WITHOUT ANY WARRANTY;
without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE.  See the GNU GPL for more details.

As additional permission under GNU GPL version 3 section 7, you
may distribute non-source (e.g., minimized or compacted) forms of
that code without the copy of the GNU GPL normally required by
section 4, provided you include this license notice and a URL
through which recipients can access the Corresponding Source.


@licend  The above is the entire license notice
for the JavaScript code in this tag.
*/
<!--/*--><![CDATA[/*><!--*/
 function CodeHighlightOn(elem, id)
 {
   var target = document.getElementById(id);
   if(null != target) {
     elem.cacheClassElem = elem.className;
     elem.cacheClassTarget = target.className;
     target.className = "code-highlighted";
     elem.className   = "code-highlighted";
   }
 }
 function CodeHighlightOff(elem, id)
 {
   var target = document.getElementById(id);
   if(elem.cacheClassElem)
     elem.className = elem.cacheClassElem;
   if(elem.cacheClassTarget)
     target.className = elem.cacheClassTarget;
 }
/*]]>*///-->
</script>
<script type="text/css" href="./agogo.css" />
</head>
<body>

<div id="preamble">

</div>

<div id="content">
<h1 class="title">GnuPG Details</h1>


<p>
This is the DETAILS file for GnuPG which specifies some internals and
parts of the external API for GPG and GPGSM.
</p>

<div id="table-of-contents">
<h2>Table of Contents</h2>
<div id="text-table-of-contents">
<ul>
<li><a href="#sec-1">1 Format of the colon listings</a>
<ul>
<li><a href="#sec-1-1">1.1 Description of the fields</a>
<ul>
<li><a href="#sec-1-1-1">1.1.1 Field 1 - Type of record</a></li>
<li><a href="#sec-1-1-2">1.1.2 Field 2 - Validity</a></li>
<li><a href="#sec-1-1-3">1.1.3 Field 3 - Key length</a></li>
<li><a href="#sec-1-1-4">1.1.4 Field 4 - Public key algorithm</a></li>
<li><a href="#sec-1-1-5">1.1.5 Field 5 - KeyID</a></li>
<li><a href="#sec-1-1-6">1.1.6 Field 6 - Creation date</a></li>
<li><a href="#sec-1-1-7">1.1.7 Field 7 - Expiration date</a></li>
<li><a href="#sec-1-1-8">1.1.8 Field 8 - Certificate S/N, UID hash, trust signature info</a></li>
<li><a href="#sec-1-1-9">1.1.9 Field 9 -  Ownertrust</a></li>
<li><a href="#sec-1-1-10">1.1.10 Field 10 - User-ID</a></li>
<li><a href="#sec-1-1-11">1.1.11 Field 11 - Signature class</a></li>
<li><a href="#sec-1-1-12">1.1.12 Field 12 - Key capabilities</a></li>
<li><a href="#sec-1-1-13">1.1.13 Field 13 - Issuer certificate fingerprint or other info</a></li>
<li><a href="#sec-1-1-14">1.1.14 Field 14 - Flag field</a></li>
<li><a href="#sec-1-1-15">1.1.15 Field 15 - S/N of a token</a></li>
<li><a href="#sec-1-1-16">1.1.16 Field 16 - Hash algorithm</a></li>
</ul>
</li>
<li><a href="#sec-1-2">1.2 Special fields</a>
<ul>
<li><a href="#sec-1-2-1">1.2.1 PKD - Public key data</a></li>
<li><a href="#sec-1-2-2">1.2.2 TRU - Trust database information</a></li>
<li><a href="#sec-1-2-3">1.2.3 SPK - Signature subpacket records</a></li>
<li><a href="#sec-1-2-4">1.2.4 CFG - Configuration data</a></li>
</ul></li>
</ul>
</li>
<li><a href="#sec-2">2 Format of the &ndash;status-fd output</a>
<ul>
<li><a href="#sec-2-1">2.1 General status codes</a>
<ul>
<li><a href="#sec-2-1-1">2.1.1 NEWSIG</a></li>
<li><a href="#sec-2-1-2">2.1.2 GOODSIG  &lt;long_keyid_or_fpr&gt;  &lt;username&gt;</a></li>
<li><a href="#sec-2-1-3">2.1.3 EXPSIG  &lt;long_keyid_or_fpr&gt;  &lt;username&gt;</a></li>
<li><a href="#sec-2-1-4">2.1.4 EXPKEYSIG  &lt;long_keyid_or_fpr&gt; &lt;username&gt;</a></li>
<li><a href="#sec-2-1-5">2.1.5 REVKEYSIG  &lt;long_keyid_or_fpr&gt;  &lt;username&gt;</a></li>
<li><a href="#sec-2-1-6">2.1.6 BADSIG  &lt;long_keyid_or_fpr&gt;  &lt;username&gt;</a></li>
<li><a href="#sec-2-1-7">2.1.7 ERRSIG  &lt;keyid&gt;  &lt;pkalgo&gt; &lt;hashalgo&gt; &lt;sig_class&gt; &lt;time&gt; &lt;rc&gt;</a></li>
<li><a href="#sec-2-1-8">2.1.8 VALIDSIG &lt;args&gt;</a></li>
<li><a href="#sec-2-1-9">2.1.9 SIG_ID  &lt;radix64_string&gt;  &lt;sig_creation_date&gt;  &lt;sig-timestamp&gt;</a></li>
<li><a href="#sec-2-1-10">2.1.10 ENC_TO  &lt;long_keyid&gt;  &lt;keytype&gt;  &lt;keylength&gt;</a></li>
<li><a href="#sec-2-1-11">2.1.11 BEGIN_DECRYPTION</a></li>
<li><a href="#sec-2-1-12">2.1.12 END_DECRYPTION</a></li>
<li><a href="#sec-2-1-13">2.1.13 DECRYPTION_INFO &lt;mdc_method&gt; &lt;sym_algo&gt;</a></li>
<li><a href="#sec-2-1-14">2.1.14 DECRYPTION_FAILED</a></li>
<li><a href="#sec-2-1-15">2.1.15 DECRYPTION_OKAY</a></li>
<li><a href="#sec-2-1-16">2.1.16 SESSION_KEY &lt;algo&gt;:&lt;hexdigits&gt;</a></li>
<li><a href="#sec-2-1-17">2.1.17 BEGIN_ENCRYPTION  &lt;mdc_method&gt; &lt;sym_algo&gt;</a></li>
<li><a href="#sec-2-1-18">2.1.18 END_ENCRYPTION</a></li>
<li><a href="#sec-2-1-19">2.1.19 FILE_START &lt;what&gt; &lt;filename&gt;</a></li>
<li><a href="#sec-2-1-20">2.1.20 FILE_DONE</a></li>
<li><a href="#sec-2-1-21">2.1.21 BEGIN_SIGNING</a></li>
<li><a href="#sec-2-1-22">2.1.22 ALREADY_SIGNED &lt;long-keyid&gt;</a></li>
<li><a href="#sec-2-1-23">2.1.23 SIG_CREATED &lt;type&gt; &lt;pk_algo&gt; &lt;hash_algo&gt; &lt;class&gt; &lt;timestamp&gt; &lt;keyfpr&gt;</a></li>
<li><a href="#sec-2-1-24">2.1.24 NOTATION_</a></li>
<li><a href="#sec-2-1-25">2.1.25 POLICY_URL &lt;string&gt;</a></li>
<li><a href="#sec-2-1-26">2.1.26 PLAINTEXT &lt;format&gt; &lt;timestamp&gt; &lt;filename&gt;</a></li>
<li><a href="#sec-2-1-27">2.1.27 PLAINTEXT_LENGTH &lt;length&gt;</a></li>
<li><a href="#sec-2-1-28">2.1.28 ATTRIBUTE &lt;arguments&gt;</a></li>
<li><a href="#sec-2-1-29">2.1.29 SIG_SUBPACKET &lt;type&gt; &lt;flags&gt; &lt;len&gt; &lt;data&gt;</a></li>
</ul>
</li>
<li><a href="#sec-2-2">2.2 Key related</a>
<ul>
<li><a href="#sec-2-2-1">2.2.1 INV_RECP, INV_SGNR</a></li>
<li><a href="#sec-2-2-2">2.2.2 NO_RECP &lt;reserved&gt;</a></li>
<li><a href="#sec-2-2-3">2.2.3 NO_SGNR &lt;reserved&gt;</a></li>
<li><a href="#sec-2-2-4">2.2.4 KEYEXPIRED &lt;expire-timestamp&gt;</a></li>
<li><a href="#sec-2-2-5">2.2.5 KEYREVOKED</a></li>
<li><a href="#sec-2-2-6">2.2.6 NO_PUBKEY  &lt;long keyid&gt;</a></li>
<li><a href="#sec-2-2-7">2.2.7 NO_SECKEY  &lt;long keyid&gt;</a></li>
<li><a href="#sec-2-2-8">2.2.8 KEY_CREATED &lt;type&gt; &lt;fingerprint&gt; [&lt;handle&gt;]</a></li>
<li><a href="#sec-2-2-9">2.2.9 KEY_NOT_CREATED [&lt;handle&gt;]</a></li>
<li><a href="#sec-2-2-10">2.2.10 TRUST_</a></li>
<li><a href="#sec-2-2-11">2.2.11 PKA_TRUST_</a></li>
</ul>
</li>
<li><a href="#sec-2-3">2.3 Remote control</a>
<ul>
<li><a href="#sec-2-3-1">2.3.1 GET_BOOL, GET_LINE, GET_HIDDEN, GOT_IT</a></li>
<li><a href="#sec-2-3-2">2.3.2 USERID_HINT &lt;long main keyid&gt; &lt;string&gt;</a></li>
<li><a href="#sec-2-3-3">2.3.3 NEED_PASSPHRASE &lt;long keyid&gt; &lt;long main keyid&gt; &lt;keytype&gt; &lt;keylength&gt;</a></li>
<li><a href="#sec-2-3-4">2.3.4 NEED_PASSPHRASE_SYM &lt;cipher_algo&gt; &lt;s2k_mode&gt; &lt;s2k_hash&gt;</a></li>
<li><a href="#sec-2-3-5">2.3.5 NEED_PASSPHRASE_PIN &lt;card_type&gt; &lt;chvno&gt; [&lt;serialno&gt;]</a></li>
<li><a href="#sec-2-3-6">2.3.6 MISSING_PASSPHRASE</a></li>
<li><a href="#sec-2-3-7">2.3.7 BAD_PASSPHRASE &lt;long keyid&gt;</a></li>
<li><a href="#sec-2-3-8">2.3.8 GOOD_PASSPHRASE</a></li>
</ul>
</li>
<li><a href="#sec-2-4">2.4 Import/Export</a>
<ul>
<li><a href="#sec-2-4-1">2.4.1 IMPORT_CHECK &lt;long keyid&gt; &lt;fingerprint&gt; &lt;user ID&gt;</a></li>
<li><a href="#sec-2-4-2">2.4.2 IMPORTED   &lt;long keyid&gt;  &lt;username&gt;</a></li>
<li><a href="#sec-2-4-3">2.4.3 IMPORT_OK  &lt;reason&gt; [&lt;fingerprint&gt;]</a></li>
<li><a href="#sec-2-4-4">2.4.4 IMPORT_PROBLEM &lt;reason&gt; [&lt;fingerprint&gt;]</a></li>
<li><a href="#sec-2-4-5">2.4.5 IMPORT_RES &lt;args&gt;</a></li>
</ul>
</li>
<li><a href="#sec-2-5">2.5 Smartcard related</a>
<ul>
<li><a href="#sec-2-5-1">2.5.1 CARDCTRL &lt;what&gt; [&lt;serialno&gt;]</a></li>
<li><a href="#sec-2-5-2">2.5.2 SC_OP_FAILURE [&lt;code&gt;]</a></li>
<li><a href="#sec-2-5-3">2.5.3 SC_OP_SUCCESS</a></li>
</ul>
</li>
<li><a href="#sec-2-6">2.6 Miscellaneous status codes</a>
<ul>
<li><a href="#sec-2-6-1">2.6.1 NODATA  &lt;what&gt;</a></li>
<li><a href="#sec-2-6-2">2.6.2 UNEXPECTED &lt;what&gt;</a></li>
<li><a href="#sec-2-6-3">2.6.3 TRUNCATED &lt;maxno&gt;</a></li>
<li><a href="#sec-2-6-4">2.6.4 ERROR &lt;error location&gt; &lt;error code&gt; [&lt;more&gt;]</a></li>
<li><a href="#sec-2-6-5">2.6.5 SUCCESS [&lt;location&gt;]</a></li>
<li><a href="#sec-2-6-6">2.6.6 BADARMOR</a></li>
<li><a href="#sec-2-6-7">2.6.7 DELETE_PROBLEM &lt;reason_code&gt;</a></li>
<li><a href="#sec-2-6-8">2.6.8 PROGRESS &lt;what&gt; &lt;char&gt; &lt;cur&gt; &lt;total&gt;</a></li>
<li><a href="#sec-2-6-9">2.6.9 BACKUP_KEY_CREATED &lt;fingerprint&gt; &lt;fname&gt;</a></li>
<li><a href="#sec-2-6-10">2.6.10 MOUNTPOINT &lt;name&gt;</a></li>
<li><a href="#sec-2-6-11">2.6.11 PINENTRY_LAUNCHED &lt;pid&gt;</a></li>
</ul>
</li>
<li><a href="#sec-2-7">2.7 Obsolete status codes</a>
<ul>
<li><a href="#sec-2-7-1">2.7.1 SIGEXPIRED</a></li>
<li><a href="#sec-2-7-2">2.7.2 RSA_OR_IDEA</a></li>
<li><a href="#sec-2-7-3">2.7.3 SHM_INFO, SHM_GET, SHM_GET_BOOL, SHM_GET_HIDDEN</a></li>
<li><a href="#sec-2-7-4">2.7.4 BEGIN_STREAM, END_STREAM</a></li>
</ul></li>
</ul>
</li>
<li><a href="#sec-3">3 Format of the &ndash;attribute-fd output</a></li>
<li><a href="#sec-4">4 Unattended key generation</a></li>
<li><a href="#sec-5">5 Layout of the TrustDB</a></li>
<li><a href="#sec-6">6 GNU extensions to the S2K algorithm</a></li>
<li><a href="#sec-7">7 Keyserver helper message format</a></li>
<li><a href="#sec-8">8 Object identifiers</a></li>
<li><a href="#sec-9">9 Miscellaneous notes</a>
<ul>
<li><a href="#sec-9-1">9.1 v3 fingerprints</a></li>
<li><a href="#sec-9-2">9.2 Simplified revocation certificates</a></li>
<li><a href="#sec-9-3">9.3 Documentation on HKP (the http keyserver protocol):</a></li>
</ul>
</li>
</ul>
</div>
</div>

<div id="outline-container-1" class="outline-2">
<h2 id="sec-1"><span class="section-number-2">1</span> Format of the colon listings</h2>
<div class="outline-text-2" id="text-1">

<p>  The format is a based on colon separated record, each recods starts
  with a tag string and extends to the end of the line.  Here is an
  example:
</p>


<pre class="example">$ gpg --with-colons --list-keys \
      --with-fingerprint --with-fingerprint wk@gnupg.org
pub:f:1024:17:6C7EE1B8621CC013:899817715:1055898235::m:::scESC:
fpr:::::::::ECAF7590EB3443B5C7CF3ACB6C7EE1B8621CC013:
uid:f::::::::Werner Koch &lt;wk@g10code.com&gt;:
uid:f::::::::Werner Koch &lt;wk@gnupg.org&gt;:
sub:f:1536:16:06AD222CADF6A6E1:919537416:1036177416:::::e:
fpr:::::::::CF8BCC4B18DE08FCD8A1615906AD222CADF6A6E1:
sub:r:1536:20:5CE086B5B5A18FF4:899817788:1025961788:::::esc:
fpr:::::::::AB059359A3B81F410FCFF97F5CE086B5B5A18FF4:
</pre>


<p>
The double <code>--with-fingerprint</code> prints the fingerprint for the subkeys
too.  Old versions of gpg used a lighly different format and required
the use of the option <code>--fixed-list-mode</code> to conform to format
described here.
</p>

</div>

<div id="outline-container-1-1" class="outline-3">
<h3 id="sec-1-1"><span class="section-number-3">1.1</span> Description of the fields</h3>
<div class="outline-text-3" id="text-1-1">


</div>

<div id="outline-container-1-1-1" class="outline-4">
<h4 id="sec-1-1-1"><span class="section-number-4">1.1.1</span> Field 1 - Type of record</h4>
<div class="outline-text-4" id="text-1-1-1">


<dl>
<dt>pub</dt><dd>Public key
</dd>
<dt>crt</dt><dd>X.509 certificate
</dd>
<dt>crs</dt><dd>X.509 certificate and private key available
</dd>
<dt>sub</dt><dd>Subkey (secondary key)
</dd>
<dt>sec</dt><dd>Secret key
</dd>
<dt>ssb</dt><dd>Secret subkey (secondary key)
</dd>
<dt>uid</dt><dd>User id (only field 10 is used).
</dd>
<dt>uat</dt><dd>User attribute (same as user id except for field 10).
</dd>
<dt>sig</dt><dd>Signature
</dd>
<dt>rev</dt><dd>Revocation signature
</dd>
<dt>fpr</dt><dd>Fingerprint (fingerprint is in field 10)
</dd>
<dt>pkd</dt><dd>Public key data [*]
</dd>
<dt>grp</dt><dd>Keygrip
</dd>
<dt>rvk</dt><dd>Revocation key
</dd>
<dt>tru</dt><dd>Trust database information [*]
</dd>
<dt>spk</dt><dd>Signature subpacket [*]
</dd>
<dt>cfg</dt><dd>Configuration data [*]
</dd>
</dl>


<p>
    Records marked with an asterisk are described at <a href="#Special-field-formats">*Special fields</a>.
</p>
</div>

</div>

<div id="outline-container-1-1-2" class="outline-4">
<h4 id="sec-1-1-2"><span class="section-number-4">1.1.2</span> Field 2 - Validity</h4>
<div class="outline-text-4" id="text-1-1-2">


<p>
    This is a letter describing the computed validity of a key.
    Currently this is a single letter, but be prepared that additional
    information may follow in some future versions. Note that GnuPG &lt;
    2.1 does not set this field for secret key listings.
</p>
<dl>
<dt>o</dt><dd>Unknown (this key is new to the system)
</dd>
<dt>i</dt><dd>The key is invalid (e.g. due to a missing self-signature)
</dd>
<dt>d</dt><dd>The key has been disabled
       (deprecated - use the 'D' in field 12 instead)
</dd>
<dt>r</dt><dd>The key has been revoked
</dd>
<dt>e</dt><dd>The key has expired
</dd>
<dt>-</dt><dd>Unknown validity (i.e. no value assigned)
</dd>
<dt>q</dt><dd>Undefined validity.  '-' and 'q' may safely be treated as
           the same value for most purposes
</dd>
<dt>n</dt><dd>The key is not valid
</dd>
<dt>m</dt><dd>The key is marginal valid.
</dd>
<dt>f</dt><dd>The key is fully valid
</dd>
<dt>u</dt><dd>The key is ultimately valid.  This often means that the
           secret key is available, but any key may be marked as
           ultimately valid.
</dd>
<dt>w</dt><dd>The key has a well known private part.
</dd>
<dt>s</dt><dd>The key has special validity.  This means that it might be
           self-signed and expected to be used in the STEED sytem.
</dd>
</dl>


<p>
    If the validity information is given for a UID or UAT record, it
    describes the validity calculated based on this user ID.  If given
    for a key record it describes the validity taken from the best
    rated user ID.
</p>
<p>
    For X.509 certificates a 'u' is used for a trusted root
    certificate (i.e. for the trust anchor) and an 'f' for all other
    valid certificates.
</p>
</div>

</div>

<div id="outline-container-1-1-3" class="outline-4">
<h4 id="sec-1-1-3"><span class="section-number-4">1.1.3</span> Field 3 - Key length</h4>
<div class="outline-text-4" id="text-1-1-3">


<p>
    The length of key in bits.
</p>
</div>

</div>

<div id="outline-container-1-1-4" class="outline-4">
<h4 id="sec-1-1-4"><span class="section-number-4">1.1.4</span> Field 4 - Public key algorithm</h4>
<div class="outline-text-4" id="text-1-1-4">


<p>
    The values here are those from the OpenPGP specs or if they are
    greather than 255 the algorithm ids as used by Libgcrypt.
</p>
</div>

</div>

<div id="outline-container-1-1-5" class="outline-4">
<h4 id="sec-1-1-5"><span class="section-number-4">1.1.5</span> Field 5 - KeyID</h4>
<div class="outline-text-4" id="text-1-1-5">


<p>
    This is the 64 bit keyid as specified by OpenPGP and the last 64
    bit of the SHA-1 fingerprint of an X.509 certifciate.
</p>
</div>

</div>

<div id="outline-container-1-1-6" class="outline-4">
<h4 id="sec-1-1-6"><span class="section-number-4">1.1.6</span> Field 6 - Creation date</h4>
<div class="outline-text-4" id="text-1-1-6">


<p>
    The creation date of the key is given in UTC.  For UID and UAT
    records, this is used for the self-signature date.  Note that the
    date is usally printed in seconds since epoch, however, we are
    migrating to an ISO 8601 format (e.g. "19660205T091500").  This is
    currently only relevant for X.509.  A simple way to detect the new
    format is to scan for the 'T'.  Note that old versions of gpg
    without using the <code>--fixed-list-mode</code> option used a "yyyy-mm-tt"
    format.
</p>
</div>

</div>

<div id="outline-container-1-1-7" class="outline-4">
<h4 id="sec-1-1-7"><span class="section-number-4">1.1.7</span> Field 7 - Expiration date</h4>
<div class="outline-text-4" id="text-1-1-7">


<p>
    Key or UID/UAT expiration date or empty if it does not expire.
</p>
</div>

</div>

<div id="outline-container-1-1-8" class="outline-4">
<h4 id="sec-1-1-8"><span class="section-number-4">1.1.8</span> Field 8 - Certificate S/N, UID hash, trust signature info</h4>
<div class="outline-text-4" id="text-1-1-8">


<p>
    Used for serial number in crt records.  For UID and UAT records,
    this is a hash of the user ID contents used to represent that
    exact user ID.  For trust signatures, this is the trust depth
    seperated by the trust value by a space.
</p>
</div>

</div>

<div id="outline-container-1-1-9" class="outline-4">
<h4 id="sec-1-1-9"><span class="section-number-4">1.1.9</span> Field 9 -  Ownertrust</h4>
<div class="outline-text-4" id="text-1-1-9">


<p>
    This is only used on primary keys.  This is a single letter, but
    be prepared that additional information may follow in future
    versions.  For trust signatures with a regular expression, this is
    the regular expression value, quoted as in field 10.
</p>
</div>

</div>

<div id="outline-container-1-1-10" class="outline-4">
<h4 id="sec-1-1-10"><span class="section-number-4">1.1.10</span> Field 10 - User-ID</h4>
<div class="outline-text-4" id="text-1-1-10">

<p>    The value is quoted like a C string to avoid control characters
    (the colon is quoted <code>\x3a</code>).  For a "pub" record this field is
    not used on &ndash;fixed-list-mode.  A UAT record puts the attribute
    subpacket count here, a space, and then the total attribute
    subpacket size.  In gpgsm the issuer name comes here.  A FPR
    record stores the fingerprint here.  The fingerprint of a
    revocation key is stored here.
</p></div>

</div>

<div id="outline-container-1-1-11" class="outline-4">
<h4 id="sec-1-1-11"><span class="section-number-4">1.1.11</span> Field 11 - Signature class</h4>
<div class="outline-text-4" id="text-1-1-11">


<p>
    Signature class as per RFC-4880.  This is a 2 digit hexnumber
    followed by either the letter 'x' for an exportable signature or
    the letter 'l' for a local-only signature.  The class byte of an
    revocation key is also given here, 'x' and 'l' is used the same
    way.  This field if not used for X.509.
</p>
</div>

</div>

<div id="outline-container-1-1-12" class="outline-4">
<h4 id="sec-1-1-12"><span class="section-number-4">1.1.12</span> Field 12 - Key capabilities</h4>
<div class="outline-text-4" id="text-1-1-12">


<p>
    The defined capabilities are:
</p>
<dl>
<dt>e</dt><dd>Encrypt
</dd>
<dt>s</dt><dd>Sign
</dd>
<dt>c</dt><dd>Certify
</dd>
<dt>a</dt><dd>Authentication
</dd>
<dt>?</dt><dd>Unknown capability
</dd>
</dl>


<p>
    A key may have any combination of them in any order.  In addition
    to these letters, the primary key has uppercase versions of the
    letters to denote the <span style="text-decoration:underline;">usable</span> capabilities of the entire key, and
    a potential letter 'D' to indicate a disabled key.
</p>
</div>

</div>

<div id="outline-container-1-1-13" class="outline-4">
<h4 id="sec-1-1-13"><span class="section-number-4">1.1.13</span> Field 13 - Issuer certificate fingerprint or other info</h4>
<div class="outline-text-4" id="text-1-1-13">


<p>
    Used in FPR records for S/MIME keys to store the fingerprint of
    the issuer certificate.  This is useful to build the certificate
    path based on certificates stored in the local key database it is
    only filled if the issuer certificate is available. The root has
    been reached if this is the same string as the fingerprint. The
    advantage of using this value is that it is guaranteed to have
    been been build by the same lookup algorithm as gpgsm uses.
</p>
<p>
    For "uid" records this field lists the preferences in the same way
    gpg's &ndash;edit-key menu does.
</p>
<p>
    For "sig" records, this is the fingerprint of the key that issued
    the signature.  Note that this is only filled in if the signature
    verified correctly.  Note also that for various technical reasons,
    this fingerprint is only available if &ndash;no-sig-cache is used.
</p>
</div>

</div>

<div id="outline-container-1-1-14" class="outline-4">
<h4 id="sec-1-1-14"><span class="section-number-4">1.1.14</span> Field 14 - Flag field</h4>
<div class="outline-text-4" id="text-1-1-14">


<p>
    Flag field used in the &ndash;edit menu output
</p>
</div>

</div>

<div id="outline-container-1-1-15" class="outline-4">
<h4 id="sec-1-1-15"><span class="section-number-4">1.1.15</span> Field 15 - S/N of a token</h4>
<div class="outline-text-4" id="text-1-1-15">


<p>
    Used in sec/sbb to print the serial number of a token (internal
    protect mode 1002) or a '#' if that key is a simple stub (internal
    protect mode 1001)
</p>
</div>

</div>

<div id="outline-container-1-1-16" class="outline-4">
<h4 id="sec-1-1-16"><span class="section-number-4">1.1.16</span> Field 16 - Hash algorithm</h4>
<div class="outline-text-4" id="text-1-1-16">


<p>
    For sig records, this is the used hash algorithm.  For example:
    2 = SHA-1, 8 = SHA-256.
</p>
</div>
</div>

</div>

<div id="outline-container-1-2" class="outline-3">
<h3 id="sec-1-2"><span class="section-number-3">1.2</span> Special fields</h3>
<div class="outline-text-3" id="text-1-2">



</div>

<div id="outline-container-1-2-1" class="outline-4">
<h4 id="sec-1-2-1"><span class="section-number-4">1.2.1</span> PKD - Public key data</h4>
<div class="outline-text-4" id="text-1-2-1">


<p>
    If field 1 has the tag "pkd", a listing looks like this:
</p>


<pre class="example">pkd:0:1024:B665B1435F4C2 .... FF26ABB:
    !  !   !-- the value
    !  !------ for information number of bits in the value
    !--------- index (eg. DSA goes from 0 to 3: p,q,g,y)
</pre>


</div>

</div>

<div id="outline-container-1-2-2" class="outline-4">
<h4 id="sec-1-2-2"><span class="section-number-4">1.2.2</span> TRU - Trust database information</h4>
<div class="outline-text-4" id="text-1-2-2">

<p>    Example for a "tru" trust base record:
</p>


<pre class="example">tru:o:0:1166697654:1:3:1:5
</pre>


<dl>
<dt>Field 2</dt><dd>Reason for staleness of trust.  If this field is
                 empty, then the trustdb is not stale.  This field may
                 have multiple flags in it:

<dl>
<dt>o</dt><dd>Trustdb is old
</dd>
<dt>t</dt><dd>Trustdb was built with a different trust model
                        than the one we are using now.

</dd>
</dl>

</dd>
<dt>Field 3</dt><dd>Trust model

<dl>
<dt>0</dt><dd>Classic trust model, as used in PGP 2.x.
</dd>
<dt>1</dt><dd>PGP trust model, as used in PGP 6 and later.
                        This is the same as the classic trust model,
                        except for the addition of trust signatures.

</dd>
</dl>

<p>                 GnuPG before version 1.4 used the classic trust model
                 by default. GnuPG 1.4 and later uses the PGP trust
                 model by default.
</p>
</dd>
<dt>Field 4</dt><dd>Date trustdb was created in seconds since Epoch.
</dd>
<dt>Field 5</dt><dd>Date trustdb will expire in seconds since Epoch.
</dd>
<dt>Field 6</dt><dd>Number of marginally trusted users to introduce a new
                 key signer (gpg's option &ndash;marginals-needed).
</dd>
<dt>Field 7</dt><dd>Number of completely trusted users to introduce a new
                 key signer.  (gpg's option &ndash;completes-needed)

</dd>
<dt>Field 8</dt><dd>Maximum depth of a certification chain. (gpg's option
                 &ndash;max-cert-depth)
</dd>
</dl>


</div>

</div>

<div id="outline-container-1-2-3" class="outline-4">
<h4 id="sec-1-2-3"><span class="section-number-4">1.2.3</span> SPK - Signature subpacket records</h4>
<div class="outline-text-4" id="text-1-2-3">


<dl>
<dt>Field 2</dt><dd>Subpacket number as per RFC-4880 and later.
</dd>
<dt>Field 3</dt><dd>Flags in hex.  Currently the only two bits assigned
                 are 1, to indicate that the subpacket came from the
                 hashed part of the signature, and 2, to indicate the
                 subpacket was marked critical.
</dd>
<dt>Field 4</dt><dd>Length of the subpacket.  Note that this is the
                 length of the subpacket, and not the length of field
                 5 below.  Due to the need for %-encoding, the length
                 of field 5 may be up to 3x this value.
</dd>
<dt>Field 5</dt><dd>The subpacket data.  Printable ASCII is shown as
                 ASCII, but other values are rendered as %XX where XX
                 is the hex value for the byte.
</dd>
</dl>


</div>

</div>

<div id="outline-container-1-2-4" class="outline-4">
<h4 id="sec-1-2-4"><span class="section-number-4">1.2.4</span> CFG - Configuration data</h4>
<div class="outline-text-4" id="text-1-2-4">


<p>
    &ndash;list-config outputs information about the GnuPG configuration
    for the benefit of frontends or other programs that call GnuPG.
    There are several list-config items, all colon delimited like the
    rest of the &ndash;with-colons output.  The first field is always "cfg"
    to indicate configuration information.  The second field is one of
    (with examples):
</p>
<dl>
<dt>version</dt><dd>The third field contains the version of GnuPG.

<pre class="example">
cfg:version:1.3.5
</pre>


</dd>
<dt>pubkey</dt><dd>The third field contains the public key algorithms
                this version of GnuPG supports, separated by
                semicolons.  The algorithm numbers are as specified in
                RFC-4880.  Note that in contrast to the &ndash;status-fd
                interface these are <span style="text-decoration:underline;">not</span> the Libgcrypt identifiers.

<pre class="example">
cfg:pubkey:1;2;3;16;17
</pre>


</dd>
<dt>cipher</dt><dd>The third field contains the symmetric ciphers this
                version of GnuPG supports, separated by semicolons.
                The cipher numbers are as specified in RFC-4880.

<pre class="example">
cfg:cipher:2;3;4;7;8;9;10
</pre>


</dd>
<dt>digest</dt><dd>The third field contains the digest (hash) algorithms
                this version of GnuPG supports, separated by
                semicolons.  The digest numbers are as specified in
                RFC-4880.

<pre class="example">
cfg:digest:1;2;3;8;9;10
</pre>


</dd>
<dt>compress</dt><dd>The third field contains the compression algorithms
                  this version of GnuPG supports, separated by
                  semicolons.  The algorithm numbers are as specified
                  in RFC-4880.

<pre class="example">
cfg:compress:0;1;2;3
</pre>


</dd>
<dt>group</dt><dd>The third field contains the name of the group, and the
               fourth field contains the values that the group expands
               to, separated by semicolons.

<p>
               For example, a group of:
</p><pre class="example">
group mynames = paige 0x12345678 joe patti
</pre>

<p>               would result in:
</p><pre class="example">
cfg:group:mynames:patti;joe;0x12345678;paige
</pre>

</dd>
</dl>



</div>
</div>
</div>

</div>

<div id="outline-container-2" class="outline-2">
<h2 id="sec-2"><span class="section-number-2">2</span> Format of the &ndash;status-fd output</h2>
<div class="outline-text-2" id="text-2">


<p>
  Every line is prefixed with "[GNUPG:] ", followed by a keyword with
  the type of the status line and some arguments depending on the type
  (maybe none); an application should always be prepared to see more
  arguments in future versions.
</p>

</div>

<div id="outline-container-2-1" class="outline-3">
<h3 id="sec-2-1"><span class="section-number-3">2.1</span> General status codes</h3>
<div class="outline-text-3" id="text-2-1">


</div>

<div id="outline-container-2-1-1" class="outline-4">
<h4 id="sec-2-1-1"><span class="section-number-4">2.1.1</span> NEWSIG</h4>
<div class="outline-text-4" id="text-2-1-1">

<p>    May be issued right before a signature verification starts.  This
    is useful to define a context for parsing ERROR status messages.
    No arguments are currently defined.
</p>
</div>

</div>

<div id="outline-container-2-1-2" class="outline-4">
<h4 id="sec-2-1-2"><span class="section-number-4">2.1.2</span> GOODSIG  &lt;long_keyid_or_fpr&gt;  &lt;username&gt;</h4>
<div class="outline-text-4" id="text-2-1-2">

<p>    The signature with the keyid is good.  For each signature only one
    of the codes GOODSIG, BADSIG, EXPSIG, EXPKEYSIG, REVKEYSIG or
    ERRSIG will be emitted.  In the past they were used as a marker
    for a new signature; new code should use the NEWSIG status
    instead.  The username is the primary one encoded in UTF-8 and %XX
    escaped. The fingerprint may be used instead of the long keyid if
    it is available.  This is the case with CMS and might eventually
    also be available for OpenPGP.
</p>
</div>

</div>

<div id="outline-container-2-1-3" class="outline-4">
<h4 id="sec-2-1-3"><span class="section-number-4">2.1.3</span> EXPSIG  &lt;long_keyid_or_fpr&gt;  &lt;username&gt;</h4>
<div class="outline-text-4" id="text-2-1-3">

<p>    The signature with the keyid is good, but the signature is
    expired. The username is the primary one encoded in UTF-8 and %XX
    escaped. The fingerprint may be used instead of the long keyid if
    it is available.  This is the case with CMS and might eventually
    also be available for OpenPGP.
</p>
</div>

</div>

<div id="outline-container-2-1-4" class="outline-4">
<h4 id="sec-2-1-4"><span class="section-number-4">2.1.4</span> EXPKEYSIG  &lt;long_keyid_or_fpr&gt; &lt;username&gt;</h4>
<div class="outline-text-4" id="text-2-1-4">

<p>    The signature with the keyid is good, but the signature was made
    by an expired key. The username is the primary one encoded in
    UTF-8 and %XX escaped.  The fingerprint may be used instead of the
    long keyid if it is available.  This is the case with CMS and
    might eventually also be available for OpenPGP.
</p>
</div>

</div>

<div id="outline-container-2-1-5" class="outline-4">
<h4 id="sec-2-1-5"><span class="section-number-4">2.1.5</span> REVKEYSIG  &lt;long_keyid_or_fpr&gt;  &lt;username&gt;</h4>
<div class="outline-text-4" id="text-2-1-5">

<p>    The signature with the keyid is good, but the signature was made
    by a revoked key. The username is the primary one encoded in UTF-8
    and %XX escaped. The fingerprint may be used instead of the long
    keyid if it is available.  This is the case with CMS and might
    eventually also beñ available for OpenPGP.
</p>
</div>

</div>

<div id="outline-container-2-1-6" class="outline-4">
<h4 id="sec-2-1-6"><span class="section-number-4">2.1.6</span> BADSIG  &lt;long_keyid_or_fpr&gt;  &lt;username&gt;</h4>
<div class="outline-text-4" id="text-2-1-6">

<p>    The signature with the keyid has not been verified okay.  The
    username is the primary one encoded in UTF-8 and %XX escaped. The
    fingerprint may be used instead of the long keyid if it is
    available.  This is the case with CMS and might eventually also be
    available for OpenPGP.
</p>
</div>

</div>

<div id="outline-container-2-1-7" class="outline-4">
<h4 id="sec-2-1-7"><span class="section-number-4">2.1.7</span> ERRSIG  &lt;keyid&gt;  &lt;pkalgo&gt; &lt;hashalgo&gt; &lt;sig_class&gt; &lt;time&gt; &lt;rc&gt;</h4>
<div class="outline-text-4" id="text-2-1-7">

<p>    It was not possible to check the signature.  This may be caused by
    a missing public key or an unsupported algorithm.  A RC of 4
    indicates unknown algorithm, a 9 indicates a missing public
    key. The other fields give more information about this signature.
    sig_class is a 2 byte hex-value.  The fingerprint may be used
    instead of the keyid if it is available.  This is the case with
    gpgsm and might eventually also be available for OpenPGP.
</p>
<p>
    Note, that TIME may either be the number of seconds since Epoch or
    the letter 'T'.
    an ISO 8601 string.  The latter can be detected by the presence of
</p>
</div>

</div>

<div id="outline-container-2-1-8" class="outline-4">
<h4 id="sec-2-1-8"><span class="section-number-4">2.1.8</span> VALIDSIG &lt;args&gt;</h4>
<div class="outline-text-4" id="text-2-1-8">


<p>
    The args are:
</p>
<ul>
<li>&lt;fingerprint_in_hex&gt;
</li>
<li>&lt;sig_creation_date&gt;
</li>
<li>&lt;sig-timestamp&gt;
</li>
<li>&lt;expire-timestamp&gt;
</li>
<li>&lt;sig-version&gt;
</li>
<li>&lt;reserved&gt;
</li>
<li>&lt;pubkey-algo&gt;
</li>
<li>&lt;hash-algo&gt;
</li>
<li>&lt;sig-class&gt;
</li>
<li>[ &lt;primary-key-fpr&gt; ]
</li>
</ul>


<p>
    This status indicates that the signature is good. This is the same
    as GOODSIG but has the fingerprint as the argument. Both status
    lines are emitted for a good signature.  All arguments here are on
    one long line.  sig-timestamp is the signature creation time in
    seconds after the epoch. expire-timestamp is the signature
    expiration time in seconds after the epoch (zero means "does not
    expire"). sig-version, pubkey-algo, hash-algo, and sig-class (a
    2-byte hex value) are all straight from the signature packet.
    PRIMARY-KEY-FPR is the fingerprint of the primary key or identical
    to the first argument.  This is useful to get back to the primary
    key without running gpg again for this purpose.
</p>
<p>
    The primary-key-fpr parameter is used for OpenPGP and not
    class is not defined for CMS and currently set to 0 and 00.
    available for CMS signatures.  The sig-version as well as the sig
</p>
<p>
    Note, that *-TIMESTAMP may either be a number of seconds since
    Epoch or an ISO 8601 string which can be detected by the presence
    of the letter 'T'.
</p>
</div>

</div>

<div id="outline-container-2-1-9" class="outline-4">
<h4 id="sec-2-1-9"><span class="section-number-4">2.1.9</span> SIG_ID  &lt;radix64_string&gt;  &lt;sig_creation_date&gt;  &lt;sig-timestamp&gt;</h4>
<div class="outline-text-4" id="text-2-1-9">

<p>    This is emitted only for signatures of class 0 or 1 which have
    been verified okay.  The string is a signature id and may be used
    in applications to detect replay attacks of signed messages.  Note
    that only DLP algorithms give unique ids - others may yield
    duplicated ones when they have been created in the same second.
</p>
<p>
    Note, that SIG-TIMESTAMP may either be a number of seconds since
    Epoch or an ISO 8601 string which can be detected by the presence
    of the letter 'T'.
</p>
</div>

</div>

<div id="outline-container-2-1-10" class="outline-4">
<h4 id="sec-2-1-10"><span class="section-number-4">2.1.10</span> ENC_TO  &lt;long_keyid&gt;  &lt;keytype&gt;  &lt;keylength&gt;</h4>
<div class="outline-text-4" id="text-2-1-10">

<p>    The message is encrypted to this LONG_KEYID.  KEYTYPE is the
    numerical value of the public key algorithm or 0 if it is not
    known, KEYLENGTH is the length of the key or 0 if it is not known
    (which is currently always the case).  Gpg prints this line
    always; Gpgsm only if it knows the certificate.
</p>
</div>

</div>

<div id="outline-container-2-1-11" class="outline-4">
<h4 id="sec-2-1-11"><span class="section-number-4">2.1.11</span> BEGIN_DECRYPTION</h4>
<div class="outline-text-4" id="text-2-1-11">

<p>    Mark the start of the actual decryption process.  This is also
    emitted when in &ndash;list-only mode.
</p></div>

</div>

<div id="outline-container-2-1-12" class="outline-4">
<h4 id="sec-2-1-12"><span class="section-number-4">2.1.12</span> END_DECRYPTION</h4>
<div class="outline-text-4" id="text-2-1-12">

<p>    Mark the end of the actual decryption process.  This are also
    emitted when in &ndash;list-only mode.
</p></div>

</div>

<div id="outline-container-2-1-13" class="outline-4">
<h4 id="sec-2-1-13"><span class="section-number-4">2.1.13</span> DECRYPTION_INFO &lt;mdc_method&gt; &lt;sym_algo&gt;</h4>
<div class="outline-text-4" id="text-2-1-13">

<p>    Print information about the symmetric encryption algorithm and the
    MDC method.  This will be emitted even if the decryption fails.
</p>
</div>

</div>

<div id="outline-container-2-1-14" class="outline-4">
<h4 id="sec-2-1-14"><span class="section-number-4">2.1.14</span> DECRYPTION_FAILED</h4>
<div class="outline-text-4" id="text-2-1-14">

<p>    The symmetric decryption failed - one reason could be a wrong
    passphrase for a symmetrical encrypted message.
</p>
</div>

</div>

<div id="outline-container-2-1-15" class="outline-4">
<h4 id="sec-2-1-15"><span class="section-number-4">2.1.15</span> DECRYPTION_OKAY</h4>
<div class="outline-text-4" id="text-2-1-15">

<p>    The decryption process succeeded.  This means, that either the
    correct secret key has been used or the correct passphrase for a
    conventional encrypted message was given.  The program itself may
    return an errorcode because it may not be possible to verify a
    signature for some reasons.
</p>
</div>

</div>

<div id="outline-container-2-1-16" class="outline-4">
<h4 id="sec-2-1-16"><span class="section-number-4">2.1.16</span> SESSION_KEY &lt;algo&gt;:&lt;hexdigits&gt;</h4>
<div class="outline-text-4" id="text-2-1-16">

<p>    The session key used to decrypt the message.  This message will
    only be emitted when the special option &ndash;show-session-key is
    used.  The format is suitable to be passed to the option
    &ndash;override-session-key
</p>
</div>

</div>

<div id="outline-container-2-1-17" class="outline-4">
<h4 id="sec-2-1-17"><span class="section-number-4">2.1.17</span> BEGIN_ENCRYPTION  &lt;mdc_method&gt; &lt;sym_algo&gt;</h4>
<div class="outline-text-4" id="text-2-1-17">

<p>    Mark the start of the actual encryption process.
</p>
</div>

</div>

<div id="outline-container-2-1-18" class="outline-4">
<h4 id="sec-2-1-18"><span class="section-number-4">2.1.18</span> END_ENCRYPTION</h4>
<div class="outline-text-4" id="text-2-1-18">

<p>    Mark the end of the actual encryption process.
</p>
</div>

</div>

<div id="outline-container-2-1-19" class="outline-4">
<h4 id="sec-2-1-19"><span class="section-number-4">2.1.19</span> FILE_START &lt;what&gt; &lt;filename&gt;</h4>
<div class="outline-text-4" id="text-2-1-19">

<p>    Start processing a file &lt;filename&gt;.  &lt;what&gt; indicates the performed
    operation:
</p><dl>
<dt>1</dt><dd>verify
</dd>
<dt>2</dt><dd>encrypt
</dd>
<dt>3</dt><dd>decrypt
</dd>
</dl>


</div>

</div>

<div id="outline-container-2-1-20" class="outline-4">
<h4 id="sec-2-1-20"><span class="section-number-4">2.1.20</span> FILE_DONE</h4>
<div class="outline-text-4" id="text-2-1-20">

<p>    Marks the end of a file processing which has been started
    by FILE_START.
</p>
</div>

</div>

<div id="outline-container-2-1-21" class="outline-4">
<h4 id="sec-2-1-21"><span class="section-number-4">2.1.21</span> BEGIN_SIGNING</h4>
<div class="outline-text-4" id="text-2-1-21">

<p>    Mark the start of the actual signing process. This may be used as
    an indication that all requested secret keys are ready for use.
</p>
</div>

</div>

<div id="outline-container-2-1-22" class="outline-4">
<h4 id="sec-2-1-22"><span class="section-number-4">2.1.22</span> ALREADY_SIGNED &lt;long-keyid&gt;</h4>
<div class="outline-text-4" id="text-2-1-22">

<p>    Warning: This is experimental and might be removed at any time.
</p>
</div>

</div>

<div id="outline-container-2-1-23" class="outline-4">
<h4 id="sec-2-1-23"><span class="section-number-4">2.1.23</span> SIG_CREATED &lt;type&gt; &lt;pk_algo&gt; &lt;hash_algo&gt; &lt;class&gt; &lt;timestamp&gt; &lt;keyfpr&gt;</h4>
<div class="outline-text-4" id="text-2-1-23">

<p>    A signature has been created using these parameters.
    Values for type &lt;type&gt; are:
</p><dl>
<dt>D</dt><dd>detached
</dd>
<dt>C</dt><dd>cleartext
</dd>
<dt>S</dt><dd>standard
</dd>
</dl>

<p>    (only the first character should be checked)
</p>
<p>
    &lt;class&gt; are 2 hex digits with the OpenPGP signature class.
</p>
<p>
    Note, that TIMESTAMP may either be a number of seconds since Epoch
    or an ISO 8601 string which can be detected by the presence of the
    letter 'T'.
</p>
</div>

</div>

<div id="outline-container-2-1-24" class="outline-4">
<h4 id="sec-2-1-24"><span class="section-number-4">2.1.24</span> NOTATION_</h4>
<div class="outline-text-4" id="text-2-1-24">

<p>    There are actually two related status codes to convey notation
    data:
</p>
<ul>
<li>NOTATION_NAME &lt;name&gt;
</li>
<li>NOTATION_DATA &lt;string&gt;
</li>
</ul>


<p>
    &lt;name&gt; and &lt;string&gt; are %XX escaped; the data may be split among
    several NOTATION_DATA lines.
</p>
</div>

</div>

<div id="outline-container-2-1-25" class="outline-4">
<h4 id="sec-2-1-25"><span class="section-number-4">2.1.25</span> POLICY_URL &lt;string&gt;</h4>
<div class="outline-text-4" id="text-2-1-25">

<p>    Note that URL in &lt;string&gt; is %XX escaped.
</p>
</div>

</div>

<div id="outline-container-2-1-26" class="outline-4">
<h4 id="sec-2-1-26"><span class="section-number-4">2.1.26</span> PLAINTEXT &lt;format&gt; &lt;timestamp&gt; &lt;filename&gt;</h4>
<div class="outline-text-4" id="text-2-1-26">

<p>    This indicates the format of the plaintext that is about to be
    written.  The format is a 1 byte hex code that shows the format of
    the plaintext: 62 ('b') is binary data, 74 ('t') is text data with
    no character set specified, and 75 ('u') is text data encoded in
    the UTF-8 character set.  The timestamp is in seconds since the
    epoch.  If a filename is available it gets printed as the third
    argument, percent-escaped as usual.
</p>
</div>

</div>

<div id="outline-container-2-1-27" class="outline-4">
<h4 id="sec-2-1-27"><span class="section-number-4">2.1.27</span> PLAINTEXT_LENGTH &lt;length&gt;</h4>
<div class="outline-text-4" id="text-2-1-27">

<p>    This indicates the length of the plaintext that is about to be
    written.  Note that if the plaintext packet has partial length
    encoding it is not possible to know the length ahead of time.  In
    that case, this status tag does not appear.
</p>
</div>

</div>

<div id="outline-container-2-1-28" class="outline-4">
<h4 id="sec-2-1-28"><span class="section-number-4">2.1.28</span> ATTRIBUTE &lt;arguments&gt;</h4>
<div class="outline-text-4" id="text-2-1-28">

<p>    The list or argemnts are:
</p><ul>
<li>&lt;fpr&gt;
</li>
<li>&lt;octets&gt;
</li>
<li>&lt;type&gt;
</li>
<li>&lt;index&gt;
</li>
<li>&lt;count&gt;
</li>
<li>&lt;timestamp&gt;
</li>
<li>&lt;expiredate&gt;
</li>
<li>&lt;flags&gt;
</li>
</ul>


<p>
    This is one long line issued for each attribute subpacket when an
    attribute packet is seen during key listing.  &lt;fpr&gt; is the
    fingerprint of the key.  &lt;octets&gt; is the length of the attribute
    subpacket.  &lt;type&gt; is the attribute type (e.g. 1 for an image).
    &lt;index&gt; and &lt;count&gt; indicate that this is the N-th indexed
    subpacket of count total subpackets in this attribute packet.
    &lt;timestamp&gt; and &lt;expiredate&gt; are from the self-signature on the
    attribute packet.  If the attribute packet does not have a valid
    self-signature, then the timestamp is 0.  &lt;flags&gt; are a bitwise OR
    of:
</p><dl>
<dt>0x01</dt><dd>this attribute packet is a primary uid
</dd>
<dt>0x02</dt><dd>this attribute packet is revoked
</dd>
<dt>0x04</dt><dd>this attribute packet is expired
</dd>
</dl>


</div>

</div>

<div id="outline-container-2-1-29" class="outline-4">
<h4 id="sec-2-1-29"><span class="section-number-4">2.1.29</span> SIG_SUBPACKET &lt;type&gt; &lt;flags&gt; &lt;len&gt; &lt;data&gt;</h4>
<div class="outline-text-4" id="text-2-1-29">

<p>    This indicates that a signature subpacket was seen.  The format is
    the same as the "spk" record above.
</p>
</div>
</div>

</div>

<div id="outline-container-2-2" class="outline-3">
<h3 id="sec-2-2"><span class="section-number-3">2.2</span> Key related</h3>
<div class="outline-text-3" id="text-2-2">


</div>

<div id="outline-container-2-2-1" class="outline-4">
<h4 id="sec-2-2-1"><span class="section-number-4">2.2.1</span> INV_RECP, INV_SGNR</h4>
<div class="outline-text-4" id="text-2-2-1">

<p>    The two similar status codes:
</p>
<ul>
<li>INV_RECP &lt;reason&gt; &lt;requested_recipient&gt;
</li>
<li>INV_SGNR &lt;reason&gt; &lt;requested_sender&gt;
</li>
</ul>


<p>
    are issued for each unusable recipient/sender. The reasons codes
    currently in use are:
</p>
<dl>
<dt>0</dt><dd>No specific reason given
</dd>
<dt>1</dt><dd>Not Found
</dd>
<dt>2</dt><dd>Ambigious specification
</dd>
<dt>3</dt><dd>Wrong key usage
</dd>
<dt>4</dt><dd>Key revoked
</dd>
<dt>5</dt><dd>Key expired
</dd>
<dt>6</dt><dd>No CRL known
</dd>
<dt>7</dt><dd>CRL too old
</dd>
<dt>8</dt><dd>Policy mismatch
</dd>
<dt>9</dt><dd>Not a secret key
</dd>
<dt>10</dt><dd>Key not trusted
</dd>
<dt>11</dt><dd>Missing certificate
</dd>
<dt>12</dt><dd>Missing issuer certificate
</dd>
</dl>


<p>
    Note that for historical reasons the INV_RECP status is also used
    for gpgsm's SIGNER command where it relates to signer's of course.
    Newer GnuPG versions are using INV_SGNR; applications should
    ignore the INV_RECP during the sender's command processing once
    they have seen an INV_SGNR.  Different codes are used so that they
    can be distinguish while doing an encrypt+sign operation.
</p></div>

</div>

<div id="outline-container-2-2-2" class="outline-4">
<h4 id="sec-2-2-2"><span class="section-number-4">2.2.2</span> NO_RECP &lt;reserved&gt;</h4>
<div class="outline-text-4" id="text-2-2-2">

<p>    Issued if no recipients are usable.
</p>
</div>

</div>

<div id="outline-container-2-2-3" class="outline-4">
<h4 id="sec-2-2-3"><span class="section-number-4">2.2.3</span> NO_SGNR &lt;reserved&gt;</h4>
<div class="outline-text-4" id="text-2-2-3">

<p>    Issued if no senders are usable.
</p>
</div>

</div>

<div id="outline-container-2-2-4" class="outline-4">
<h4 id="sec-2-2-4"><span class="section-number-4">2.2.4</span> KEYEXPIRED &lt;expire-timestamp&gt;</h4>
<div class="outline-text-4" id="text-2-2-4">

<p>    The key has expired.  expire-timestamp is the expiration time in
    seconds since Epoch.  This status line is not very useful because
    it will also be emitted for expired subkeys even if this subkey is
    not used.  To check whether a key used to sign a message has
    expired, the EXPKEYSIG status line is to be used.
</p>
<p>
    Note, that the TIMESTAMP may either be a number of seconds since
    Epoch or an ISO 8601 string which can be detected by the presence
    of the letter 'T'.
</p>
</div>

</div>

<div id="outline-container-2-2-5" class="outline-4">
<h4 id="sec-2-2-5"><span class="section-number-4">2.2.5</span> KEYREVOKED</h4>
<div class="outline-text-4" id="text-2-2-5">

<p>    The used key has been revoked by its owner.  No arguments yet.
</p>
</div>

</div>

<div id="outline-container-2-2-6" class="outline-4">
<h4 id="sec-2-2-6"><span class="section-number-4">2.2.6</span> NO_PUBKEY  &lt;long keyid&gt;</h4>
<div class="outline-text-4" id="text-2-2-6">

<p>    The public key is not available
</p>
</div>

</div>

<div id="outline-container-2-2-7" class="outline-4">
<h4 id="sec-2-2-7"><span class="section-number-4">2.2.7</span> NO_SECKEY  &lt;long keyid&gt;</h4>
<div class="outline-text-4" id="text-2-2-7">

<p>    The secret key is not available
</p>
</div>

</div>

<div id="outline-container-2-2-8" class="outline-4">
<h4 id="sec-2-2-8"><span class="section-number-4">2.2.8</span> KEY_CREATED &lt;type&gt; &lt;fingerprint&gt; [&lt;handle&gt;]</h4>
<div class="outline-text-4" id="text-2-2-8">

<p>    A key has been created.  Values for &lt;type&gt; are:
</p><dl>
<dt>B</dt><dd>primary and subkey
</dd>
<dt>P</dt><dd>primary
</dd>
<dt>S</dt><dd>subkey
</dd>
</dl>

<p>    The fingerprint is one of the primary key for type B and P and the
    one of the subkey for S.  Handle is an arbitrary non-whitespace
    string used to match key parameters from batch key creation run.
</p>
</div>

</div>

<div id="outline-container-2-2-9" class="outline-4">
<h4 id="sec-2-2-9"><span class="section-number-4">2.2.9</span> KEY_NOT_CREATED [&lt;handle&gt;]</h4>
<div class="outline-text-4" id="text-2-2-9">

<p>    The key from batch run has not been created due to errors.
</p>
</div>

</div>

<div id="outline-container-2-2-10" class="outline-4">
<h4 id="sec-2-2-10"><span class="section-number-4">2.2.10</span> TRUST_</h4>
<div class="outline-text-4" id="text-2-2-10">

<p>    These are several similar status codes:
</p>
<ul>
<li>TRUST_UNDEFINED &lt;error_token&gt;
</li>
<li>TRUST_NEVER     &lt;error_token&gt;
</li>
<li>TRUST_MARGINAL  [0  [&lt;validation_model&gt;]]
</li>
<li>TRUST_FULLY     [0  [&lt;validation_model&gt;]]
</li>
<li>TRUST_ULTIMATE  [0  [&lt;validation_model&gt;]]
</li>
</ul>


<p>
    For good signatures one of these status lines are emitted to
    indicate the validity of the key used to create the signature.
    The error token values are currently only emitted by gpgsm.
</p>
<p>
    VALIDATION_MODEL describes the algorithm used to check the
    validity of the key.  The defaults are the standard Web of Trust
    model for gpg and the the standard X.509 model for gpgsm.  The
    defined values are
</p>
<dl>
<dt>pgp  </dt><dd>The standard PGP WoT.
</dd>
<dt>shell</dt><dd>The standard X.509 model.
</dd>
<dt>chain</dt><dd>The chain model.
</dd>
<dt>steed</dt><dd>The STEED model.
</dd>
</dl>


<p>
    Note that the term <code>TRUST_</code> in the status names is used for
    historic reasons; we now speak of validity.
</p>
</div>

</div>

<div id="outline-container-2-2-11" class="outline-4">
<h4 id="sec-2-2-11"><span class="section-number-4">2.2.11</span> PKA_TRUST_</h4>
<div class="outline-text-4" id="text-2-2-11">

<p>    This is is one:
</p>
<ul>
<li>PKA_TRUST_GOOD &lt;mailbox&gt;
</li>
<li>PKA_TRUST_BAD  &lt;mailbox&gt;
</li>
</ul>


<p>
    Depending on the outcome of the PKA check one of the above status
    codes is emitted in addition to a <code>TRUST_*</code> status.
</p>
</div>
</div>

</div>

<div id="outline-container-2-3" class="outline-3">
<h3 id="sec-2-3"><span class="section-number-3">2.3</span> Remote control</h3>
<div class="outline-text-3" id="text-2-3">


</div>

<div id="outline-container-2-3-1" class="outline-4">
<h4 id="sec-2-3-1"><span class="section-number-4">2.3.1</span> GET_BOOL, GET_LINE, GET_HIDDEN, GOT_IT</h4>
<div class="outline-text-4" id="text-2-3-1">


<p>
    These status line are used with &ndash;command-fd for interactive
    control of the process.
</p>
</div>

</div>

<div id="outline-container-2-3-2" class="outline-4">
<h4 id="sec-2-3-2"><span class="section-number-4">2.3.2</span> USERID_HINT &lt;long main keyid&gt; &lt;string&gt;</h4>
<div class="outline-text-4" id="text-2-3-2">

<p>    Give a hint about the user ID for a certain keyID.
</p>
</div>

</div>

<div id="outline-container-2-3-3" class="outline-4">
<h4 id="sec-2-3-3"><span class="section-number-4">2.3.3</span> NEED_PASSPHRASE &lt;long keyid&gt; &lt;long main keyid&gt; &lt;keytype&gt; &lt;keylength&gt;</h4>
<div class="outline-text-4" id="text-2-3-3">

<p>    Issued whenever a passphrase is needed.  KEYTYPE is the numerical
    value of the public key algorithm or 0 if this is not applicable,
    KEYLENGTH is the length of the key or 0 if it is not known (this
    is currently always the case).
</p>
</div>

</div>

<div id="outline-container-2-3-4" class="outline-4">
<h4 id="sec-2-3-4"><span class="section-number-4">2.3.4</span> NEED_PASSPHRASE_SYM &lt;cipher_algo&gt; &lt;s2k_mode&gt; &lt;s2k_hash&gt;</h4>
<div class="outline-text-4" id="text-2-3-4">

<p>    Issued whenever a passphrase for symmetric encryption is needed.
</p>
</div>

</div>

<div id="outline-container-2-3-5" class="outline-4">
<h4 id="sec-2-3-5"><span class="section-number-4">2.3.5</span> NEED_PASSPHRASE_PIN &lt;card_type&gt; &lt;chvno&gt; [&lt;serialno&gt;]</h4>
<div class="outline-text-4" id="text-2-3-5">

<p>    Issued whenever a PIN is requested to unlock a card.
</p>
</div>

</div>

<div id="outline-container-2-3-6" class="outline-4">
<h4 id="sec-2-3-6"><span class="section-number-4">2.3.6</span> MISSING_PASSPHRASE</h4>
<div class="outline-text-4" id="text-2-3-6">

<p>    No passphrase was supplied.  An application which encounters this
    message may want to stop parsing immediately because the next
    message will probably be a BAD_PASSPHRASE.  However, if the
    application is a wrapper around the key edit menu functionality it
    might not make sense to stop parsing but simply ignoring the
    following BAD_PASSPHRASE.
</p>
</div>

</div>

<div id="outline-container-2-3-7" class="outline-4">
<h4 id="sec-2-3-7"><span class="section-number-4">2.3.7</span> BAD_PASSPHRASE &lt;long keyid&gt;</h4>
<div class="outline-text-4" id="text-2-3-7">

<p>    The supplied passphrase was wrong or not given.  In the latter
    case you may have seen a MISSING_PASSPHRASE.
</p>
</div>

</div>

<div id="outline-container-2-3-8" class="outline-4">
<h4 id="sec-2-3-8"><span class="section-number-4">2.3.8</span> GOOD_PASSPHRASE</h4>
<div class="outline-text-4" id="text-2-3-8">

<p>    The supplied passphrase was good and the secret key material
    is therefore usable.
</p>
</div>
</div>

</div>

<div id="outline-container-2-4" class="outline-3">
<h3 id="sec-2-4"><span class="section-number-3">2.4</span> Import/Export</h3>
<div class="outline-text-3" id="text-2-4">


</div>

<div id="outline-container-2-4-1" class="outline-4">
<h4 id="sec-2-4-1"><span class="section-number-4">2.4.1</span> IMPORT_CHECK &lt;long keyid&gt; &lt;fingerprint&gt; &lt;user ID&gt;</h4>
<div class="outline-text-4" id="text-2-4-1">

<p>    This status is emitted in interactive mode right before
    the "import.okay" prompt.
</p>
</div>

</div>

<div id="outline-container-2-4-2" class="outline-4">
<h4 id="sec-2-4-2"><span class="section-number-4">2.4.2</span> IMPORTED   &lt;long keyid&gt;  &lt;username&gt;</h4>
<div class="outline-text-4" id="text-2-4-2">

<p>    The keyid and name of the signature just imported
</p>
</div>

</div>

<div id="outline-container-2-4-3" class="outline-4">
<h4 id="sec-2-4-3"><span class="section-number-4">2.4.3</span> IMPORT_OK  &lt;reason&gt; [&lt;fingerprint&gt;]</h4>
<div class="outline-text-4" id="text-2-4-3">

<p>    The key with the primary key's FINGERPRINT has been imported.
    REASON flags are:
</p>
<dl>
<dt>0</dt><dd>Not actually changed
</dd>
<dt>1</dt><dd>Entirely new key.
</dd>
<dt>2</dt><dd>New user IDs
</dd>
<dt>4</dt><dd>New signatures
</dd>
<dt>8</dt><dd>New subkeys
</dd>
<dt>16</dt><dd>Contains private key.
</dd>
</dl>


<p>
    The flags may be ORed.
</p>
</div>

</div>

<div id="outline-container-2-4-4" class="outline-4">
<h4 id="sec-2-4-4"><span class="section-number-4">2.4.4</span> IMPORT_PROBLEM &lt;reason&gt; [&lt;fingerprint&gt;]</h4>
<div class="outline-text-4" id="text-2-4-4">

<p>    Issued for each import failure.  Reason codes are:
</p>
<dl>
<dt>0</dt><dd>No specific reason given.
</dd>
<dt>1</dt><dd>Invalid Certificate.
</dd>
<dt>2</dt><dd>Issuer Certificate missing.
</dd>
<dt>3</dt><dd>Certificate Chain too long.
</dd>
<dt>4</dt><dd>Error storing certificate.
</dd>
</dl>


</div>

</div>

<div id="outline-container-2-4-5" class="outline-4">
<h4 id="sec-2-4-5"><span class="section-number-4">2.4.5</span> IMPORT_RES &lt;args&gt;</h4>
<div class="outline-text-4" id="text-2-4-5">

<p>    Final statistics on import process (this is one long line). The
    args are a list of unsigned numbers separated by white space:
</p>
<ul>
<li>&lt;count&gt;
</li>
<li>&lt;no_user_id&gt;
</li>
<li>&lt;imported&gt;
</li>
<li>&lt;imported_rsa&gt;
</li>
<li>&lt;unchanged&gt;
</li>
<li>&lt;n_uids&gt;
</li>
<li>&lt;n_subk&gt;
</li>
<li>&lt;n_sigs&gt;
</li>
<li>&lt;n_revoc&gt;
</li>
<li>&lt;sec_read&gt;
</li>
<li>&lt;sec_imported&gt;
</li>
<li>&lt;sec_dups&gt;
</li>
<li>&lt;skipped_new_keys&gt;
</li>
<li>&lt;not_imported&gt;
</li>
</ul>


</div>
</div>

</div>

<div id="outline-container-2-5" class="outline-3">
<h3 id="sec-2-5"><span class="section-number-3">2.5</span> Smartcard related</h3>
<div class="outline-text-3" id="text-2-5">


</div>

<div id="outline-container-2-5-1" class="outline-4">
<h4 id="sec-2-5-1"><span class="section-number-4">2.5.1</span> CARDCTRL &lt;what&gt; [&lt;serialno&gt;]</h4>
<div class="outline-text-4" id="text-2-5-1">

<p>    This is used to control smartcard operations.  Defined values for
    WHAT are:
</p>
<dl>
<dt>1</dt><dd>Request insertion of a card.  Serialnumber may be given
             to request a specific card.  Used by gpg 1.4 w/o
             scdaemon
</dd>
<dt>2</dt><dd>Request removal of a card.  Used by gpg 1.4 w/o scdaemon.
</dd>
<dt>3</dt><dd>Card with serialnumber detected
</dd>
<dt>4</dt><dd>No card available
</dd>
<dt>5</dt><dd>No card reader available
</dd>
<dt>6</dt><dd>No card support available
</dd>
</dl>


</div>

</div>

<div id="outline-container-2-5-2" class="outline-4">
<h4 id="sec-2-5-2"><span class="section-number-4">2.5.2</span> SC_OP_FAILURE [&lt;code&gt;]</h4>
<div class="outline-text-4" id="text-2-5-2">

<p>    An operation on a smartcard definitely failed.  Currently there is
    no indication of the actual error code, but application should be
    prepared to later accept more arguments.  Defined values for
    &lt;code&gt; are:
</p>
<dl>
<dt>0</dt><dd>unspecified error (identically to a missing CODE)
</dd>
<dt>1</dt><dd>canceled
</dd>
<dt>2</dt><dd>bad PIN
</dd>
</dl>


</div>

</div>

<div id="outline-container-2-5-3" class="outline-4">
<h4 id="sec-2-5-3"><span class="section-number-4">2.5.3</span> SC_OP_SUCCESS</h4>
<div class="outline-text-4" id="text-2-5-3">

<p>    A smart card operaion succeeded.  This status is only printed for
    certain operation and is mostly useful to check whether a PIN
    change really worked.
</p>
</div>
</div>

</div>

<div id="outline-container-2-6" class="outline-3">
<h3 id="sec-2-6"><span class="section-number-3">2.6</span> Miscellaneous status codes</h3>
<div class="outline-text-3" id="text-2-6">


</div>

<div id="outline-container-2-6-1" class="outline-4">
<h4 id="sec-2-6-1"><span class="section-number-4">2.6.1</span> NODATA  &lt;what&gt;</h4>
<div class="outline-text-4" id="text-2-6-1">

<p>    No data has been found.  Codes for WHAT are:
</p>
<dl>
<dt>1</dt><dd>No armored data.
</dd>
<dt>2</dt><dd>Expected a packet but did not found one.
</dd>
<dt>3</dt><dd>Invalid packet found, this may indicate a non OpenPGP
           message.
</dd>
<dt>4</dt><dd>Signature expected but not found
</dd>
</dl>


<p>
    You may see more than one of these status lines.
</p>
</div>

</div>

<div id="outline-container-2-6-2" class="outline-4">
<h4 id="sec-2-6-2"><span class="section-number-4">2.6.2</span> UNEXPECTED &lt;what&gt;</h4>
<div class="outline-text-4" id="text-2-6-2">

<p>    Unexpected data has been encountered.  Codes for WHAT are:
</p><dl>
<dt>0</dt><dd>Not further specified
</dd>
</dl>


</div>

</div>

<div id="outline-container-2-6-3" class="outline-4">
<h4 id="sec-2-6-3"><span class="section-number-4">2.6.3</span> TRUNCATED &lt;maxno&gt;</h4>
<div class="outline-text-4" id="text-2-6-3">

<p>    The output was truncated to MAXNO items.  This status code is
    issued for certain external requests.
</p>
</div>

</div>

<div id="outline-container-2-6-4" class="outline-4">
<h4 id="sec-2-6-4"><span class="section-number-4">2.6.4</span> ERROR &lt;error location&gt; &lt;error code&gt; [&lt;more&gt;]</h4>
<div class="outline-text-4" id="text-2-6-4">

<p>    This is a generic error status message, it might be followed by
    error location specific data. &lt;error code&gt; and &lt;error_location&gt;
    should not contain spaces.  The error code is a either a string
    commencing with a letter or such a string prefixed with a
    numerical error code and an underscore; e.g.: "151011327_EOF".
</p>
</div>

</div>

<div id="outline-container-2-6-5" class="outline-4">
<h4 id="sec-2-6-5"><span class="section-number-4">2.6.5</span> SUCCESS [&lt;location&gt;]</h4>
<div class="outline-text-4" id="text-2-6-5">

<p>    Postive confirimation that an operation succeeded.  &lt;location&gt; is
    optional but if given should not contain spaces.  Used only with a
    few commands.
</p>
</div>

</div>

<div id="outline-container-2-6-6" class="outline-4">
<h4 id="sec-2-6-6"><span class="section-number-4">2.6.6</span> BADARMOR</h4>
<div class="outline-text-4" id="text-2-6-6">

<p>    The ASCII armor is corrupted.  No arguments yet.
</p>
</div>

</div>

<div id="outline-container-2-6-7" class="outline-4">
<h4 id="sec-2-6-7"><span class="section-number-4">2.6.7</span> DELETE_PROBLEM &lt;reason_code&gt;</h4>
<div class="outline-text-4" id="text-2-6-7">

<p>    Deleting a key failed.  Reason codes are:
</p><dl>
<dt>1</dt><dd>No such key
</dd>
<dt>2</dt><dd>Must delete secret key first
</dd>
<dt>3</dt><dd>Ambigious specification
</dd>
</dl>


</div>

</div>

<div id="outline-container-2-6-8" class="outline-4">
<h4 id="sec-2-6-8"><span class="section-number-4">2.6.8</span> PROGRESS &lt;what&gt; &lt;char&gt; &lt;cur&gt; &lt;total&gt;</h4>
<div class="outline-text-4" id="text-2-6-8">

<p>    Used by the primegen and Public key functions to indicate
    progress.  &lt;char&gt; is the character displayed with no &ndash;status-fd
    enabled, with the linefeed replaced by an 'X'.  &lt;cur&gt; is the
    current amount done and &lt;total&gt; is amount to be done; a &lt;total&gt; of
    0 indicates that the total amount is not known. The condition
</p><pre class="example">
      TOTAL &amp;&amp; CUR == TOTAL
</pre>

<p>    may be used to detect the end of an operation.
</p>
<p>
    Well known values for WHAT are:
</p>
<dl>
<dt>pk_dsa  </dt><dd>DSA key generation
</dd>
<dt>pk_elg  </dt><dd>Elgamal key generation
</dd>
<dt>primegen</dt><dd>Prime generation
</dd>
<dt>need_entropy</dt><dd>Waiting for new entropy in the RNG
</dd>
<dt>tick</dt><dd>Generic tick without any special meaning - useful
                     for letting clients know that the server is still
                     working.
</dd>
<dt>starting_agent</dt><dd>A gpg-agent was started because it is not
                                running as a daemon.
</dd>
<dt>learncard</dt><dd>Send by the agent and gpgsm while learing
                          the data of a smartcard.
</dd>
<dt>card_busy</dt><dd>A smartcard is still working
</dd>
</dl>


</div>

</div>

<div id="outline-container-2-6-9" class="outline-4">
<h4 id="sec-2-6-9"><span class="section-number-4">2.6.9</span> BACKUP_KEY_CREATED &lt;fingerprint&gt; &lt;fname&gt;</h4>
<div class="outline-text-4" id="text-2-6-9">

<p>    A backup of a key identified by &lt;fingerprint&gt; has been writte to
    the file &lt;fname&gt;; &lt;fname&gt; is percent-escaped.
</p>
</div>

</div>

<div id="outline-container-2-6-10" class="outline-4">
<h4 id="sec-2-6-10"><span class="section-number-4">2.6.10</span> MOUNTPOINT &lt;name&gt;</h4>
<div class="outline-text-4" id="text-2-6-10">

<p>    &lt;name&gt; is a percent-plus escaped filename describing the
    mountpoint for the current operation (e.g. used by "g13 &ndash;mount").
    This may either be the specified mountpoint or one randomly
    choosen by g13.
</p>
</div>

</div>

<div id="outline-container-2-6-11" class="outline-4">
<h4 id="sec-2-6-11"><span class="section-number-4">2.6.11</span> PINENTRY_LAUNCHED &lt;pid&gt;</h4>
<div class="outline-text-4" id="text-2-6-11">

<p>    This status line is emitted by gpg to notify a client that a
    Pinentry has been launched.  &lt;pid&gt; is the PID of the Pinentry.  It
    may be used to display a hint to the user but can't be used to
    synchronize with Pinentry.  Note that there is also an Assuan
    inquiry line with the same name used internally or, if enabled,
    send to the client instead of this status line.  Such an inquiry
    may be used to sync with Pinentry
</p>
</div>
</div>

</div>

<div id="outline-container-2-7" class="outline-3">
<h3 id="sec-2-7"><span class="section-number-3">2.7</span> Obsolete status codes</h3>
<div class="outline-text-3" id="text-2-7">


</div>

<div id="outline-container-2-7-1" class="outline-4">
<h4 id="sec-2-7-1"><span class="section-number-4">2.7.1</span> SIGEXPIRED</h4>
<div class="outline-text-4" id="text-2-7-1">

<p>    Removed on 2011-02-04.  This is deprecated in favor of KEYEXPIRED.
</p></div>

</div>

<div id="outline-container-2-7-2" class="outline-4">
<h4 id="sec-2-7-2"><span class="section-number-4">2.7.2</span> RSA_OR_IDEA</h4>
<div class="outline-text-4" id="text-2-7-2">

<p>    Obsolete.  This status message used to be emitted for requests to
    use the IDEA or RSA algorithms.  It has been dropped from GnuPG
    2.1 after the respective patents expired.
</p></div>

</div>

<div id="outline-container-2-7-3" class="outline-4">
<h4 id="sec-2-7-3"><span class="section-number-4">2.7.3</span> SHM_INFO, SHM_GET, SHM_GET_BOOL, SHM_GET_HIDDEN</h4>
<div class="outline-text-4" id="text-2-7-3">

<p>    These were used for the ancient shared memory based co-processing.
</p></div>

</div>

<div id="outline-container-2-7-4" class="outline-4">
<h4 id="sec-2-7-4"><span class="section-number-4">2.7.4</span> BEGIN_STREAM, END_STREAM</h4>
<div class="outline-text-4" id="text-2-7-4">

<p>    Used to issued by the experimental pipemode.
</p>

</div>
</div>
</div>

</div>

<div id="outline-container-3" class="outline-2">
<h2 id="sec-3"><span class="section-number-2">3</span> Format of the &ndash;attribute-fd output</h2>
<div class="outline-text-2" id="text-3">


<p>
  When &ndash;attribute-fd is set, during key listings (&ndash;list-keys,
  &ndash;list-secret-keys) GnuPG dumps each attribute packet to the file
  descriptor specified.  &ndash;attribute-fd is intended for use with
  &ndash;status-fd as part of the required information is carried on the
  ATTRIBUTE status tag (see above).
</p>
<p>
  The contents of the attribute data is specified by RFC 4880.  For
  convenience, here is the Photo ID format, as it is currently the
  only attribute defined:
</p>
<dl>
<dt>Byte 0-1</dt><dd>The length of the image header.  Due to a historical
                accident (i.e. oops!) back in the NAI PGP days, this
                is a little-endian number.  Currently 16 (0x10 0x00).

</dd>
<dt>Byte 2</dt><dd>The image header version.  Currently 0x01.

</dd>
<dt>Byte 3</dt><dd>Encoding format.  0x01 == JPEG.

</dd>
<dt>Byte 4-15</dt><dd>Reserved, and currently unused.
</dd>
</dl>


<p>
  All other data after this header is raw image (JPEG) data.
</p>

</div>

</div>

<div id="outline-container-4" class="outline-2">
<h2 id="sec-4"><span class="section-number-2">4</span> Unattended key generation</h2>
<div class="outline-text-2" id="text-4">


<p>
   Please see the GnuPG manual for a description.
</p>

</div>

</div>

<div id="outline-container-5" class="outline-2">
<h2 id="sec-5"><span class="section-number-2">5</span> Layout of the TrustDB</h2>
<div class="outline-text-2" id="text-5">


<p>
  The TrustDB is built from fixed length records, where the first byte
  describes the record type.  All numeric values are stored in network
  byte order. The length of each record is 40 bytes. The first record
  of the DB is always of type 1 and this is the only record of this
  type.
</p>
<p>
  FIXME:  The layout changed, document it here.
</p>


<pre class="example">Record type 0:
--------------
  Unused record, can be reused for any purpose.

Record type 1:
--------------
  Version information for this TrustDB.  This is always the first
  record of the DB and the only one with type 1.
   1 byte value 1
   3 bytes 'gpg'  magic value
   1 byte Version of the TrustDB (2)
   1 byte marginals needed
   1 byte completes needed
   1 byte max_cert_depth
      The three items are used to check whether the cached
      validity value from the dir record can be used.
   1 u32  locked flags [not used]
   1 u32  timestamp of trustdb creation
   1 u32  timestamp of last modification which may affect the validity
      of keys in the trustdb.  This value is checked against the
      validity timestamp in the dir records.
   1 u32  timestamp of last validation [currently not used]
      (Used to keep track of the time, when this TrustDB was checked
       against the pubring)
   1 u32  record number of keyhashtable [currently not used]
   1 u32  first free record
   1 u32  record number of shadow directory hash table [currently not used]
      It does not make sense to combine this table with the key table
      because the keyid is not in every case a part of the fingerprint.
   1 u32  record number of the trusthashtbale


Record type 2: (directory record)
--------------
  Informations about a public key certificate.
  These are static values which are never changed without user interaction.

   1 byte value 2
   1 byte  reserved
   1 u32   LID     .  (This is simply the record number of this record.)
   1 u32   List of key-records (the first one is the primary key)
   1 u32   List of uid-records
   1 u32   cache record
   1 byte  ownertrust
   1 byte  dirflag
   1 byte  maximum validity of all the user ids
   1 u32   time of last validity check.
   1 u32   Must check when this time has been reached.
       (0 = no check required)


Record type 3:  (key record)
--------------
  Informations about a primary public key.
  (This is mainly used to lookup a trust record)

   1 byte value 3
   1 byte  reserved
   1 u32   LID
   1 u32   next   - next key record
   7 bytes reserved
   1 byte  keyflags
   1 byte  pubkey algorithm
   1 byte  length of the fingerprint (in bytes)
   20 bytes fingerprint of the public key
        (This is the value we use to identify a key)

Record type 4: (uid record)
--------------
  Informations about a userid
  We do not store the userid but the hash value of the userid because that
  is sufficient.

   1 byte value 4
   1 byte reserved
   1 u32  LID  points to the directory record.
   1 u32  next   next userid
   1 u32  pointer to preference record
   1 u32  siglist  list of valid signatures
   1 byte uidflags
   1 byte validity of the key calculated over this user id
   20 bytes ripemd160 hash of the username.


Record type 5: (pref record)
--------------
  This record type is not anymore used.

   1 byte value 5
   1 byte   reserved
   1 u32  LID; points to the directory record (and not to the uid record!).
      (or 0 for standard preference record)
   1 u32  next
   30 byte preference data

Record type 6  (sigrec)
-------------
  Used to keep track of key signatures. Self-signatures are not
  stored.  If a public key is not in the DB, the signature points to
  a shadow dir record, which in turn has a list of records which
  might be interested in this key (and the signature record here
  is one).

   1 byte   value 6
   1 byte   reserved
   1 u32    LID       points back to the dir record
   1 u32    next   next sigrec of this uid or 0 to indicate the
           last sigrec.
   6 times
  1 u32  Local_id of signatures dir or shadow dir record
  1 byte Flag: Bit 0 = checked: Bit 1 is valid (we have a real
               directory record for this)
           1 = valid is set (but may be revoked)



Record type 8: (shadow directory record)
--------------
  This record is used to reserve a LID for a public key.  We
  need this to create the sig records of other keys, even if we
  do not yet have the public key of the signature.
  This record (the record number to be more precise) will be reused
  as the dir record when we import the real public key.

   1 byte value 8
   1 byte  reserved
   1 u32   LID      (This is simply the record number of this record.)
   2 u32   keyid
   1 byte  pubkey algorithm
   3 byte reserved
   1 u32   hintlist   A list of records which have references to
          this key.  This is used for fast access to
          signature records which are not yet checked.
          Note, that this is only a hint and the actual records
          may not anymore hold signature records for that key
          but that the code cares about this.
  18 byte reserved



Record Type 10 (hash table)
--------------
  Due to the fact that we use fingerprints to lookup keys, we can
  implement quick access by some simple hash methods, and avoid
  the overhead of gdbm.  A property of fingerprints is that they can be
  used directly as hash values.  (They can be considered as strong
  random numbers.)
    What we use is a dynamic multilevel architecture, which combines
  hashtables, record lists, and linked lists.

  This record is a hashtable of 256 entries; a special property
  is that all these records are stored consecutively to make one
  big table. The hash value is simple the 1st, 2nd, ... byte of
  the fingerprint (depending on the indirection level).

  When used to hash shadow directory records, a different table is used
  and indexed by the keyid.

   1 byte value 10
   1 byte reserved
   n u32  recnum; n depends on the record length:
      n = (reclen-2)/4  which yields 9 for the current record length
      of 40 bytes.

  the total number of such record which makes up the table is:
   m = (256+n-1) / n
  which is 29 for a record length of 40.

  To look up a key we use the first byte of the fingerprint to get
  the recnum from this hashtable and look up the addressed record:
     - If this record is another hashtable, we use 2nd byte
   to index this hash table and so on.
     - if this record is a hashlist, we walk all entries
   until we found one a matching one.
     - if this record is a key record, we compare the
   fingerprint and to decide whether it is the requested key;


Record type 11 (hash list)
--------------
  see hash table for an explanation.
  This is also used for other purposes.

  1 byte value 11
  1 byte reserved
  1 u32  next      next hash list record
  n times      n = (reclen-5)/5
  1 u32  recnum

  For the current record length of 40, n is 7



Record type 254 (free record)
---------------
  All these records form a linked list of unused records.
   1 byte  value 254
   1 byte  reserved (0)
   1 u32   next_free
</pre>



</div>

</div>

<div id="outline-container-6" class="outline-2">
<h2 id="sec-6"><span class="section-number-2">6</span> GNU extensions to the S2K algorithm</h2>
<div class="outline-text-2" id="text-6">


<p>
  S2K mode 101 is used to identify these extensions.
  After the hash algorithm the 3 bytes "GNU" are used to make
  clear that these are extensions for GNU, the next bytes gives the
  GNU protection mode - 1000.  Defined modes are:
</p><dl>
<dt>1001</dt><dd>Do not store the secret part at all.
</dd>
<dt>1002</dt><dd>A stub to access smartcards (not used in 1.2.x)
</dd>
</dl>


</div>

</div>

<div id="outline-container-7" class="outline-2">
<h2 id="sec-7"><span class="section-number-2">7</span> Keyserver helper message format</h2>
<div class="outline-text-2" id="text-7">


<p>
  The keyserver may be contacted by a Unix Domain socket or via TCP.
</p>
<p>
  The format of a request is:
</p>


<pre class="example">command-tag
"Content-length:" digits
CRLF
</pre>


<p>
  Where command-tag is
</p>



<pre class="example">NOOP
GET &lt;user-name&gt;
PUT
DELETE &lt;user-name&gt;
</pre>


<p>
The format of a response is:
</p>



<pre class="example">"GNUPG/1.0" status-code status-text
"Content-length:" digits
CRLF
</pre>

<p>
followed by &lt;digits&gt; bytes of data
</p>
<p>
Status codes are:
</p>
<dl>
<dt>1xx</dt><dd>Informational - Request received, continuing process

</dd>
<dt>2xx</dt><dd>Success - The action was successfully received, understood,
           and accepted

</dd>
<dt>4xx</dt><dd>Client Error - The request contains bad syntax or cannot be
           fulfilled

</dd>
<dt>5xx</dt><dd>Server Error - The server failed to fulfill an apparently
           valid request
</dd>
</dl>



</div>

</div>

<div id="outline-container-8" class="outline-2">
<h2 id="sec-8"><span class="section-number-2">8</span> Object identifiers</h2>
<div class="outline-text-2" id="text-8">


<p>
  OIDs below the GnuPG arc:
</p>



<pre class="example">1.3.6.1.4.1.11591.2          GnuPG
1.3.6.1.4.1.11591.2.1          notation
1.3.6.1.4.1.11591.2.1.1          pkaAddress
1.3.6.1.4.1.11591.2.2          X.509 extensions
1.3.6.1.4.1.11591.2.2.1          standaloneCertificate
1.3.6.1.4.1.11591.2.2.2          wellKnownPrivateKey
1.3.6.1.4.1.11591.2.12242973   invalid encoded OID
</pre>




</div>

</div>

<div id="outline-container-9" class="outline-2">
<h2 id="sec-9"><span class="section-number-2">9</span> Miscellaneous notes</h2>
<div class="outline-text-2" id="text-9">



</div>

<div id="outline-container-9-1" class="outline-3">
<h3 id="sec-9-1"><span class="section-number-3">9.1</span> v3 fingerprints</h3>
<div class="outline-text-3" id="text-9-1">

<p>   For packet version 3 we calculate the keyids this way:
</p><dl>
<dt>RSA</dt><dd>Low 64 bits of n
</dd>
<dt>ELGAMAL</dt><dd>Build a v3 pubkey packet (with CTB 0x99) and
                 calculate a RMD160 hash value from it. This is used
                 as the fingerprint and the low 64 bits are the keyid.
</dd>
</dl>


</div>

</div>

<div id="outline-container-9-2" class="outline-3">
<h3 id="sec-9-2"><span class="section-number-3">9.2</span> Simplified revocation certificates</h3>
<div class="outline-text-3" id="text-9-2">

<p>  Revocation certificates consist only of the signature packet;
  "&ndash;import" knows how to handle this.  The rationale behind it is to
  keep them small.
</p>
</div>

</div>

<div id="outline-container-9-3" class="outline-3">
<h3 id="sec-9-3"><span class="section-number-3">9.3</span> Documentation on HKP (the http keyserver protocol):</h3>
<div class="outline-text-3" id="text-9-3">


<p>
   A minimalistic HTTP server on port 11371 recognizes a GET for
   /pks/lookup.  The standard http URL encoded query parameters are
   this (always key=value):
</p>
<ul>
<li>op=index (like pgp -kv), op=vindex (like pgp -kvv) and op=get (like
     pgp -kxa)

</li>
<li>search=&lt;stringlist&gt;. This is a list of words that must occur in the key.
     The words are delimited with space, points, @ and so on. The delimiters
     are not searched for and the order of the words doesn't matter (but see
     next option).

</li>
<li>exact=on. This switch tells the hkp server to only report exact matching
     keys back. In this case the order and the "delimiters" are important.

</li>
<li>fingerprint=on. Also reports the fingerprints when used with 'index' or
     'vindex'
</li>
</ul>


<p>
   The keyserver also recognizes http-POSTs to /pks/add. Use this to upload
   keys.
</p>

<p>
   A better way to do this would be a request like:
</p>
<p>
      /pks/lookup/&lt;gnupg_formatierte_user_id&gt;?op=&lt;operation&gt;
</p>
<p>
   This can be implemented using Hurd's translator mechanism.
   However, I think the whole key server stuff has to be re-thought;
   I have some ideas and probably create a white paper.
</p></div>
</div>
</div>
</div>

<div id="postamble">
<p class="date">Date: 2013-07-03T09:52+0000</p>
<p class="author">Author: isis</p>
<p class="email"><a href="mailto:isis@wintermute.patternsinthevoid.net">isis@wintermute.patternsinthevoid.net</a></p>
<p class="creator"><a href="http://orgmode.org">Org</a> version 7.9.2 with <a href="http://www.gnu.org/software/emacs/">Emacs</a> version 24</p>
<a href="http://validator.w3.org/check?uri=referer">Validate XHTML 1.0</a>

</div>
</body>
</html>