aboutsummaryrefslogtreecommitdiffstats
path: root/g10/ChangeLog
blob: 890ad37316b3e1418cd5a8c76dfc355ddddd15f4 (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
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
2001-12-22  Werner Koch  <[email protected]>

	* encode.c (encode_simple, encode_crypt): i18n 2 strings.

2001-12-22  Timo Schulz <[email protected]>
	
	* encode.c (encode_simple, encode_crypt): Use is_file_compressed
	to avoid to compress compressed files.

2001-12-22  Werner Koch  <[email protected]>

	* keyserver.c (keyserver_spawn): Removed some variables
	declaration due to shadowing warnings.

	* build-packet.c (build_attribute_subpkt): s/index/idx/ to avoid
	compiler warnig due to index(3).

	* getkey.c (get_ctx_handle): Use KEYDB_HANDLE as return value.
	* keylist.c (list_one): Made resname const.

	* keyedit.c (keyedit_menu): Allow "addphoto" only when --openpgp is
	not used.

	* options.skel: Changed one example photo viewer to qiv.

2001-12-21  David Shaw  <[email protected]>

	* Makefile.am: add exec.c, exec.h, photoid.c, and photoid.h

	* build-packet.c (build_attribute_subpkt): new function to build
	the raw attribute subpacket.  Note that attribute subpackets have
	the same format as signature subpackets.

	* exec.c: new file with generic exec-a-program functionality.
	Used by both photo IDs and keyserver helpers.  This is pretty much
	the same code that used to be keyserver specific, with some
	changes to be usable generically.

	* free-packet.c (free_attributes (new)): function to free an
	attribute packet.
	
	* gpgv.c: added stub show_photo
	
	* keyedit.c (keyedit_menu, menu_adduid, menu_showphoto): can add a
	photo (calls generate_photo_id), or display a photo (calls
	show_photo) from the --edit menu.  New commands are "addphoto",
	and "delphoto" (same as "deluid").

	* keylist.c (list_keyblock_print): show photos during key list if
	--show-photos enabled.
	
	* keyserver.c (keyserver_spawn): use the generic exec_xxx
	functions to call keyserver helper.

	* g10.c, options.h: three new options - --{no-}show-photos, and
	--photo-viewer to give the command line to display a picture.

	* options.skel: instructions for the photo viewer
	
	* parse-packet.c (parse_user_id, setup_user_id (new)): common code
	for both user IDs and attribute IDs moved to setup_user_id.

	* parse-packet.c (make_attribute_uidname (new)): constructs a fake
	"name" for attribute packets (e.g. "[image of size ...]")

	* parse-packet.c (parse_attribute (replaces parse_photo_id),
	parse_attribute_subpkts): Builds an array of individual
	attributes.  Currently only handles attribute image / type jpeg
	subpackets.

	* sign.c (hash_uid): Fix bug in signing attribute (formerly
	photo_id) packets.

	* packet.h, and callers: globally change "photo_id" to "attribute"
	and add structures for attributes.  The packet format is generic
	attributes, even though the only attribute type thus far defined
	is jpeg.

2001-12-21  David Shaw  <[email protected]>

	* parse-packet.c (can_handle_critical): Can handle critical
	revocation subpackets now.

	* trustdb.c (mark_usable_uid_certs): Disregard revocations for
	nonrevocable sigs.  Note that this allows a newer revocable
	signature to override an older nonrevocable signature.

	* sign.c (make_keysig_packet): add a duration field and change all
	callers.  This makes make_keysig_packet closer to
	write_signature_packets and removes some duplicated expiration
	code.

	* keyedit.c (keyedit_menu, menu_revsig, sign_uids,
	sign_mk_attrib): Add nrsign command, don't allow revoking a
	nonrevocable signature,

	* g10.c (main): Add --nrsign option to nonrevocably sign a key
	from the command line.

	* build-packet.c (build_sig_subpkt_from_sig): Comment to explain
	the use of CRITICAL.

2001-12-21  Werner Koch  <[email protected]>

	* g10.c. options.h : New option --show-keyring
	* getkey.c (get_ctx_handle): New.
	* keylist.c (list_one): Implement option here.  By David Champion. 

=======
>>>>>>> 1.162.2.192
2001-12-20  David Shaw  <[email protected]>

	* keyserver.c (keyserver_spawn): Use mkdtemp() to make temp
	directory.

	* mkdtemp.c: replacement function for those platforms that don't
	have mkdtemp (make a temp directory securely).

2001-12-19  David Shaw  <[email protected]>

	* misc.c (check_permissions): New function to stat() and ensure
	the permissions of GNUPGHOME and the files have safe permissions.

	* keydb.c (keydb_add_resource): Check keyring permissions.

	* tdbio.c (tdbio_set_dbname): Check permissions of trustdb.gpg

	* keyserver.c (keyserver_spawn): Disable keyserver schemes that
	involve running external programs if the options file has unsafe
	permissions or ownership.

	* g10.c, options.h: New option --no-permission-warning to disable
	the permission warning message(s).  This also permits use of the
	keyserver if it had been disabled (see above).  Also check the
	permissions/ownership of random_seed.
	
	* keyserver.c (keyserver_spawn): The new glibc prints a warning
	when using mktemp() (the code was already secure, but the warning
	was bound to cause confusion).  Use a different implementation
	based on get_random_bits() instead.  Also try a few times to get
	the temp dir before giving up.

2001-12-19  Werner Koch  <[email protected]>

	* g10.c, passphrase.c [CYGWIN32]: Allow this as an alias for MINGW32.

2001-12-18  David Shaw  <[email protected]>

	* g10.c (idea_cipher_warn): Add a flag to show the warning always
	or once per session and change all callers (show always except for
	the secret key protection and unknown cipher from an encrypted
	message errors).  Also make the strings translatable.

	* pubkey-enc.c (get_it): Add the IDEA cipher warning if the user
	tries to decrypt an IDEA encrypted message without the IDEA
	plugin.

	* keyserver.c (parse_keyserver_uri): More strict checking of the
	keyserver URI.  Specifically, fail if the ":port" section is
	anything except a number between 1 and 65535.

2001-12-17  David Shaw  <[email protected]>

	* keyserver.c (print_keyinfo): No need to check for
	control/illegal characters, as utf8_to_native does this for us.

	* mainproc.c (proc_encrypted): Use generic IDEA warning.

	* gpgv.c: add stub for idea_cipher_warn

	* g10.c, hkp.c, keyserver.c: Fix capitalization and plural issues.

	* encode.c (encode_crypt), sign.c (sign_file, clearsign_file):
	disable pgp2 mode after the message is no longer pgp2 compatible.

	* g10.c (main): Tweak the PGP2.x IDEA warning to use the generic
	warning, and not merely fail if the IDEA plugin isn't there.

	* g10.c (main, idea_cipher_warn), keygen.c (set_one_pref),
	seckey-cert.c (do_check): Add a generic IDEA warning for when the
	IDEA plugin is not present.  This pops up when the user uses
	"--cipher-algo idea", when setpref is used to set a "S1"
	preference, and when a secret key protected with IDEA is used.

2001-12-15  Werner Koch  <[email protected]>

	* keyserver.c (keyserver_spawn): Assert that we have dropped privs.

2001-12-13  Werner Koch  <[email protected]>

	* pubkey-enc.c (get_session_key): Check that the public key
	algorithm is indeed usable for en/decryption.  This avoid a
	strange error message from pubkey_decrypt if for some reasons a
	bad algorithm indentifier is passed.

2001-12-12  David Shaw  <[email protected]>

	* Fixed some types for portability.  Noted by Stefan Bellon.

2001-12-11  Werner Koch  <[email protected]>

	* hkp.c (hkp_export): Do not print possible control characters
	from a keyserver response.
	(parse_hkp_index): Made uid an unsigned char* because it is passed to
	isspace().
	(hkp_search): Ditto for the char* vars.

	* g10.c (main): Print the IDEA warning also for -c and -se.
	
	* g10.c (get_temp_dir): Assert that we have dropped privs

	* encode.c (encode_crypt): Include the first key into the --pgp2
	check.

2001-12-07  David Shaw  <[email protected]>

	* g10.c, options.h: New option --pgp2.  This is identical to
	"--rfc1991 --cipher-algo idea --compress-algo 1 --digest-algo md5
	--force_v3_sigs" with the addition of an warning to advise the
	user not to use a pipe (which would break pgp2 compatibility).

	* encode.c (encode_crypt): warn if the user tries to encrypt to
	any key that is not RSA and <= 2048 bits when the --pgp2 option is
	used.

	* sign.c (sign_file, clearsign_file): When using --pgp2, make a v3
	sig, and warn if the signature is made with a non-v3 key.

2001-12-05  David Shaw  <[email protected]>

	* sign.c (sign_file, clearsign_file, sign_symencrypt_file): Prompt
	for sig expiration if --expert is set and --force-v3-sigs is not
	set (v3 sigs cannot expire).

	* mainproc.c (check_sig_and_print): After checking a sig, print
	expiration status.  This causes a error return if the sig is
	expired.

	* build-packet.c (build_sig_subpkt_from_sig): Include a critical
	sig expiration subpacket if the sig is to expire.

	* keyedit.c (sign_uids): Do not sign an expired key unless
	--expert is set, in which case prompt.  Also, offer to expire a
	signature when the key the user is signing expires.

	* keygen.c (ask_expire_interval): Add a value to determine whether
	to prompt for a key or sig expiration and change all callers.

	* keyid.c: New functions: expirestr_from_sig and
	colon_expirestr_from_sig.

	* keylist.c (list_keyblock_colon): Show sig expiration date in the
	--with-colons listing.

	* sign.c (make_keysig_packet, write_signature_packets): Pass in an
	optional timestamp for the signature packet, and change all
	callers.

	* keyedit.c (sign_mk_attrib): Include a critical expiration
	subpacket in the signature if an expiration date is given.

2001-12-04  David Shaw  <[email protected]>

	* keyedit.c (sign_uids): If the user tries to sign a
	locally-signed key, allow the cert to be promoted to a full
	exportable signature.  This essentially deletes the old
	non-exportable sig, and replaces it with a new exportable one.

2001-12-04  David Shaw  <[email protected]>

	* keyedit.c (keyedit_menu): Do not allow signing a revoked key
	unless --expert is set, and ask even then.

	* keyedit.c (sign_uids): Do not allow signing a revoked UID unless
	--expert is set, and ask even then.

	* g10.c, options.h : New option --expert

2001-11-16  David Shaw  <[email protected]>

	* Allow the user to select no compression via "--compress-algo 0"
	on the command line.

	* keyedit.c (show_prefs): Show compression preferences in the
	long-form "showpref" style.

	* keygen.c (set_one_pref): Permit setting a no-compression ("Z0")
	preference.

	* getkey.c (fixup_uidnode): Fix compression preference corruption
	bug.

2001-12-02  David Shaw  <[email protected]>

	* g10.c: Add advisory --for-your-eyes-only option as per section
	5.9 of 2440.

2001-12-05  David Shaw  <[email protected]>

	* Force a V4 sig if the user has a notation or policy URL set.

2001-12-04  David Shaw  <[email protected]>

	* g10.c: Add options --keyserver-options, --temp-directory, and
	auto-key-retrieve (the opposite of no-auto-key-retrieve).

	* hkp.c (hkp_search): New function to handle searching a HKP
	keyserver for a key

	* hkp.c (hkp_ask_import, hkp_export): Pretty large changes to make
	them communicate via the generic functions in keyserver.c

	* keyserver.c: new file with generic keyserver routines for
	getting keys from a keyserver, sending keys to a keyserver, and
	searching for keys on a keyserver.  Calls the internal HKP stuff
	in hkp.c for HKP keyserver functions.  Other calls are handled by
	an external program which is spawned and written to and read from
	via pipes.  Platforms that don't have pipes use temp files.

2001-11-20  David Shaw  <[email protected]>

	* options.h, g10.c: New options show-notation, no-show-notation,
	default-check-level, no-default-check-level, show-policy-url,
	no-show-policy-url.

	* packet.h, sign.c (make_keysig_packet), parse-packet.c
	(parse_signature), free-packet.c (free_seckey_enc): Fill in
	structures for notation, policy, sig class, exportability, etc.

	* keyedit.c, keylist.c (print_and_check_one_sig,
	list_keyblock_print): Show flags in signature display for cert
	details (class, local, notation, policy, revocable).  If selected,
	show the notation and policy url.

	* keyedit.c (sign_uids): Prompt for and use different key sig
	classes.

	* helptext.c (helptexts): Add help text to explain different
	key signature classes

2001-11-26  David Shaw  <[email protected]>

	* trustdb.c (mark_usable_uid_certs): Fix segfault from bad
	initialization and fix reversed key signature expiration check.

2001-11-09  Werner Koch  <[email protected]>

	* export.c (do_export_stream): Put all given names into a search
	description and change the loop so that all matching names are
	returned.

2001-11-08  Werner Koch  <[email protected]>

	* pubkey-enc.c (get_it): To reduce the number of questions on the
	MLs print the the name of cipher algorithm 1 with the error message.

	* mainproc.c: Changed the way old rfc1991 encryption cipher is
	selected. Based on a patch by W Lewis.

	* pkclist.c (do_edit_ownertrust): Allow to skip over keys, the non
	working "show info" is now assigned to "i" 
	* trustdb.c (ask_ownertrust, validate_keys): Implement a real quit
	here.  Both are by David Shaw.
	
	* trustdb.c (validate_keys): Make sure next_exipire is initialized.

	* sign.c (make_keysig_packet): Use SHA-1 with v4 RSA keys.

	* g10.c, options.h : New option --[no-]froce-v4-certs.
	* sign.c (make_keysig_packet): Create v4 sigs on v4 keys even with
	a v3 key.  Use that new option.  By David Shaw

	* revoke.c (ask_revocation_reason): Allow to select "no reason".
	By David Shaw.

	* keyid.c (fingerprint_from_sk): Calculation of an v3 fpr was
	plain wrong - nearly the same code in fingerprint_from_pk is correct.

	* build-packet.c (do_secret_key): Added a few comments to the code.

2001-11-07  Werner Koch  <[email protected]>

	* g10.c (main): Print a warning when -r is used w/o encryption.
	Suggested by Pascal Scheffers.

2001-10-23  Werner Koch  <[email protected]>

	* keyedit.c (keyedit_menu): Changed helptext for showpref
	command.  Suggested by Reinhard Wobst.

	* keyring.c (keyring_search): When marking the offtbl ready, take
	into account that we may have more than one keyring.

2001-10-22  Werner Koch  <[email protected]>

	* Makefile.am: Do not use OMIT_DEPENDENCIES

	* build-packet.c (build_sig_subpkt): Default is now to put all
	types of subpackets into the hashed area and only list those which
	should go into the unhashed area.

2001-10-18  Werner Koch  <[email protected]>

	* keydb.c (keydb_add_resource): Rearranged the way we keep track
	of the resource. There will now be an entry for each keyring here
	and not in keyring.c itself.  Store a token to allow creation of a
	keyring handle.  Changed all functions to utilize this new design.
	(keydb_locate_writable): Make a real implementation.
	* keyring.c (next_kr): Removed and changed all callers to set the
	resource directly from the one given with the handle.
	(keyring_is_writable): New. 
	(keyring_rebuild_cache): Add an arg to pass the token from keydb.

2001-10-17  Werner Koch  <[email protected]>

	* keyring.c (keyring_search): Enabled word search mode but print a
	warning that it is buggy.
	
2001-10-11  Werner Koch  <[email protected]>

	* hkp.c (hkp_ask_import): No more need to set the port number for
	the x-hkp scheme. 
	(hkp_export): Ditto.

2001-10-06  Stefan Bellon  <[email protected]>

	* passphrase.c [__riscos__]: Disabled agent specific stuff.
	* g10.c: New option --no-force-v3-sigs.

2001-10-04  Werner Koch  <[email protected]>

	* export.c (do_export_stream): Do not push the compress filter
	here because the context would run out of scope due to the
	iobuf_close done by the caller.
	(do_export): Do it here instead. 

2001-09-28  Werner Koch  <[email protected]>

	* keyedit.c (sign_uids): Always use the primary key to sign keys.
	* getkey.c (finish_lookup): Hack to return only the primary key if
	a certification key has been requested.

	* trustdb.c (cmp_kid_for_make_key_array): Renamed to
	(validate_one_keyblock): this and changed arg for direct calling.
	(make_key_array): Renamed to
	(validate_one_keyblock): this and changed args for direct calling.
	(mark_usable_uid_certs, validate_one_keyblock)
	(validate_key_list): Add next_expire arg to keep track of
	expiration times.  
	(validate_keys): Ditto for UTKs and write the stamp.

	* tdbio.c (migrate_from_v2): Check return code of tbdio_sync.

	* tdbdump.c (import_ownertrust): Do a tdbio_sync().

	* keyring.c: Made the offtbl an global object.

2001-09-27  Werner Koch  <[email protected]>

	* pkclist.c (do_edit_ownertrust): Allow settin of ultimate trust.

	* trustdb.c (mark_keyblock_seen): New.
	(make_key_array): Use it to mark the subkeys too.
	(validate_keys): Store validity for ultimatly trusted keys.

2001-09-26  Werner Koch  <[email protected]>

	* pkclist.c (check_signatures_trust, do_we_trust): Removed the
	invocation of add_ownertrust. Minor changes to the wording.
	(add_ownertrust, add_ownertrust_cb): Removed.

	* trustdb.c (get_validity): Allow to lookup the validity using a
	subkey.

	* trustdb.c (new_key_hash_table): Increased the table size to 1024
	and changed the masks accordingly.
	(validate): Changed stats printing.
	(mark_usable_uid_certs): New.
	(cmp_kid_for_make_key_array): Does now check the signatures and
	figures out a usable one.

2001-09-25  Werner Koch  <[email protected]>

	* keyring.c (new_offset_item,release_offset_items)
	(new_offset_hash_table, lookup_offset_hash_table)
	(update_offset_hash_table, update_offset_hash_table_from_kb): New.
	(keyring_search): Use a offset table to optimize search for
	unknown keys.
	(keyring_update_keyblock, keyring_insert_keyblock): Insert new
	offsets.
	* getkey.c (MAX_UNK_CACHE_ENTRIES): Removed the unknown keys
	caching code.

	* g10.c, options.h, import.c: Removed the entire
	allow-secret-key-import stuff because the validity is now
	controlled by other means.

	* g10.c: New command --rebuild-keydb-caches.
	* keydb.c (keydb_rebuild_caches): New.
	* keyring.c (do_copy): Moved some code to
	(create_tmp_file, rename_tmp_file, write_keyblock): new functions.
	(keyring_rebuild_cache): New.

	* packet.h (PKT_ring_trust): Add sigcache field.
	* parse-packet.c (parse_trust): Parse sigcache.
	* keyring.c (do_copy): Always insert a sigcache packet.
	(keyring_get_keyblock): Copy the sigcache packet to the signature.
	* sig-check.c (cache_sig_result): Renamed from
	cache_selfsig_result. Changed implementation to use the flag bits
	and changed all callers.
	(mdc_kludge_check): Removed this unused code.
	(do_check): Do not set the sig flags here.

	* import.c (read_block): Make sure that ring_trust packets are
	never imported.
	* export.c (do_export_stream): and never export them.

	* trustdb.c (make_key_array): Skip revoked and expired keys.

2001-09-24  Werner Koch  <[email protected]>

	* g10.c, options.h: New option --no-auto-check-trustdb.

	* keygen.c (do_generate_keypair): Set newly created keys to
	ultimately trusted.

	* tdbio.h, tdbio.c: Removed all support for records DIR, KEY, UID,
	PREF, SIG, SDIR and CACH. Changed migration function to work
	direct on the file.
	(tdbio_read_nextcheck): New.
	(tdbio_write_nextcheck): New. 

2001-09-21  Werner Koch  <[email protected]>

	Revamped the entire key validation system.
	* trustdb.c: Complete rewrite. No more validation on demand,
	removed some functions, adjusted to all callers to use the new 
	and much simpler interface. Does not use the LID anymore.
	* tdbio.c, tdbio.h: Add new record types trust and valid. Wrote a
	migration function to convert to the new trustdb layout.
	* getkey.c (classify_user_id2): Do not allow the use of the "#"
	prefix. 
	* keydb.h: Removed the TDBIDX mode add a skipfnc to the
	descriptor.
	* keyring.c (keyring_search): Implemented skipfnc.

	* passphrase.c (agent_open): Add missing bracket.  Include windows.h.

2001-09-19  Werner Koch  <[email protected]>

	* keylist.c (print_fingerprint): Renamed from fingerprint, made
	global available. Added new arg to control the print style.
	* mainproc.c (print_fingerprint): Removed. 
	* pkclist.c (print_fpr, fpr_info): Removed and changed callers to
	use print_fingerprint.
	* keyedit.c (show_fingerprint): Ditto.

	* passphrase.c (writen, readn)
	(agent_open, agent_close)
	(agent_get_passphrase)
	(passphrase_clear_cache): Support for W32.  Contributed by Timo.

	* import.c (import_one): Release keydb handles at 2 more places.

	* keyring.c (keyring_release): Close the iobuf.
	(keyring_get_keyblock): Init ret_kb to NULL and store error contidion.

	* import.c (import_new_stats_handle): New. 
	(import_release_stats_handle): New.
	(import_print_stats): Renamed from static fnc print_stats.
	(import_keys, import_keys_stream): Add an optional status handle
	arg and changed all callers.
	* hkp.c (hkp_ask_import): Add an stats_handle arg and changed all
	callers.

	* mainproc.c (print_pkenc_list): Use print_utf8_string2().

2001-09-18  Werner Koch  <[email protected]>

	* g10.c: New command --refresh-keys.
	* hkp.c (hkp_refresh_keys): New. Contributed by Timo Schulz.

	* parse-packet.c (parse): Stop on impossible packet lengths.

2001-09-17  Werner Koch  <[email protected]>

	* mainproc.c (print_notation_data): Wrap notation data status lines
	after 50 chars.
	
	* mainproc.c (proc_pubkey_enc): Make option try-all-secrets work.
	By [email protected].

2001-09-14  Werner Koch  <[email protected]>

	* parse-packet.c (dump_sig_subpkt): List key server preferences
	and show the revocable flag correctly. Contributed by David Shaw.

2001-09-09  Werner Koch  <[email protected]>

	* keyedit.c (keyedit_menu): No need to define another p.

	* keylist.c (print_capabilities): s/used/use/ so that it
	does not shadow a global.
	* sign.c (sign_file): Renamed arg encrypt to encryptflag
	* keygen.c: Replaced all "usage" by "use".
	* misc.c (openpgp_pk_algo_usage): Ditto.

	* pubkey-enc.c (get_it): Renamed arg k to enc so that the later
	defined k does not shadow it.

	* parse-packet.c (parse_gpg_control): No need to define another i.

	* getkey.c (get_pubkey_byfprint): Must use the enum values and not
	the fprint_len.
	* keyring.c (keyring_search): Removed a non-sense break.  Both
	bugs pointed out by Stefan.

2001-09-07  Werner Koch  <[email protected]>

	* status.c, status.h: Added NO_RECP and ALREADY_SIGNED.
	* pkclist.c (build_pk_list): Issue NO_RECP.
	* keyedit.c (sign_uids): Added experimental ALREADY_SIGNED

	* hkp.c (hkp_import): Use log_error. Bug reported by Neal H
	Walfield. 

	* getkey.c (classify_user_id2): Change args to take the desc union
	direct.  It was a stupid idea to pass the individual fields of an
	union to this function. Changed all callers.
	(classify_user_id): Ditto and allow to pass NULL as the description.

2001-09-06  Werner Koch  <[email protected]>

	* getkey.c (fixup_uidnode): Features flag is now a bit vector.
	* keygen.c (add_feature_mdc): Ditto.

	Revamped the entire key I/O code to be prepared for other ways of
	key storages and to get rid of the existing shit.  GDBM support has
	gone.
	* keydb.c: New
	* keyring.c, keyring.h: New.
	* ringedit.c: Removed.  Moved some stuff to keyring.c
	* getkey.c: Changed everything related to the key retrieving
	functions which are now using the keydb_ functions.  
	(prepare_search, word_match_chars, word_match)
	(prepare_word_match, compare_name): Moved to keyring.c
	(get_pubkey_byname): Removed ctx arg and add ret_kdbhd
	arg.  Changed all callers.
	(key_byname): Use get_pubkey_end to release the context and take
	new ret_kbdhd arg.  Changed all callers.
	(classify_user_id2): Fill the 16 byte fingerprint up with 4 null
	bytes not with zero bytes of value 4, tsss.
	* import.c (import_one): Updated to use the new keydb interface.
	(import_secret_one): Ditto.
	(import_revoke_cert): Ditto.
	* delkey.c (do_delete_key): Ditto. 
	* keyedit.c (keyedit_menu): Ditto.
	(get_keyblock_byname): Removed.
	* revoke.c (gen_revoke): Ditto. 
	* export.c (do_export_stream): Ditto.
	* trustdb.c (update_trustdb): Ditto.
	* g10.c, gpgv.c (main): Renamed add_keyblock_resource to
	keydb_add_resource. 
	* Makefile.am:  Added and removed files.

	* keydb.h: Moved KBNODE typedef and MAX_FINGERPRINT_LEN to
	* global.h: this new header.
 	
2001-09-03  Werner Koch  <[email protected]>

	* passphrase.c (agent_get_passphrase): Changed nread to size_t.
	(passphrase_clear_cache): Ditto.

	* keyid.c (mk_datestr): Avoid trigraphs.
	(fingerprint_from_pk): Cache the keyid in the pk.

	* options.h: Add opt.with_fingerprint so that we know whether the
	corresponding options was used.
	* g10.c (main): Set it here.
	* pkclist.c (check_signatures_trust): Always print fingerprint
	when this option is used.  Mixed a minor memory leak.

	* status.c, status.h: New status INV_RECP.
	* pkclist.c (build_pk_list): Issue this status.

2001-08-31  Werner Koch  <[email protected]>

	* parse-packet.c (parse_key,parse_pubkeyenc)
	(parse_signature): Return error on reading bad MPIs.
	
	* mainproc.c (check_sig_and_print): Always print the user ID even
	if it is not bound by a signature.  Use the primary UID in the
	status messages and encode them in UTF-8
	* status.c (write_status_text_and_buffer): New.

2001-08-30  Werner Koch  <[email protected]>

	* packet.h (sigsubpkttype_t): Add SIGSUBPKT_FEATURES.
	(PKT_public_key, PKT_user_id): Add a flag for it.
	* parse-packet.c, build-packet.c: Add support for them.
	* getkey.c (fixup_uidnode, merge_selfsigs): Set the MDC flags.
	* keygen.c (add_feature_mdc): New.
	(keygen_upd_std_prefs): Always set the MDC feature.
	* keyedit.c (show_prefs): List the MDC flag
	* pkclist.c (select_mdc_from_pklist): New.
	* encode.c (encode_crypt, encrypt_filter): Test whether MDC
	should be used.
	* cipher.c (write_header): Set MDC use depending on the above test.
	Print more status info.

	* delkey.c (do_delete_key): Kludge to delete a secret key with no
	public key available.

	* ringedit.c (find_secret_keyblock_direct): New.
	* getkey.c (seckey_available): Simplified.

	* ringedit.c (cmp_seckey): Now compares the secret key against the
	public key while ignoring all secret parts.
	(keyring_search): Use a public key packet as arg.  Allow to search
	for subnkeys
	(search): Likewise. Changed all callers.
	(find_secret_keyblock_bypk): New.
	(find_secret_keyblock_byname): First locate the pubkey and then
	find the correponding secret key.
	* parse-packet.c (parse): Renamed pkttype arg to onlykeypkts and
	changed code accordingly.  Changed all callers.
	(search_packet): Removed pkttype arg.
	* keyedit.c (keyedit_menu): First locate the public key and then
	try to locate a secret key.

	* ringedit.c (locate_keyblock_by_fpr): Removed.
	(locate_keyblock_by_keyid): Removed.
	(find_keyblock_bysk): Removed.

	* sig-check.c (check_key_signature2): Print the keyid along with
	the wrong sig class errors.

2001-08-24  Werner Koch  <[email protected]>

	* sign.c (sign_file): Stripped the disabled comment packet code.
	(sign_file, sign_symencrypt_file): Moved common code to ..
	(write_onepass_sig_packets): .. this new function.
	(sign_file, clearsign_file, sign_symencrypt_file): Moved common
	code to 
	(write_signature_packets): this new function.
	(write_signature_packets, make_keysig_packet)
	(update_keysig_packet): Moved common code to 
	(hash_uid, hash_sigclass_to_magic): these new functions
	(sign_file, sign_symencrypt_file): Moved common code to 
	(write_plaintext_packet):  this new function.

2001-08-21  Stefan Bellon  <[email protected]>

	* trustdb.c (query_trust_info): Changed trustlevel to signed int.
	* g10.c [__riscos__]: Fixed handling of --use-agent --lock-multiple.

2001-08-20  Werner Koch  <[email protected]>

	* encr-data.c (decrypt_data): Keep track on whether we already
	printed information about the used algorithm.
	* mainproc.c (proc_encrypted): Removed the non-working IDEA hack
	and print a message about the assumed algorithm.
	* passphrase.c (passphrase_to_dek): Use the same algorithm as above.
	(proc_symkey_enc): Print the algorithm, so that the user knows it
	before entering the passphrase.
	(proc_pubkey_enc, proc_pubkey_enc): Zero the DEK out.
	* encode.c (encode_crypt, encrypt_filter): Ditto.

	* g10.c: Allow for --sign --symmetric.
	* sign.c (sign_and_symencrypt): New.

	Applied patches from Stefan Bellon <[email protected]> to support
	RISC OS.  Nearly all of these patches are identified by the
	__riscos__ macro.
	* compress.c: Added a couple of casts.
	* g10.c [__riscos__]: Some patches and new options foo-file similar
	to all foo-fd options.
	* gpgv.c, openfile.c, ringedit.c, tdbio.c: Minor fixes.  Mainly
	replaced hardcoded path	separators with EXTSEP_S like macros.  
	* passprase.c [__riscos__]: Disabled agent stuff
	* trustdb.c (check_trust): Changed r_trustlevel to signed int to
	avoid mismatch problems in pkclist.c
	* pkclist.c (add_ownertrust): Ditto.
	* plaintext.c (handle_plaintext) [__riscos__]: Print a note when
	file can't be created.
	* options.h [__riscos__]: Use an extern unless included from the
	main module.
	* signal.c (got_fatal_signal) [__riscos__]: Close all files.
	
2001-08-14  Werner Koch  <[email protected]>

	* keygen.c (ask_algo): New arg r_usage.  Allow for RSA keys.
	(gen_rsa): Enabled the code.
	(do_create): Enabled RSA branch.
	(parse_parameter_usage): New.
	(proc_parameter_file): Handle usage parameter.
	(read_parameter_file): Ditto.
	(generate_keypair): Ditto.
	(generate_subkeypair): Ditto.
	(do_generate_keypair): Ditto.
	(do_add_key_flags): New.
	(keygen_add_std_prefs): Use the new function.
	(keygen_add_key_flags_and_expire): New.
	(write_selfsig, write_keybinding): Handle new usage arg.
	* build-packet.c (build_sig_subpkt): Make sure that key flags go
	into the hashed area.
	
	* keygen.c (write_uid): Initialize the reference cunter.

	* keyedit.c (keyedit_menu): No more need to update the trustdb for
	preferences.  Added calls to merge keblock.

	* kbnode.c (dump_kbnode): Print some more flags.

2001-08-10  Werner Koch  <[email protected]>

        Revamped the preference handling.

	* packet.h (prefitem_t, preftype_t): New.
	(PKT_public_key): Added a uid field.
	(PKT_user_id): Added field to store preferences and a reference
	counter.
	* parse-packet.c (parse_user_id,parse_photo_id): Initialize them
	* free-packet.c (free_user_id): Free them.
	(copy_user_id): Removed.
	(scopy_user_id): New. 
	(cmp_user_ids): Optimized for identical pointers.
	(release_public_key_parts): Release the uid.
	(copy_public_key_with_new_namehash): Removed.
	(copy_prefs): New.
	* keyedit.c (menu_adduid): Use the new shallow copy user id.
	(show_prefs): Adjusted implementation.
	(keyedit_menu): No more need to update the trustdb after changing
	preferences.
	* getkey.c (fixup_uidnode): Store preferences.
	(find_by_name): Return a user id packet and remove namehash stuff.
	(lookup): Removed the unused namehash stuff.
	(finish_lookup): Added foundu arg.
	(pk_from_block): Removed the namehash arg and changed all callers.
	(merge_selfsigs): Copy prefs to all keys.
	* trustdb.c (get_pref_data): Removed.
 	(is_algo_in_prefs): Removed.
	(make_pref_record): Deleted and removed all class.
	* pkclist.c (select_algo_from_prefs): Adjusted for the new
	preference implementation.
	* pubkey-enc.c (is_algo_in_prefs): New.
	(get_it): Use that new function. 

2001-08-09  Werner Koch  <[email protected]>

	* build-packet.c (build_sig_subpkt): Fixed calculation of
	newarea->size.

	* g10.c (main): New option "--preference-list"
	* keyedit.c (keyedit_menu): New commands "setpref" and "updpref".
	(menu_set_preferences): New.
	* keygen.c (keygen_set_std_prefs): New.
	(set_one_pref): New.
	(check_zip_algo): New.
	(keygen_get_std_prefs): New.
	(keygen_upd_std_prefs): New
	(keygen_add_std_prefs): Move the pref setting code into the above fnc.
	* build-packet.c (build_sig_subpkt): Updated the list of allowed
	to update subpackets.

2001-08-08  Werner Koch  <[email protected]>

	* packet.h (subpktarea_t): New.
	(PKT_signature): Use that type for hashed_data and unhashed_data and
	removed the _data prefix from those fields.  Changed all users.
	* parse-packet.c (parse_signature): Changed allocation for that.
	(parse_sig_subpkt): Changed declaration
	(enum_sig_subpkt): Ditto and changed implementation accordingly.
	* free-packet.c (cp_subpktarea): Renamed from cp_data_block and
	adjusted implementation. Changed caller.
	* sig-check.c (mdc_kludge_check): Adjusted the hashing.
	(do_check): Ditto.
	* sign.c (sign_file, clearsign_file, make_keysig_packet,
	update_keysig_packet): Ditto.
	* build-packet.c (build_sig_subpkt): Partial rewrite.
	(find_subpkt): Adjusted and made static.
	(delete_sig_subpkt): Adjusted.
	(do_signature): Ditto.

	* keygen.c (ask_keysize): Do not print the notes about suggested
	key sizes if just a DSA key is generated.

	* trustdb.c (add_ultimate_key): s/log_error/log_info/ for
	duplicated inserted trusted keys.

2001-08-07  Werner Koch  <[email protected]>

	* sign.c (sleep): Redefine for W32.

	* g10.c, options.h: Set new flag opt.no_homedir_creation when
	--no-options is given.
	* openfile.c (try_make_homedir): Don't create the homedir in that case.

2001-08-03  Werner Koch  <[email protected]>

	* armor.c (armor_filter): Removed the default comment string
	because it could get us in trouble due to translations using non
	ascii characters.

2001-08-01  Werner Koch  <[email protected]>

	* keylist.c (list_keyblock_print): Do not list revoked UIDs unless
	in verbose mode and we do no signature listing.

	* getkey.c (finish_lookup): Skip subkeys which are not yet valid.
	* g10.c, options.h: New option --ignore-valid-from.

	* sign.c (make_keysig_packet): Added new sigversion argument to
	allow the caller to force generation of required signature
	version. Changed all callers. Suggested by Thomas Roessler. 
	* keyedit.c (sign_uids): Force v4 signature generation for local
	sigs.  Removed the check for local signature and pre-v4 keys.

2001-07-27  Werner Koch  <[email protected]>

	* keyedit.c (sign_uids): Check that we are not trying to to a
	lsign with a pre-v4 key.  Bug noticed by Thomas Roessler.

2001-07-26  Werner Koch  <[email protected]>

	* parse-packet.c (parse_photo_id): Reset all variables.
	* getkey.c (merge_selfsigs_main): Removed checks on PHOTO_ID
	because this is handled identically to a user ID.

2001-07-06  Werner Koch  <[email protected]>

	* cipher.c (write_header): Don't use MDC with --rfc1991.  Suggested
	by [email protected].

2001-07-05  Werner Koch  <[email protected]>

	* g10.c, options.h: New option --preserve-permissions.
	* ringedit.c (add_keyblock_resource): Use it here
	(keyring_copy): and here.

	* trustdb.c (verify_own_keys): Be more silent on --quiet.
	Suggested by Thomas Roessler.
	* sig-check.c (check_key_signature2): Ditto.
	* mainproc.c (proc_encrypted, proc_tree): Ditto
	* getkey.c (lookup): Ditto.

2001-07-04  Werner Koch  <[email protected]>

	* ringedit.c (add_keyblock_resource): Restore filename in case of error.

2001-06-25  Werner Koch  <[email protected]>

	* kbnode.c (dump_kbnode): Print the signature timestamp.

	* keyedit.c (keyedit_menu): New menu point "primary".
	(change_primary_uid_cb): New.
	(menu_set_primary_uid): New.
	* sign.c (update_keysig_packet): New.
	* build-packet.c (build_sig_subpkt): Put the primary UID flag into
	the hashed area. Allow update of some more packets.

2001-06-15  Werner Koch  <[email protected]>

	* getkey.c (merge_selfsigs): Exit gracefully when a secret key is
	encountered.  May happen if a secret key is in public keyring.
	Reported by Francesco Potorti.
	
2001-06-12  Werner Koch  <[email protected]>

	* getkey.c (compare_name): Use ascii_memistr(), ascii_memcasecmp()
	* keyedit.c (keyedit_menu): Use ascii_strcasecmp().
	* armor.c (radix64_read): Use ascii_toupper().  
	* ringedit.c (do_bm_search): Ditto.
	* keygen.c (read_parameter_file): Ditto.
	* openfile.c (CMP_FILENAME): Ditto.
	* g10.c (i18n_init): We can now use just LC_ALL.

2001-05-29  Werner Koch  <[email protected]>

	* keygen.c (generate_subkeypair): Print a warning if a subkey is
	created on a v3 key. Suggested by Brian M. Carlson.

2001-05-27  Werner Koch  <[email protected]>

	* keyid.c (get_lsign_letter): New.
	* keylist.c (list_keyblock_colon): Use it here.
	* mainproc.c (list_node): and here.

	* getkey.c, packet.h, free-packet.c: Removed that useless key
	created field; I dunno why I introducded this at all - the
	creation time is always bound to the key packet and subject to
	fingerprint calculation etc.

	* getkey.c (fixup_uidnode): Add keycreated arg and use this
	instead of the signature timestamp to calculate the
	help_key_expire.  Bug reported by David R. Bergstein.
	(merge_selfsigs_main): Correct key expiration time calculation.
	(merge_selfsigs_subkey): Ditto.

2001-05-25  Werner Koch  <[email protected]>

	* revoke.c (gen_revoke): Add a cast to a tty_printf arg.
	* delkey.c (do_delete_key): Ditto.
	* keyedit.c (print_and_check_one_sig): Ditto.
	(ask_revoke_sig): Ditto.
	(menu_revsig): Ditto.
	(check_all_keysigs): Removed unused arg.

2001-05-23  Werner Koch  <[email protected]>

	* g10.c (opts): Typo fix by Robert C. Ames.

2001-05-06  Werner Koch  <[email protected]>

	* revoke.c: Small typo fix

2001-05-04  Werner Koch  <[email protected]>

	* passphrase.c (passphrase_clear_cache): Shortcut if agent usage
	is not enabled.

2001-05-01  Werner Koch  <[email protected]>

	* passphrase.c (writen): Replaced ssize_t by int.  Thanks to 
	to Robert Joop for reporting that SunOS 4.1.4 does not have it.

2001-04-28  Werner Koch  <[email protected]>

	* getkey.c (merge_public_with_secret): pkttype was not set to subkey.

2001-04-27  Werner Koch  <[email protected]>

	* skclist.c (build_sk_list): Changed one log_debug to log_info.

2001-04-25  Werner Koch  <[email protected]>

	* keyedit.c (show_prefs): Add a verbose mode.
	(show_key_with_all_names): Pass verbose flag for special value of
	with_pref.
	(keyedit_menu): New command "showpref"
	(show_key_with_all_names): Mark revoked uids and the primary key.

2001-04-24  Werner Koch  <[email protected]>

	* getkey.c (get_primary_uid): Return a different string in case of
	error and made it translatable.

	* build-packet.c (do_secret_key): Ugly, we wrote a zero
	instead of the computed ndays.  Thanks to M Taylor for complaining
	about a secret key import problem.

2001-04-23  Werner Koch  <[email protected]>

	* hkp.c (hkp_ask_import): Allow to specify a port number for the 
	keyserver.  Add a kudge to set the no_shutdown flag.
	(hkp_export): Ditto.
	* options.skel: Document the changes 

2001-04-20  Werner Koch  <[email protected]>

	* options.skel: Add some more comments.

2001-04-19  Werner Koch  <[email protected]>

	* keyid.c (mk_datestr): New.  Handles negative times.  We must do
	this because Windoze segvs on negative times passed to gmtime().
	Changed all datestr_from function to use this one.

	* keyid.c, keyid.h (colon_strtime): New. To implement the
	fixed-list-mode.
	(colon_datestr_from_pk): New.
	(colon_datestr_from_sk): New.
	(colon_datestr_from_sig): New.
	* keylist.c (list_keyblock_colon): Use these functions here.
	* mainproc.c (list_node): Ditto.

2001-04-18  Werner Koch  <[email protected]>

	* openfile.c (open_sigfile): Fixed the handling of ".sign".
	* mainproc.c (proc_tree): Use iobuf_get_real_fname.
	Both are by Vincent Broman.

2001-04-14  Werner Koch  <[email protected]>

	* getkey.c (fixup_uidnode): Removed check for !sig which is
	pointless here.  Thanks to Jan Niehusmann.

2001-04-10  Werner Koch  <[email protected]>

	* sig-check.c (check_key_signature2): Use log_info instead of
	log_error so that messed up keys do not let gpg return an error.
	Suggested by Christian Kurz.

	* getkey.c (merge_selfsigs_main): Do a fixup_uidnode only if we
	have both, uid and sig.  Thanks to M Taylor.

2001-04-05  Werner Koch  <[email protected]>

	* armor.c (unarmor_pump_new,unarmor_pump_release): New.
	(unarmor_pump): New. 
	* pipemode.c (pipemode_filter): Use the unarmor_pump to handle
	armored or non-armored detached signatures.  We can't use the
	regular armor_filter becuase this does only chack for armored
	signatures the very first time.  In pipemode we may have a mix of
	armored and binary detached signatures.
	* mainproc.c (proc_tree): Do not print the "old style" notice when
	this is a pipemode processes detached signature.
	(proc_plaintext): Special handling of pipemode detached sigs.

	* packet.h (CTRLPKT_PLAINTEXT_MARK): New.
	* parse-packet.c (create_gpg_control): New.
	* kbnode.c (dump_kbnode): Support it here.
	* mainproc.c (check_sig_and_print): Fixed the check for bad
	sequences of multiple signatures.
	(proc_plaintext): Add the marker packet.
	(proc_tree): We can now check multiple detached signatures.

2001-04-02  Werner Koch  <[email protected]>

	The length of encrypted packets for blocksizes != 8 was not
	correct encoded.  I think this is a minor problem, because we
	usually use partial length packets.  Kudos to Kahil D. Jallad for
	pointing this out.
	* packet.h: Add extralen to PKT_encrypted.
	* cipher.c (write_header): Set extralen.
	* build-packet.c (do_encrypted): Use extralen instead of const 10.
	(do_encrypted_mdc): Ditto.
	* parse-packet.c (parse_encrypted): Set extralen to 0 because we
	don't know it here.

2001-03-30  Werner Koch  <[email protected]>

	* getkey.c (premerge_public_with_secret): Changed wording an add
	the keyID to the info message.

2001-03-29  Werner Koch  <[email protected]>

	* getkey.c (premerge_public_with_secret): Use log_info instead of
	log_error when no secret key was found for a public one.
	Fix the usage if the secret parts of a key are not available.

	* openfile.c (ask_outfile_name): Trim spaces.
	(open_outfile): Allow to enter an alternate filename.  Thanks to
	Stefan Bellon.
	* plaintext.c (handle_plaintext): Ditto.

2001-03-28  Werner Koch  <[email protected]>

	* mainproc.c (do_check_sig): Allow direct key and subkey
	revocation signature.
	* sig-check.c (check_key_signature2): Check direct key signatures.
	Print the signature class along with an error.

2001-03-27  Werner Koch  <[email protected]>

	* packet.h: Add a missing typedef to an enum.  Thanks to Stefan Bellon.

	* g10.c: New option --no-sig-create-check.
	* sign.c (do_sign): Implement it here.
	* g10.c: New option --no-sig-cache.
	* sig-check.c (check_key_signature2): Implement it here.
	(cache_selfsig_result): and here.

	* keylist.c (list_keyblock): Removed debugging stuff.

	* getkey.c (cache_public_key): Made global.
	* keygen.c (write_selfsig, write_keybinding): Cache the new key.

	* getkey.c (key_byname): Add new arg secmode and changed all
	callers to request explicitly the mode.  Deriving this information
	from the other supplied parameters does not work if neither pk nor
	sk are supplied.

2001-03-25  Werner Koch  <[email protected]>

	* packet.h (ctrlpkttype_t): New.
	* mainproc.c (add_gpg_control,proc_plaintext,proc_tree): Use the
	new enum values.
	* pipemode.c (make_control): Ditto.
	* armor.c (armor_filter): Ditto.

2001-03-24  Werner Koch  <[email protected]>

	* sign.c (do_sign): Verify the signature right after creation.

2001-03-23  Werner Koch  <[email protected]>

	* status.c, status.h (STATUS_UNEXPECTED): New.
	* mainproc.c (do_proc_packets): And emit it here.

2001-03-21  Werner Koch  <[email protected]>

	* status.c: Add sys/types.h so that it runs on Ultrix.  Reported
	by Georg Schwarz.x

	* build-packet.c (build_sig_subpkt): Fixed generaton of packet
	length header in case where 2 bytes headers are needed.  Thanks to
	Piotr Krukowiecki.

2001-03-19  Werner Koch  <[email protected]>

	* g10.c (main): the default keyring is no always used unless
	--no-default-keyring is given.  

	* ringedit.c (add_keyblock_resource): invalidate cache after file
	creation.

2001-03-15  Werner Koch  <[email protected]>

	* keygen.c (ask_algo): Changed the warning of the ElGamal S+E Algo.

	* keylist.c (print_capabilities): New.
	(list_keyblock_colon): and use it here.

2001-03-13  Werner Koch  <[email protected]>

	* main.c, options.h: New option --fixed_list_mode.
	* keylist.c (list_keyblock_colon): use it here.

	* getkey.c (merge_keys_and_selfsig): Divert merging of public keys
	to the function used in key selection..
	* keylist.c (is_uid_valid): Removed.
	(list_keyblock): Splitted into ..
	(list_keyblock_print, list_keyblock_colon): .. these.
	functions.  Changed them to use the flags set in the key lookup code.
	(reorder_keyblock): New, so that primary user IDs are listed first.

	* ringedit.c (keyring_copy): flush the new iobuf chaces before
	rename or remove operations.  This is mainly needed for W32.

	* hkp.c [HAVE_DOSISH_SYSTEM]: Removed the disabled code because we
	have now W32 socket support in ../util/http.c

	* skclist.c (key_present_in_sk_list): New.
	(is_duplicated_entry): New.
	(build_sk_list): Check for duplicates and do that before unlocking.

2001-03-12  Werner Koch  <[email protected]>

	* armor.c (parse_header_line): Removed double empty line check.
	(parse_header_line): Replaced trim_trailing_ws with a counting
	function so that we can adjust for the next read.

	* options.skel: Fixed 3 typos. By Thomas Klausner. Replaced the
	keyserver example by a better working server. 

	* parse-packet.c (parse_symkeyenc): Return Invalid_Packet on error.
	(parse_pubkeyenc): Ditto.
	(parse_onepass_sig): Ditto.
	(parse_plaintext): Ditto.
	(parse_encrypted): Ditto.
	(parse_signature): Return error at other places too.
	(parse_key): Ditto.
	* g10.c (main): Set opt.list_packets to another value when invoked
	with the --list-packets command.
	* mainproc.c (do_proc_packets): Don's stop processing when running
	under --list-packets command.

	* signal.c (do_sigaction): Removed.
	(init_one_signal): New to replace the above.  Needed to support
	systems without sigactions. Suggested by Dave Dykstra.
	(got_fatal_signal,init_signals): Use the above here. 
	(do_block): Use sigset() if sigprocmask() is not available.

	* armor.c (parse_hash_header): Test on TIGER192, which is the
	correct value as per rfc2440.  By Edwin Woudt.

2001-03-08  Werner Koch  <[email protected]>

	* misc.c: Include time.h. By James Troup.

	* getkey.c: Re-enabled the unknown user Id and PK caches and
	increased their sizes.

	* getkey.c (merge_selfsigs_main): Set expire date and continue
	processing even if we found a revoked key.
	(merge_selfsigs_subkeys): Ditto.
	
	* packet.h: Add an is_revoked flag to the user_id packet.
	* getkey.c (fixup_uidnode): Set that flag here.
	(merge_selfsigs_main): Fix so that the latest signature is used to
	find the self-signature for an UID.
	* parse-packet.c (parse_user_id): Zero out all fields.
	* mainproc.c (check_sig_and_print): Print the primary user ID
	according the the node flag and then all other non-revoked user IDs.
	(is_uid_revoked): Removed; it is now handled by the key selection code.
	
	Changed the year list of all copyright notices.
	
2001-03-07  Werner Koch  <[email protected]>

	* getkey.c (finish_lookup): Print an info message only in verbose mode.

2001-03-05  Werner Koch  <[email protected]>

	* packet.h: Replaced sigsubpkt_t value 101 by PRIV_VERIFY_CACHE.
	We have never used the old value, so we can do this without any harm.
	* parse-packet.c (dump_sig_subpkt): Ditto.
	(parse_one_sig_subpkt): Parse that new sub packet.
	* build-packet.c (build_sig_subpkt): Removed the old one from the
	hashed area.
	(delete_sig_subpkt): New.
	(build_sig_subpkt): Allow an update of that new subpkt.
	* sig-check.c (check_key_signature2): Add verification caching
	(cache_selfsig_result): New.
	* export.c (do_export_stream): Delete that sig subpkt before exporting.
	* import.c (remove_bad_stuff): New.
	(import): Apply that function to all imported data 

2001-03-03  Werner Koch  <[email protected]>

	* getkey.c: Introduced a new lookup context flag "exact" and used 
	it in all place where we once used primary.
	(classify_user_id2): Replaced the old function and add an extra
	argument to return whether an exact keyID has been requested.
	(key_byname): Removed the unused ctx.primary flag
	(get_seckey_byname2): Ditto.
	(finish_lookup): Changed debugging output.

2001-03-02  Werner Koch  <[email protected]>

	* keylist.c (list_one): Remove the merge key calls. 

2001-03-01  Werner Koch  <[email protected]>

	* getkey.c (finish_lookup): Don't use it if we no specific usage
	has been requested.
	(merge_selfsigs_main): fix UID only if we have an signature.
	(lookup): Return UNU_PUBKEY etc. instead of NO_PUBKEY if we found
	a key but the requested usage does not allow this key.
	* import.c (import_one): Take UNU_PUBKEY into account.
	* mainproc.c (list_node): Ditto.
	* keylist.c (list_keyblock): Ditto.
	* keyedit.c (print_and_check_one_sig): Ditto. 

2001-02-09  Werner Koch  <[email protected]>

	* delkey.c (delete_key): Removed that silly assert which rendered
	the whole new stuff meaningless.

2001-02-08  Werner Koch  <[email protected]>

	* getkey.c (key_byname): It can happen that we have both, sk and pk
	NULL, fix for that.

	* parse-packet.c (parse_one_sig_subpkt): Add support for
	primary_uid and key_flags.
	(can_handle_critical): Ditto

	* parse-packet.c (parse_encrypted): Fixed listing of pktlen for
	MDC packets.

	* getkey.c: Backported the version of this file from gpg 1.1. this
	involved some changes in other files too.
	* parse-packet.c (parse_key): Clear req_usage.
	* skclist.c (build_sk_list): Use req_usage to pass the usage
	information to the lookup function.
	* pkclist.c (build_pk_list): Ditto.
	* free-packet.c (copy_public_parts_to_secret_key): New.
	* keydb.h: Add IS_* macros to check the sig_class.
	* misc.c (openpgp_cipher_test_algo): New.
	(openpgp_pk_test_algo): New.
	(openpgp_pk_algo_usage): New.
	(openpgp_md_test_algo): New.
	* packet.h: Add a few fields to PKT_{public,secret}_key and
	PKT_user_id.
	* seckey-cert.c (do_check): Use the new main_keyid field.

2001-02-04  Werner Koch  <[email protected]>

	* encr-data.c (decrypt_data): Catch error when we had problems to
	parse the encrypted packet. By Timo.

2001-01-29  Werner Koch  <[email protected]>

	* g10.c (main): --batch does now set nogreeting.

	* delkey.c (do_delete_key): Fixed delete-both functionality.

2001-01-22  Werner Koch  <[email protected]>

	* g10.c: New command --delete-secret-and-public-key.
	* delkey.c (delete_key): Add new arg allow_both.
	(do_delete_key): Move most stuff from above to this new function.

2001-01-12  Werner Koch  <[email protected]>

	* passphrase.c (passphrase_to_dek): Use MD5 when IDEA is installed
	and we have no S2K.
	* mainproc.c (proc_encrypted): Likewise

2001-01-11  Werner Koch  <[email protected]>

	* sig-check.c (do_check): Print the signature key expire message
	only in verbose mode and added the keyID.

2001-01-09  Werner Koch  <[email protected]>

	* status.c, status.h: New status USERID_HINT. 
	(write_status_text): Replace LF and CR int text by C-escape sequence.

	* passphrase.c (passphrase_to_dek): Fixed the NEED_PASSPHRASE
	output.  It does now always print 2 keyIDs.  Emit the new
	USERID_HINT.

2001-01-08  Werner Koch  <[email protected]>

	* g10.c, options.h: New option --no-expensive-trust-checks.
	* keylist.c (list_keyblock): Act on this option.

2001-01-04  Werner Koch  <[email protected]>

	* g10.c (main): Set homedir only in the pre-parsing phase and
	replace backslashes in the W32 version.

2001-01-03  Werner Koch  <[email protected]>

	* status.c, status.h : New status KEY_CREATED
	* keygen.c (do_generate_keypair,generate_subkeypair): Emit it.

2000-12-28  Werner Koch  <[email protected]>

	* signal.c (got_fatal_signal): Remove lockfiles here because the
	atexit stuff does not work due to the use of raise. Suggested by
	Peter Fales.
	* gpgv.c (remove_lockfiles): New stub.
	
2000-12-19  Werner Koch  <[email protected]>

	* status.c, status.h (cpr_get_no_help): New.
	* keyedit.c (keyedit_menu): Use it here because we have our own
	help list here.

2000-12-18  Werner Koch  <[email protected]>

	* mainproc.c (print_failed_pkenc): Don't print the sometimes
	confusing message about unavailabe secret key.  Renamed ...
	(print_pkenc_list): ... to this and introduced failed arg.
	(proc_encrypted): Print the failed encryption keys and then
	the one to be used.
	(proc_pubkey_enc): Store also the key we are going to use.

	* mainproc.c (check_sig_and_print): Don't list revoked user IDs.
	(is_uid_revoked): New.

2000-12-08  Werner Koch  <[email protected]>

	* pipemode.c: Made the command work.  Currently only for
	non-armored detached signatures.
	* mainproc.c (release_list): Reset the new pipemode vars.
	(add_gpg_control): Handle the control packets for pipemode
	* status.c, status.h: New stati {BEGIN,END}_STREAM.

2000-12-07  Werner Koch  <[email protected]>

	* g10.c: New option --allow-secret-key-import.
	* import.c (import_keys,import_keys_stream): Honor this option.
	(import): New arg allow_secret and pass that arg down to ...
	(import_secret_one): to this and print a warning if secret key
	importing is not allowed.

2000-12-05  Werner Koch  <[email protected]>

	* cipher.c (cipher_filter): Moved the end_encryption status ...
	* encode.c (encode_simple,encode_crypt): to here
	* sign.c (sign_file): and here.

	* status.c (mywrite): Removed.
	(get_status_string): Removed the LFs from the strings.
	(set_status_fd,is_status_enabed,write_status_text,
	write_status_buffer): Replaced all mywrite by stdio calls and use
	fdopen to create a strem.  This is needed to make things smoother
	in the W32 version.

2000-12-04  Werner Koch  <[email protected]>

	* import.c (merge_blocks): Increment n_sigs for revocations.

2000-11-30  Werner Koch  <[email protected]>

	* g10.c (main): Use iobuf_translate_file_handle for all options
	with filehandles as arguments.  This is function does some magic
	for the W32 API.

	* verify.c (verify_signatures): Add a comment rant about the
	detached signature problem.
	* mainproc.c (proc_tree): Issue an error if a detached signature
	is assumed but a standard one was found.
	* plaintext.c (hash_datafiles): Don't fall back to read signature
	from stdin.
	* openfile.c (open_sigfile): Print verbose message only if the
	file could be accessed.

2000-11-24  Werner Koch  <[email protected]>

	* passphrase.c [HAVE_DOSISH_SYSTEM]: Disabled all the agent stuff.

2000-11-16  Werner Koch  <[email protected]>

        * g10.c: New option --use-agent
        * passphrase.c (agent_open,agent_close): New.
        (agent_get_passphrase,agent_clear_passphrase): New.
	(passphrase_clear_cache): New.
        (passphrase_to_dek): Use the agent here.
	* seckey-cert.c (do_check): Clear cached passphrases.

2000-11-15  Werner Koch  <[email protected]>

	* status.c (write_status_text): Moved the big switch to ...
	(get_status_string): ... new function.
	(write_status_buffer): New.

	* status.c (mywrite): New and replaced all write() by this.

	* status.c, status.h: Add 3 status lcodes for notaions and policy.
	* mainproc.c (print_notation_data): Do status output of notations.
	
2000-11-13  Werner Koch  <[email protected]>

	* sign.c (clearsign_file): Use LF macro to print linefeed.
	
2000-11-11  Paul Eggert  <[email protected]>

	Clean up the places in the code that incorrectly use "long" or
        "unsigned long" for file offsets.  The correct type to use is
        "off_t".  The difference is important on large-file hosts,
        where "off_t" is longer than "long".

        * keydb.h (struct keyblock_pos_struct.offset):
        Use off_t, not ulong, for file offsets.
        * packet.h (dbg_search_packet, dbg_copy_some_packets,
        search_packet, copy_some_packets): Likewise.
        * parse-packet.c (parse, dbg_search_packet, search_packet,
        dbg_copy_some_packets, copy_some_packets): Likewise.
        * ringedit.c (keyring_search): Likewise.

        * parse-packet.c (parse): Do not use %lu to report file
        offsets in error diagnostics; it's not portable.
        * ringedit.c (keyring_search): Likewise.

2000-11-09  Werner Koch  <[email protected]>

	* g10.c (main): New option --enable-special-filenames.

2000-11-07  Werner Koch  <[email protected]>
 
	* g10.c (main): New command --pipemode.
	* pipemode.c: New.

2000-10-23  Werner Koch  <[email protected]>

	* armor.c (armor_filter): Changed output of hdrlines, so that a CR
	is emitted for DOS systems.

	* keygen.c (read_parameter_file): Add a cast for isspace().

	* status.c (myread): Use SIGINT instead of SIGHUP for DOS. 

2000-10-19  Werner Koch  <[email protected]>

	* g10.c: New option --ignore-crc-error
	* armor.c (invalid_crc): New.
	(radix64_read): Act on new option.

	* openfile.c (try_make_homedir): Klaus Singvogel fixed a stupid
	error introduced on Sep 6th. 

2000-10-18  Werner Koch  <[email protected]>

	* misc.c (print_cipher_algo_note): Don't print the note for AES.
	Changed wording.

2000-10-16  Werner Koch  <[email protected]>

	* mainproc.c (do_proc_packets): Hack to fix the problem that
	signatures are not detected when there is a MDC packet but no
	compression packet.
	
	* g10.c (print_hashline): New.
	(print_mds): Use above func with --with-colons.

	* mainproc.c (check_sig_and_print): Detect multiple signatures
	and don't verify them.

2000-10-14  Werner Koch  <[email protected]>

	* mainproc.c (add_onepass_sig): There is an easier solution to the
	error fixed yesterday; just check that we only have onepass
	packets.  However, the other solution provides an cleaner
	interface and opens the path to get access to other information
	from the armore headers.
	(release_list): Reset some more variables.

2000-10-13  Werner Koch  <[email protected]>

	* mainproc.c (add_gpg_control): New.
	(do_proc_packets): use it.
	(proc_plaintext): Changed logic to detect clearsigns.
	(proc_tree): Check the cleartext sig with some new code.

	* packet.h: New packet PKT_GPG_CONTROL.
	* parse-packet.c (parse_gpg_control): New.
	* misc.c (get_session_marker): New.
	* armor.c (armor_filter): Replaced the faked 1-pass packet by the
	new control packet.

	* keyedit.c (keyedit_menu): Allow batchmode with a command_fd. 
	* status.c (my_read): New.
	(do_get_from_fd): use it.

2000-10-12  Werner Koch  <[email protected]>

	* keygen.c (keygen_add_std_prefs): Add Rijndael to the prefs.

2000-10-07  Werner Koch  <[email protected]>

	* gpgv.c: Add more stubs for ununsed code to make the binary smaller.

Wed Oct  4 15:50:18 CEST 2000  Werner Koch  <[email protected]>

        * sign.c (hash_for): New arg to take packet version in account, changed
        call callers.

        * gpgv.c: New.
        * Makefile.am: Rearranged source files so that gpgv can be build with
        at least files as possible.

Mon Sep 18 12:13:52 CEST 2000  Werner Koch  <[email protected]>

        * hkp.c (not_implemented): Print a notice for W32

Fri Sep 15 18:40:36 CEST 2000  Werner Koch  <[email protected]>

        * keygen.c (keygen_add_std_prefs): Changed order of preferences to
        twofish, cast5, blowfish.

        * pkclist.c (algo_available): Removed hack to disable Twofish.

Thu Sep 14 17:45:11 CEST 2000  Werner Koch  <[email protected]>

        * parse-packet.c (dump_sig_subpkt): Dump key flags. Print special
        warning in case of faked ARRs.

        * getkey.c (finsih_lookup): Hack so that for v4 RSA keys the subkey
        is used for encryption.

Thu Sep 14 14:20:38 CEST 2000  Werner Koch  <[email protected]>

        * g10.c (main): Default S2K algorithms are now SHA1 and CAST5 - this
        should solve a lot of compatibility problems with other OpenPGP
        apps because those algorithms are SHOULD and not optional.  The old
        way to force it was by using the --openpgp option whith the drawback 
        that this would disable a couple of workarounds for PGP.

        * g10.c (main): Don't set --quite along with --no-tty.  By Frank Tobin.

        * misc.c (disable_core_dump): Don't display a warning here but a return
        a status value and ...
        * g10.c (main): ...print warnining here. Suggested by Sam Roberts.

Wed Sep 13 18:12:34 CEST 2000  Werner Koch  <[email protected]>

        * keyedit.c (keyedit_menu): Allow to use "debug" on the secret key.

        * ringedit.c (cmp_seckey): Fix for v4 RSA keys.
        * seckey-cert.c (do_check): Workaround for PGP 7 bug.

Wed Sep  6 17:55:47 CEST 2000  Werner Koch  <[email protected]>

        * misc.c (print_pubkey_algo_note): Do not print the RSA notice.
        * sig-check.c (do_signature_check): Do not emit the RSA status message.
        * pubkey-enc.c (get_session_key): Ditto.

        * encode.c (encode_simple, encode_crypt): Fix for large files.
        * sign.c (sign_file): Ditto.

Wed Sep  6 14:59:09 CEST 2000  Werner Koch  <[email protected]>

        * passphrase.c (hash_passphrase): Removed funny assert.  Reported by
        David Mathog.

        * openfile.c (try_make_homedir): Changes for non-Posix systems.
        * g10.c (main): Take the default homedir from macro.

        * g10.c: The --trusted-key option is back.
        * trustdb.c (verify_own_key): Handle this option.
        (add_ultimate_key): Moved stuff from verify_own_key to this new func.
        (register_trusted_key): New.

Fri Aug 25 16:05:38 CEST 2000  Werner Koch  <[email protected]>

        * parse-packet.c (dump_sig_subpkt): Print info about the ARR.

        * openfile.c (overwrite_filep): Always return okay if the file is
        called /dev/null. 
        (make_outfile_name): Add ".sign" to the list of know extensions.
        (open_sigfile): Ditto.

Wed Aug 23 19:52:51 CEST 2000  Werner Koch  <[email protected]>

        * g10.c: New option --allow-freeform-uid. By Jeroen C. van Gelderen.
        * keygen.c (ask_user_id): Implemented here.

Fri Aug  4 14:23:05 CEST 2000  Werner Koch  <[email protected]>

  * status.c (do_get_from_fd): Ooops, we used fd instead of opt.command_fd.
  Thanks to Michael Tokarev.

Tue Aug  1 20:06:23 CEST 2000  Werner Koch  <[email protected]>

  * g10.c: New opttion --try-all-secrets on suggestion from Matthias Urlichs.
  * pubkey-enc.c (get_session_key): Quite easy to implement here.

Thu Jul 27 17:33:04 CEST 2000  Werner Koch  <[email protected]>

  * g10.c: New option --merge-only.  Suggested by Brendan O'Dea.
  * import.c (import_one): Implemented it here
  (import_secret_one): Ditto.
  (print_stats): and give some stats.

Thu Jul 27 12:01:00 CEST 2000  Werner Koch  <[email protected]>

  * g10.c: New options --show-session-key and --override-session-key
  * pubkey-enc.c (hextobyte): New.
  (get_override_session_key): New.
  * mainproc.c (proc_pubkey_enc): Add session-key stuff.
  * status.h, status.c (STATUS_SESSION_KEY): New.

Thu Jul 27 10:02:38 CEST 2000  Werner Koch  <[email protected]>

  * g10.c (main): Use setmode(O_BINARY) for MSDOS while generating random bytes
  (print_mds): Likewise for stdin.
  * plaintext.c (handle_plaintext): Likewise for stdout.

Mon Jul 24 10:30:17 CEST 2000  Werner Koch  <[email protected]>

  * keyedit.c (menu_expire): expire date for primary key can be set again.

Wed Jul 19 11:26:43 CEST 2000  Werner Koch  <[email protected]>

  * keylist.c (is_uid_valid): New.
  (list_keyblock): Print validity information for all user IDs.  Note, this
  has to be done at other places too; for now we have only minimal support.

Wed Jul 12 13:32:06 CEST 2000  Werner Koch  <[email protected]>

  * helptext.c, pkclist.c: s/superseeded/superseded/

Mon Jul 10 16:08:57 CEST 2000  Werner Koch  <[email protected]>

  * parse-packet.c (enum_sig_subpkt): Fixed testing on crtitical bit in case
  of a NULL buffer.  Reported by Peter Marschall.

Wed Jul  5 13:28:45 CEST 2000  Werner Koch  <[email protected]>

  * keyedit.c, keyid.c: Add some _()

  * argparse.c:  Changed the flag to suppress --version handling to also
  suppress --help.

Wed Jun 28 11:54:44 CEST 2000  Werner Koch  <[email protected]>

  * armor.c (armor_filter): Set sigclass to 0 in case of non-dash-escaped
  clearsig.  This makes this mode work again.

  * mainproc.c (proc_tree): Fixed handling of one-pass-sig packets in textmode.
  Disabled the ugly workaround for PGP 5 - let's see whether thi breaks less
  cases. Found by Ted Cabeen.

  * options.h (DBG_HASHING): New.  All commented md_start_debug are now
  controlled by this debug option.

  * sign.c (print_status_sig_created): New and called from 2 places.

  * keygen.c (gen_rsa): New, but commented.
  (ask_algo): Commented support for RSA.

  * seckey-cert.c (protect_secret_key): Started to fix the code for v4 RSA
  keys - it is not solved yet. However, we have time until, Sep 20th ;)

Wed Jun 14 12:27:09 CEST 2000  Werner Koch  <[email protected]>

  * status.c (init_shm_coprocessing): Changed the sequence of the get,attach
  to cope with the changes in newer Linux kernels.  This bug has been found
  by <[email protected]> who also proposed this solution.  Hopefully
  this does not break gpg on to many systems.

  * cipher.c (write_header): Protect the IV with the MDC too.
  * encr-data.c (decrypt_data): Likewise.

Fri Jun  9 10:09:52 CEST 2000  Werner Koch  <[email protected]>

  * g10.c: New options --no-auto-key-retrieve
  * options.h (auto_key_retrieve): New.
  * mainproc.c (check_sig_and_print): Implemented that.

Wed Jun  7 19:19:09 CEST 2000  Werner Koch  <[email protected]>

  * sig-check.c (do_check): Use EMULATE_MDENCODE also on v4 packets.

Wed Jun  7 17:25:38 CEST 2000  Werner Koch  <[email protected]>

  * cipher.c (write_header): Use plain CFB mode for MDC encrypted packets.
  * encr-data.c (decrypt_data): Ditto.

Mon Jun  5 23:41:54 CEST 2000  Werner Koch  <[email protected]>

  * seskey.c (do_encode_md, encode_md_value): Add new arg v3compathack to work
  around a bug in old versions.
  * sig-check.c (do_check): use the aboved workaround when enabled.
  * g10.c: New option --emulate-md-decode-bug

Mon Jun  5 12:37:43 CEST 2000  Werner Koch  <[email protected]>

  * build-packet.c (do_mdc): New.
  (do_encrypted_mdc): Changed for the new proposal.
  * parse-packet.c (parse_mdc): New.
  (parse_encrypted): Fixed for the new proposal.
  * packet.h (PKT_MDC): New.
  * cipher.c (cipher_filter): Build the MDC packet here.
  * g10.c (main): Enable --force-mdc.
  * encr-data.c (mdc_decode_filter): Fixed for new MDC method

  * options.h(rfc2440): New.
  * g10.c (main): Changed the selected values for --openpgp to not include
  optional algorithms.

Thu May 18 11:38:54 CEST 2000  Werner Koch  <[email protected]>

	* keyedit.c (keyedit_menu): Add a keyword arg to the prompt.

	* status.c, status.h: Added 3 new status tokens.
	* status.c (do_get_from_fd): New.
	(cpr_enabled,cpr_get,cpr_get_hidden,cpr_kill_prompt,
	 cpr_get_answer_is_yes,cpr_get_answer_yes_no_quit): Modified to work
	 with the new function.
	* g10.c: Add new option --command-fd.

	* status.c (progress_cb): New.
	(set_status_fd): Register progress functions

Fri May 12 14:01:20 CEST 2000  Werner Koch  <[email protected]>

	* delkey.c (delete_key): Add 2 new status messages
	* status.c, status.h (STATUS_DELETE_PROBLEM): New.

	Fixed years of copyright in all source files.

Mon May  1 17:08:14 CEST 2000  Werner Koch  <[email protected]>

	* trustdb.c (propagate_validity): Fixed the bug that only one uid
	gets fully trusted even when all are signed by an ultimate key.

Mon May  1 15:38:04 CEST 2000  Werner Koch  <[email protected]>

	* getkey.c (key_byname): Always returned a defined context.  Fixed
	a segv for invalid user id specifications. Reported by Walter Koch.

	* getkey.c (get_user_id): I18ned "no user id" string. By Walter.

	* pkclist.c (do_show_revocation_reason): Typo fixes.
	* helptext.c: Ditto.

	* armor.c (armor_filter): Fixed some CRLF issues.  By Mike McEwan.

Fri Apr 14 19:37:08 CEST 2000  Werner Koch  <[email protected]>

	* pkclist.c (do_show_revocation_reason): New.
	(show_revocation_reason): New and called at various places.

	* g10.c (main): Fixed small typo.

	* pkclist.c (do_we_trust): Act on always_trust but not for revoked
	keys. Suggested by Chip Salzenberg.

	* g10.c: New option --lock-never.

	* ringedit.c (get_writable_keyblock_file): New.
	* keygen.c (do_generate_keypair): Use this instead of the hardwired one.

	* keygen.c (ask_user_id): Check that the email address is in the
	correct field.	Suggested by Christian Kurz.

Mon Apr 10 13:34:19 CEST 2000  Werner Koch  <[email protected]>

	* keyedit.c (show_key_with_all_names): s/sbb/ssb/

Tue Mar 28 14:26:58 CEST 2000  Werner Koch  <[email protected]>

	* trustdb.c (verify_own_keys): Do not print warning about unprotected
	key when in quiet mode.

Wed Mar 22 13:50:24 CET 2000  Werner Koch  <[email protected]>

	* mainproc.c (print_userid): Do UTF8 conversion before printing.
	* import.c (import_one): Ditto.
	(import_secret_one): Ditto.
	(delete_inv_parts): Ditto.

Thu Mar 16 16:20:23 CET 2000  Werner Koch  <[email protected]>

	* keylist.c (print_key_data): Handle a NULL pk gracefully.

	* getkey.c (merge_one_pk_and_selfsig): Fixed silly code for
	getting the primary keys keyID but kept using the one from the
	subkey.
	* pubkey-enc.c (get_it): Print a note for expired subkeys.

	* getkey.c (has_expired): New.
	(subkeys_expiretime): New.
	(finish_lookup): Check for expired subkeys needed for encryption.
	(merge_keys_and_selfsig): Fixed expiration date merging for subkeys.

	* keylist.c (list_keyblock): Print expiration time for "sub".
	(list_one): Add missing merging for public keys.
	* mainproc.c (list_node): Ditto.

2000-03-14 13:49:38  Werner Koch  ([email protected])

	* keygen.c (keyedit_menu): Do not allow to use certain commands
	while the secret key is selected.

2000-03-09 12:53:09  Werner Koch  ([email protected])

	* keygen.c (ask_expire_interval): Movede parsig to ...
	(parse_expire_string): ... this new function. And some new control
	commands.
	(proc_parameter_file): Add expire date parsing.
	(do_generate_keypair): Allow the use of specified output files.

2000-03-08 10:38:38  Werner Koch  ([email protected])

	* keygen.c (ask_algo): Removed is_v4 return value and the commented
	code to create Elg keys in a v3 packet. Removed the rounding
	of key sizes here.
	(do_create): Likewise removed arg v4_packet.
	(gen_elg): Likewise removed arg version. Now rounding keysizes here.
	(gen_dsa): Rounding keysize now here.
	(release_parameter_list): New
	(get_parameter*): New.
	(proc_parameter_file): New.
	(read_parameter_file): New.
	(generate_keypair): Splitted. Now uses read_parameter_file when in
	batch mode.  Additional argument to specify a parameter file.
	(do_generate_keypair): Main bulk of above fucntion and uses the
	parameter list.
	(do_create): Don't print long notice in batch mode.
	* g10.c (main): Allow batched key generation.

Thu Mar  2 15:37:46 CET 2000  Werner Koch  <[email protected]>

	* pubkey-enc.c (get_it): Print a note about unknown cipher algos.

	* g10.c (opts): Add a note to the help listing about the man page
	and removed some options from the help listing.

	* keyedit.c (print_and_check_one_sig): Use a new function to truncate
	the output of the user ID.  Suggested by Jan-Benedict Glaw.

Wed Feb 23 10:07:57 CET 2000  Werner Koch  <[email protected]>

	* helptext.c: typo fix.

Thu Feb 17 13:39:32 CET 2000  Werner Koch  <[email protected]>

	* revoke.c: Removed a bunch of commented code.

	* packet.h (SIGSUBPKT_REVOC_REASON): New.
	* build-packet.c (build_sig_subpkt): Support new sub packet.
	* parse-packet.c (parse_one_sig_subpkt): Ditto.
	(dump_sig_subpkt): Ditto.
	* revoke.c (ask_revocation_reason): New.
	(release_revocation_reason_info): New.
	(revocation_reason_build_cb): New.
	(gen_revoke): Ask for reason.
	* main.h (struct revocation_reason_info): Add declaration.
	* keyedit.c (menu_revsig): Add support for revocation reason.
	(menu_revkey): Ditto.
	(sign_uid_mk_attrib): Renamed to ...
	(sign_mk_attrib): ... this, made static and add support for reasons.

Tue Feb 15 08:48:13 CET 2000  Werner Koch  <[email protected]>

	* build-packet.c (build_packet): Fixed fixing of old comment packets.

	* import.c (import_keys): Fixed importing from stdin when called with
	nnames set to zero as it normally happens.

Mon Feb 14 14:30:20 CET 2000  Werner Koch  <[email protected]>

	* sig-check.c (check_key_signature2): Add new arg r_expired.
	(do_signature_check): New arg to pass it down to ...
	(do_check): New arg r-expire which is set when the signature
	has expired.
	* trustdb.c (check_sig_record): Set SIGF_EXPIRED flag and set
	the expiretime to zero so that thi signature will not be checked
	anymore.

Fri Feb 11 17:44:40 CET 2000  Werner Koch  <[email protected]>

	* g10.c (g10_exit): Update the random seed_file.
	(main): Set the random seed file.  New option --no-random-seed-file.

Thu Feb 10 17:39:44 CET 2000  Werner Koch  <[email protected]>

	* keyedit.c (menu_expire): Fixed segv due to unitialized sub_pk.
	By R�mi.

Thu Feb 10 11:39:41 CET 2000  Werner Koch  <[email protected]>

	* keylist.c (list_keyblock): Don't print warnings in the middle of
	regulat output lines.  By R�mi.

	* sig-check.c: Include options.h

Wed Feb  9 15:33:44 CET 2000  Werner Koch  <[email protected]>

	* gpg.c: New option --ignore-time-conflict
	* sig-check.c (do_check): Implemented this option.
	* trustdb.c (check_trust): Ditto.
	* sign.c (do_sign): Ditto.
	* keygen.c (generate_subkeypair): Ditto.

	* encode.c (encode_simple): use iobuf_cancel after open failure.
	Reported by Huy Le.

Fri Jan 14 18:32:01 CET 2000  Werner Koch  <[email protected]>

	* packet.h (STRING2KEY): Changed mode from byte to int.
	* parse-packet.c (parse_key): Add the special GNU protection stuff
	* build-packet.c (so_secret_key): Ditto.
	* seckey-cert.c (do_check): Ditto.
	* keyedit.c (change_passphrase): Ditto.
	* export.c (export_secsubkeys): New.
	(do_export_stream): Hack to export the primary key using mode 1001.
	* g10.c: New command --export-secret-subkeys

Thu Jan 13 19:31:58 CET 2000  Werner Koch  <[email protected]>

	* armor.c (is_armored): Check for 1-pass-sig packets. Reported by
	David Hallinan <[email protected]>.
	(armor_filter): Replaced one LF by the LF macro.  Reported by
	Wolfgang Redtenbacher.

Wed Jan  5 11:51:17 CET 2000  Werner Koch  <[email protected]>

	* g10.c (main): Reset new global flag opt.pgp2_workarounds
	when --openpgp is used.
	* mainproc.c (proc_plaintext): Do the PGP2,5 workarounds only
	when the global flag is set.
	(proc_tree): Ditto.
	* textfilter.c (copy_clearsig_text): Ditto.
	* armor.c (armor_filter): Ditto.

	* g10.c: New option --list-only
	* mainproc.c (proc_tree): Don't do it if opt.list_only is active.
	(proc_pubkey_enc): Implement option.

	* status.h, status.c ({BEGIN,END}_{EN,DE}CRYPTION): New.
	* cipher.c (cipher_filter): New status outputs.
	* mainproc.c (proc_encrypted): New status outputs.

Fri Dec 31 14:08:15 CET 1999  Werner Koch  <[email protected]>

	* armor.c (armor_filter): Made the "Comment:" header translatable.

	* hkp.c (hkp_import): Make sure that the program does not return
	success when there is a connection problem.  Reported by Phillip Jones.

Sun Dec 19 15:22:26 CET 1999  Werner Koch  <[email protected]>

	* armor.c (LF): Use this new macro at all places where a line LF
	is needed.  This way DOSish textfiles should be created when the
	input data is also in dos mode.
	* sign.c (LF): Ditto.
	* textfilter.c (LF): Ditto.
	(copy_clearsig_text): Disabled the forcing of CR,LF sequences
	for DOS systems.

	* plaintext.c (handle_plaintext): Fixes for line endings on DOS.
	and react on a LF in cleartext.
	* armor.c (fake_packet): Restore the original line ending after
	removing trailing spaces.

	* signal.c (got_fatal_signal): DOS fix.

Thu Dec 16 10:07:58 CET 1999  Werner Koch  <[email protected]>

	* mainproc.c (print_failed_pkenc): Fix for unknown algorithm.
	Found by [email protected].

Thu Dec  9 10:31:05 CET 1999  Werner Koch  <[email protected]>

	* hkp.c: i18n the strings.

Sat Dec  4 15:32:20 CET 1999  Werner Koch  <[email protected]>

	* trustdb.c (verify_key): Shortcut for ultimately trusted keys.

Sat Dec  4 12:30:28 CET 1999  Werner Koch  <[email protected]>

	* pkclist.c (build_pk_list): Validate the trust using the namehash
	if this one has been set by the key lookup.

	* g10.c: Add --delete-secret-key to the help page.

	* openfile.c (copy_options_file): Made static.
	(try_make_homedir): New.
	* ringedit.c (add_keyblock_resource): Use the try_make_hoemdir logic.
	* tdbio.c (tdbio_set_dbname): Likewise.

	* keygen.c (generate_user_id): Use m_alloc_clear() here. We should
	better use an allocation function specific to the user_id packet.

	* keygen.c (keygen_add_std_prefs): Changed symmetric preferences
	to include Blowfish again.  This is due to it's better speed compared
	to CAST5.

	* g10.c (strusage): Print the home directory.

	* armor.c (armor_filter): Take action on the cancel control msg.
	* filter.h (armor_filter_context_t): Add cancel flag.

Mon Nov 29 21:52:11 CET 1999  Werner Koch  <[email protected]>

	* g10.c: New option --fast-list-mode ..
	* keylist.c (list_keyblock): .. and implemented.
	* mainproc.c (list_node): Ditto.

	* import.c (mark_non_selfsigned_uids_valid): Fixed the case that there
	is a uid without any packet following.

Mon Nov 22 11:14:53 CET 1999  Werner Koch  <[email protected]>

	* mainproc.c (proc_plaintext): Never enable the hash processing
	when skip_verify is active.

	* armor.c (parse_header_line): Stop parsing on a WS line too.
	Suggested by Aric Cyr.

	* tdbdump.c (HEXTOBIN): Changed the name of the argument, so that
	traditional cpp don't mess up the macros. Suggested by Jos Backus.

	* mainproc.c (list_node): Print the PK algo in the --with-colon mode.
	* keylist.c (list_keyblock): Ditto.

	* signal.c (got_fatal_signal): Found the reason why exit(8) did not
	work - it is better to set the disposition back to default before
	raising the signal.  Print the notice on stderr always.

Fri Nov 12 20:33:19 CET 1999  Werner Koch  <[email protected]>

	* g10.c (make_username): Swapped the logic.
	* keylist.c (public_key_list): Now takes a STRLIST as arg and moved
	the creation ot this list to the caller, so that he can copy with
	UTF-conversion of user IDs.  Changed all callers.
	(secret_key_list): Likewise.

	* getkey.c (get_user_id_string_native): New and ...
	* encode.c (write_pubkey_enc_from_list): ... use it here.

	* pubring.asc: Updated.

	* packet.h (PKT_PHOTO_ID): New.
	* parse-packet.c (parse_photo_id): New.
	* build-packet.c (do_user_id: Handle photo IDs.
	(build_packet): Change CTB for photo IDs
	* free-packet.c (free_user_id): Release memory used for photo IDs
	* sig-check.c (hash_uid_node): Handle photo IDs too.
	* trustdb.c (print_uid_from_keyblock): Hash photo ID.
	(make_uid_records): Ditto.
	* getkey.c (find_by_name): Ditto.
	* keyedit.c (show_prefs): Ditto.
	* keylist.c (list_keyblock): Ditto.

Thu Oct 28 16:08:20 CEST 1999  Werner Koch  <[email protected]>

	* keygen.c (ask_expire_interval): Print a warning for systems
	with a signed 32 time_t if the exiration time is beyoind 2038.

Fri Oct  8 20:40:50 CEST 1999  Werner Koch  <[email protected]>

	* ringedit.c (enum_keyblocks): The last fix way really stupid;
	reverted and set rt to Unknown.

Fri Oct  8 20:32:01 CEST 1999  Werner Koch  <[email protected]>

	* ringedit.c (enum_keyblocks): Zero the entire kbpos out on open.

	* g10.c (oEntropyDLL): Removed option.
	(main): Made the warning on development versions more verbose.

	* g10.c (oHonorHttpProxy): New option.
	* hkp.c (hkp_ask_import,hkp_export): Implement this option.
	* options.skel: Enable this option for new installations

Mon Oct  4 21:23:04 CEST 1999  Werner Koch  <[email protected]>

	* import.c (import_keys): Changed calling interface, adjusted caller.
	(import): Moved printing of stats out ...
	(print_stats): New. ... to here.
	(import_keys_stream): Call stats print here.
	(import_keys): Print stats as totals for all files.

	* tdbio.h (DIRF_NEWKEYS): New
	* tdbio.c (tdbio_dump_record): Print the new flag.
	* trustdb.c (check_trust_record): New arg sigs_only.  Adapted all
	callers.
	(do_update_trust_record): Removed recheck arg and add a new sigs_only
	do we can later improve on the performance.  Changed all callers too.
	(check_trustdb): Evalutate the new flag and add a status output.
	Do a check when the dir record has not been checked.
	(build_cert_tree): Evaluate the new flag.
	(check_trust): Ditto.  Do a trust_record check, when the dir record
	is not marked as checked.
	(mark_fresh_keys): New.
	(clear_lid_table): New.
	(sync_trustdb): New.
	* import.c (import_keys): Call sync_trustdb() after processing.
	(import_keys_stream): Ditto.
	* tdbdump.c (import_ownertrust): Ditto.

	* import.c (import_revoke_cert): Notify the trust DB.
	(do_update_trust_record): Use |= to set the REVOKED bit and not &=;
	shame on me for this bad copy+paste introduced bug.
	(do_we_trust): Add trustmask to allow revoked key override to work.
	Chnaged are to allow return of a mofified trustlevel. Adapted the
	one caller.

	* g10.c: New options --emulate-3des-s2k-bug
	* passphrase.c (hash_passphrase): Implemented above.

	* mainproc.c (proc_tree): Check for standalone signatures.
	(do_check_sig): Print a notice for a standalone revocation
	(check_sig_and_print): Do not print an error for unchecked standalone
	revocations.

Tue Sep 28 20:54:37 CEST 1999  Werner Koch  <[email protected]>

	* encode.c (encode_simple): Use new CTB when we don't have the
	length of the file.  This is somewhat strange as the comment above
	indicates that this part is actually fixed for PGP 5 - maybe I simply
	lost the source line, tsss.

	* armor.c (armor_filter): Set a flag if no OpenPGP data has been found.
	* verify.c (verify_signatures): Add an error helptext.

Thu Sep 23 19:24:30 CEST 1999  Werner Koch  <[email protected]>

	* openfile.c (open_outfile): Fixed the 8dot3 handling.

	* passphrase.c (passphrase_to_dek): Print uid using utf8 func.
	* delkey.c (delete_key): Ditto.
	* pkclist.c (show_paths,do_edit_ownertrust,do_we_trust): Ditto
	(do_we_trust_pre): Ditto.
	* trustdb.c (print_user_id,check_uidsigs): Ditto.
	* revoke.c (gen_revoke,ask_revoke_sig): Ditto.

Thu Sep 23 09:52:58 CEST 1999  Werner Koch  <[email protected]>

	* verify.c (print_file_status): New.
	(verify_one_file): Moved status print to th new fnc. Add error status.
	* status.c, status.h (STATUS_FILE_ERROR): New

Wed Sep 22 10:14:17 CEST 1999  Werner Koch  <[email protected]>

	* openfile.c (make_outfile_name): Use case-insenstive compare for
	DOS systems.  Add ".pgp" to the list of know extensions.
	(open_outfile): For DOS systems try to replace the suffiy instead of
	appending it.

	* status.c, status.h: Add STATUS_FILE_{START,DONE}.
	* verify.c (verify_one_file): Emit these new stati.

	* sign.c (clearsign_file): Avoid duplicated Entries in the "Hash:"
	line.  Those headers are now only _not_ printed when there are
	only old-style keys _and_ all hashs are MD5.

Mon Sep 20 12:24:41 CEST 1999  Werner Koch  <[email protected]>


	* verify.c (verify_files, ferify_one_file): New.
	* g10.c:  New command --verify-files

Fri Sep 17 12:56:42 CEST 1999  Werner Koch  <[email protected]>

	* g10.c: Add UK spelling as alias for armor options ;-)

	* import.c (append_uid): Fixed a SEGV when there is no selfsig and
	no subkey.
	(merge_sigs): Ditto.  Removed the assertion.

Wed Sep 15 16:22:17 CEST 1999  Werner Koch  <[email protected]>

	* g10.c: New option --entropy-dll-name

Mon Sep 13 10:51:29 CEST 1999  Werner Koch  <[email protected]>

	* signal.c (got_fatal_signal): Print message using write(2) and
	only for development versions.

Mon Sep  6 19:59:08 CEST 1999  Werner Koch  <[email protected]>

	* tdbio.c (tdbio_set_dbname): Use mkdir macro
	* ringedit.c (add_keyblock_resource): Ditto.

Fri Sep  3 10:04:45 CEST 1999  Werner Koch  <[email protected]>

	* pkclist.c (build_pk_list): Skip keys set with --encrypt-to also
	when asking for a key.

	* plaintext.c (handle_plaintext): Make sure that we don't read a
	second EOF in the read loop for partial length packets.

	* mainproc.c (check_sig_and_print): print user ID as utf-8.

Thu Sep  2 16:40:55 CEST 1999  Werner Koch  <[email protected]>

	* import.c (merge_blocks): First add new subkeys, then merge subkey
	certificates.
	(merge_sigs): Don't merge subkey signatures here.

Wed Sep  1 15:30:44 CEST 1999  Werner Koch  <[email protected]>

	* keygen.c (ask_expire_interval): Fixed bug related to cpr_xx (tnx
	Francis J. Lacoste).

Tue Aug 31 17:20:44 CEST 1999  Werner Koch  <[email protected]>

	* plaintext.c (do_hash): Hash CR,LF for a single CR.
	(ask_for_detached_datafile): Changed arguments to be closer to
	those of hash_datafiles and cleanup the code a bit.
	* mainproc.c (proc_tree): Workaround for pgp5 textmode detached
	signatures.  Changed behavior of asking for data file to be the same
	as with provided data files.

	* keylist.c (list_keyblock): Use UTF8 print functions.

Mon Aug 30 20:38:33 CEST 1999  Werner Koch  <[email protected]>

	* import.c (chk_self_sigs): some s/log_error/log_info/ so that gpg
	does not return an error if a key has some invalid packets.

	* helptext.c: Fixed some typos and changed the way the
	translation works.  The english text is now the keyword for gettext
	and not anymore the keyword supplied to the function.  Done after
	some discussion with Walter who thinks this is much easier for the
	translators.

	* misc.c (disable_core_dumps): Don't do it for DOSish systems.

	* signal.c (signal_name): Bounds check on signum.

Wed Aug  4 10:34:18 CEST 1999  Werner Koch  <[email protected]>

	* pubring.asc: Updated.

	* pkclist.c (do_we_trust_pre,check_signatures_trust): Do not print
	the warning about --always_trust when --quiet is used.

	* pkclist.c (fpr_info): New and called at several places.

	* parse-packet.c (dump_sig_subpkt): List revocation key contents.

Mon Jul 26 09:34:46 CEST 1999  Werner Koch  <[email protected]>

	* pkclist.c (build_pk_list): Fixed typo in format string.

	* trustdb.c (create_shadow_dir): Don't translate the error string.

	* g10.c (main): Fixed spelling of user-id.
	* getkey.c (find_by_name_pk,find_by_name_sk,
	find_by_keyid,find_by_keyid_sk): Ditto and translate it.
	* import.c (mark_non_selfsigned_uids_valid,delete_inv_parts): Ditto.


Mon Jul 26 01:01:39 CEST 1999  Michael Roth <[email protected]>

	* g10.c, options.h: New options --no-literal and --set-filesize

	* encode.c (encode_simple, encode_crypt): Support for the options
	--no-literal and --set-filesize.

	* sign.c (sign_file): ditto.

Fri Jul 23 13:53:03 CEST 1999  Werner Koch  <[email protected]>


	* ringedit.c (enum_keyblocks): Removed annoying error message in cases
	when we have no keyring at all to enum.

	* getkey.c (classify_user_id): Rewrote to relax the recognition of
	keyIDs and fingerprints (Michael).

	* mainproc.c (check_sig_and_print): Print status NO_PUBKEY.
	(print_failed_pkenc): Print status NO_SECKEY.

	* import.c (mark_non_selfsigned_uids_valid): New.
	* g10.c: New option --allow-non-selfsigned-uid.

	* pkclist.c (print_fpr): New.
	(do_we_trust_pre): Print the fpr before asking whether to use the key
	anyway.
	(do_edit_ownertrust): Likewise.

Thu Jul 22 20:03:03 CEST 1999  Werner Koch  <[email protected]>


	* ringedit.c (enum_keyblocks): Removed annoying error message in cases
	when we have no keyring at all to enum.

	* getkey.c (classify_user_id): Rewrote to relax the recognition of
	keyIDs and fingerprints (Michael).

	* mainproc.c (check_sig_and_print): Print status NO_PUBKEY.
	(print_failed_pkenc): Print status NO_SECKEY.

	* import.c (mark_non_selfsigned_uids_valid): New.
	* g10.c: New option --allow-non-selfsigned-uid.

Thu Jul 15 10:15:35 CEST 1999  Werner Koch  <[email protected]>

	* g10.c: New options --disable-{cipher,pubkey}-algo.

Wed Jul 14 19:42:08 CEST 1999  Werner Koch  <[email protected]>

	* status.h (STATUS_IMPORTED): New.
	* import.c (import): Print some status information (Holger Schurig).

	* g10.c (main): Make --no-greeting work again. Add a warning when
	--force-mds is used.

Tue Jul 13 17:39:25 CEST 1999  Werner Koch  <[email protected]>

	* pkclist.c (do_edit_ownertrust): Changed the way help works.
	(build_pk_list): Implemented default recipient stuff.
	* g10.c: New options --default-recipient[-self]
	(main): Suppress greeting in most cases, entering a passphrase or
	a missing value is not considered to be interactive use.
	Merged --print-md and --print-mds; the latter is now obsolete.
	Changed the way --gen-random works and documented it.
	Changed the way --gen-prime works and add a man entry.
	* g10.c (MAINTAINER_OPTIONS): Removed.

Mon Jul 12 18:45:57 CEST 1999  Werner Koch  <[email protected]>

	* keyedit.c (keyedit_menu): Add arg sign_mode and changed callers
	* g10.c (main): New command --lsign-key.

Mon Jul 12 14:55:34 CEST 1999  Werner Koch  <[email protected]>

	* mainproc.c (kidlist_item): New.
	(release_list): Release failed pk-enc-list.
	(print_failed_pkenc): New
	(proc_encrypted): Print info about failed PK enc.

	* openfile.c (make_outfile_name): s/error/info/

	* passphrase.c (passphrase_to_dek): Return an empty passphrase when
	in batch mode and don't make the warning message fatal
	* seckey-cert.c (check_secret_key): Try only once when in batch mode.

	* g10.c (make_username): New.

Thu Jul  8 16:21:27 CEST 1999  Werner Koch  <[email protected]>


	* packet.h (PKT_ring_trust): New
	* parse-packet.c (parse_trust): Store trust value
	* build-packet (build_packet): Ignore ring trust packets.
	* mainproc.c (add_ring_trust): New.
	(list_node): Print "rtv" records.
	* g10.c: New option --with-fingerprint.

	* trustdb.c (verify_own_keys): Don't insert if we are dry running
	(check_trust): Ditto.

Wed Jul  7 13:08:40 CEST 1999  Werner Koch  <[email protected]>

	* Makefile.am: Support for libtool.

	* keygen.c (ask_expire_interval): Hack to allow for an expire date.

	* trustdb.c (do_update_trust_record,update_trust_record): Splitted.
	(check_trust_record): New.
	(check_trust,build_cert_tree): Check the dir record as needed.
	(upd_pref_record): Removed.
	(make_pref_record): New.
	(propagate_validity): Stop as soon as we have enough validity.

	* tbdio.c (MAX_CACHE_ENTRIES_HARD): Increased the limit.


Fri Jul  2 11:45:54 CEST 1999  Werner Koch  <[email protected]>

	* g10.c (g10_exit): Dump random stats.

	* sig-check.c (check_key_signature,check_key_signature2): Enhanced
	version and wrapper for old function.
	(do_signature_check,signature_check): Ditto.

Thu Jul  1 12:47:31 CEST 1999  Werner Koch  <[email protected]>


	* keyedit.c (show_key_with_all_names): Print a notice for disabled keys.
	(enable_disable_keys): Add functionality
	* pkclist.c (edit_ownertrust): preserve disabled state.
	(build_pk_list): Skip disabled keys.
	* trustdb.c (upd_one_ownertrust): Ditto.
	(build_cert_tree): Mask the ownertrust.
	(trust_letter): Mask the value.
	(do_check): Take disabled flag into account.

	* passphrase.c (passphrase_to_dek): Add a pubkey_algo arg and changed
	all callers.

	* g10.c (utf8_strings): 2 new options.

	* trustdb.c (insert_trust_record_by_pk): New, replaces the next one.
	(insert_trust_record): Now takes a keyblock as arg.  Changed all
	callers to use the appropritae function.

	* openfile.c (ask_outfile_name): New.
	* plaintext.c (handle_plaintext): Ask for filename if there is
	no valid syntax. Don't use fname varbatim but filter it.

Tue Jun 29 21:44:25 CEST 1999  Werner Koch  <[email protected]>


	* trustdb.h (TRUST_FLAG_DISABLED): New.

	* status.c (USE_CAPABILITIES): Capabilities support (Remi).

	* tdbio.c : Added new fields to the DIR record.
	(tdbio_write_record): Fixed the update of the hash tables.
	(tdbio_delete_record): Drop the record from the hash tables.
	(drop_from_hashtbl): New.

	* status.c (cpr_get): Special online help mode.
	* helptext.c ("keyedit.cmd"): Removed.
	* keyedit.c (keyedit_menu): Use only help system.
	(enable_disable_key): New bit doies not yet work.

Sat Jun 26 12:15:59 CEST 1999  Werner Koch  <[email protected]>


	* dearmor.c (enarmor_file): Fixed comment string.
	* tdbdump.c (export_ownertrust): Text fix.
	* tbio.c (tdbio_invalid): Ditto.

	* parse-packet.c (parse_key): Made temp buffer larger.

	* Makefile.am (install-data-local): Add missing backslashes

Tue Jun 15 12:21:08 CEST 1999  Werner Koch  <[email protected]>

	* g10.c (main): Made iterated+salted the default S2K method.

	* Makefile.am (install-data-local): Use DESTDIR.

	* passphrase.c (passphrase_to_dek): Emit missing-passphrase while in
	batchmode.

	* parse-packet.c (parse_pubkeyenc): Fixed a SEGV.

Mon Jun 14 21:18:54 CEST 1999 Michael Roth <[email protected]>

	* g10.c: New options --openpgp, --no-tty, --emit-version,
	  --default-comment and --lock-multiple

Thu Jun 10 14:18:23 CEST 1999  Werner Koch  <[email protected]>

	* free-packet.c (free_encrypted): Fixed EOF case (Remi).
	(free_plaintext): Ditto.

	* helptext.c (keyedit.delsig.unknown): New (Remi).
	* keyedit.c (print_and_check_one_sig): Add arg print_without_key and
	changed all callers to make use of it (Remi):

Tue Jun  8 13:36:25 CEST 1999  Werner Koch  <[email protected]>

	* keylist.c (print_key_data): New and called elsewhere.
	* g10.c: New option --with-key-data

Wed Jun  2 14:17:19 CEST 1999  Werner Koch  <[email protected]>

	* mainproc.c (proc_tree): Yet another bad hack to cope with
	broken pgp2 created detached messages in textmode.

Tue Jun  1 16:01:46 CEST 1999  Werner Koch  <[email protected]>

	* openfile.c (make_outfile_name): New.
	* plaintext.c (handle_plaintext): Outputfile is now the inputfile
	without the suffix.
	* g10.c: New option --use-embedded-filename

Mon May 31 19:41:10 CEST 1999  Werner Koch  <[email protected]>

	* g10.c (main): Fix for SHM init (Michael).

	* compress.c, encr-data.c, mdfilter.c,
	  plaintext.c, free-packet.c: Speed patches (R�mi).

Thu May 27 09:40:55 CEST 1999  Werner Koch  <[email protected]>

	* status.c (cpr_get_answer_yes_no_quit): New.
	* keyedit.c (menu_delsig): New.
	(check_all_keysigs): Splitted.
	(print_and_check_one_sig): New.

Wed May 26 14:36:29 CEST 1999  Werner Koch  <[email protected]>

	* build-packet.c (build_sig_subpkt): Support large packets.
	* parse-packet.c (enum_sig_subpkt): Replaces parse_sig_subpkt.
	* mainproc.c (print_notation_data): Print all notation packets.
	* g10.c (add_notation_data): Add a way to specify the critical flag.
	(main): Add option --set-policy-url.
	(check_policy_url): Basic checks.
	* sign.c (mk_notation_and_policy): Replaces mk_notation.

	* parse-packet.c (can_handle_critical): Moved decision whether we can
	handle critical subpacket to an extra function.

Tue May 25 19:50:32 CEST 1999  Werner Koch  <[email protected]>

	* sign.c (sign_file): Always use compression algo 1 for signed
	onyl file becuase we can� be sure the the verifier supports other
	algorithms.

	* build-packet.c (build_sig_subpkt): Support for notation data.
	* sign.c (sign_file,clearsign_file,make_keysig_packet): Ditto.
	(mk_notation): New.
	* g10.c (add_notation_data): New and add option -N
	* mainproc.c (print_notation_data): New.
	(check_sig_and_print): Print any notation data of the signed text.

Sun May 23 14:20:22 CEST 1999  Werner Koch  <[email protected]>

	* pkclist.c (check_signatures_trust): Print a warning and return
	immediateley if opt.always_trust is true.

	* g10.c (main): Corrected handling of no-default-keyring

	* pkclist.c (algo_available): Disable Twofish until we have settled
	how to do the MDC.

	* hkp.c: Disable everything for mingw32

Sat May 22 22:47:26 CEST 1999  Werner Koch  <[email protected]>

	* mainproc.c (check_sig_and_print): Add sig creation time to the
	VALIDSIG status output. Add more info to the ERRSIG output.
	* sig-check.c (signature_check): Add sig time after epoch to SIG_ID.

	* import.c (import_one): Merge duplicate user IDs.
	(collapse_uids): New.
	* kbnode.c (move_kbnode): New.
	(remove_kbnode): New.
	* keyedit.c (keyedit_menu): Call collapse_uids.

	* g10.c: new option --logger-fd.

	* import.c: s/log_*_f/log_*/

Thu May 20 14:04:08 CEST 1999  Werner Koch  <[email protected]>

	* misc.c (pull_in_libs): do the volatile only for gcc

	* sig-check (signature_check): Emit SIG_iD only for classes 0 and 1.

	* armor.c (armor_filter): Add detection of PGP2 created clearsigs.
	(fake_packet): A tab is not a WS for pgp2 - handle this.
	* textfilter.c (len_without_trailing_chars): New.
	(copy_clearsig_text): Add pgp2mode arg.
	* sign.c (clearsign_file): pass old_style to the above fnc.


Wed May 19 16:04:30 CEST 1999  Werner Koch  <[email protected]>

	* g10.c: New option --interactive.

	* mainproc.c (proc_plaintext): Add workaround for pgp2 bug
	(do_check_sig): Ditto.
	(proc_tree): Ditto.
	* plaintext.c (do_hash): Ditto.
	(hash_datafiles): Ditto, add an arg, changed all callers.
	* mdfilter.c (md_filter): Add support for the alternate hash context.

Mon May 17 21:54:43 CEST 1999  Werner Koch  <[email protected]>

	* parse-packet.c (parse_encrypted): Support for PKT_ENCRYPTED_MDC.
	* build-packet.c (do_encrypted_mdc): Ditto.
	* cipher.c (write_header): Add mdc hashing.
	(cipher_filter): write out the hash.
	* mainproc.c (do_proc_packets): Add PKT_ENCRYPTED_MDC.
	* encr-data.c (decrypt_data): Add mdc hashing.
	(mdc_decode_filter): New.

	* parse-packet.c (parse_sig_subpkt): Fixed stupid bug for subpkt
	length calculation
	(parse_signature): Fixed even more stupid bug.

Sat May  8 19:28:08 CEST 1999  Werner Koch  <[email protected]>

	* build-packet.c (do_signature): Removed MDC hack.
	* encode.c (encode_crypt_mdc): Removed.
	* mainproc.c (do_check_sig): Removed MDC hack.
	(check_sig_and_print): Ditto.
	* parse-packet.c (parse_signature): Ditto.
	* sig-check.c (mdc_kludge_check): Ditto.
	* free-packte.c (copy_signature, free_seckey_enc): Ditto.

	* parse-packet.c (parse_signature,parse_key): Store data of
	unknown algorithms with mpi_set_opaque inseatd of the old
	faked data stuff.
	(read_rest): Removed.
	(read_rest2): Renamed to read_rest
	* build-packet.c (write_fake_data): Use mpi_get_opaque.
	* free-packet.c (cp_fake_data): Removed and cahnged all callers
	to use mpi_copy.
	(free_pubkey_enc,free_seckey_enc,release_public_key_parts,
	 release_secret_key_parts): Use mpi_free for opaque data.

Thu May  6 14:18:17 CEST 1999  Werner Koch  <[email protected]>

	* trustdb.c (check_trust): Check for revoked subkeys.
	* pkclist.c (do_we_trust): Handled revoked subkeys.
	(do_we_trust_pre): Ditto.
	(check_signatures_trust): Ditto.

	* build-packet.c (hash_public_key): Fix for ancient g10 keys.

	* mainproc.c (do_proc_packets): Return EOF if no data has been read.
	* g10.c (main): Catch errors for default operation.

Thu Apr 29 12:29:22 CEST 1999  Werner Koch  <[email protected]>

	* sign.c (sign_file): Fixed hashing in case of no subpackets.
	(clearsign_file): Ditto.
	(make_keysig_packet): Ditto.

Wed Apr 28 13:03:03 CEST 1999  Werner Koch  <[email protected]>

	* keyedit.c (keyedit_menu): Add new command revkey.
	* (menu_revkey): New.


Mon Apr 26 17:48:15 CEST 1999  Werner Koch  <[email protected]>

	* parse-packet.c (parse_signature): Add the MDC hack.
	* build-packet.c (do_signature): Ditto.
	* free-packet.c (free_seckey_enc,copy_signature,cmp_signatures): Ditto.
	* mainproc.c (do_check_sig): Ditto.
	* sig-check.c (mdc_kludge_check): New.
	* encode.c (encrypt_mdc_file): New.

	* keyedit.c (check_all_keysigs): List revocations.
	* (menu_revsig): New.
	* sign (make_keysig_packet): Support for class 0x30.

Sun Apr 18 20:48:15 CEST 1999  Werner Koch  <[email protected]>

	* pkclist.c (select_algo_from_prefs): Fixed the case that one key
	has no preferences (Remi Guyomarch).

	keylist.c (list_keyblock): ulti_hack to propagate trust to all uids.

Sun Apr 18 10:11:28 CEST 1999  Werner Koch  <[email protected]>

	* seckey-cert.c (do_check): Use real IV instead of a 0 one, so that
	it works even if the length of the IV doesn't match the blocksize.
	Removed the save_iv stuff.
	(protect_secret_key): Likewise.  Create the IV here.
	* packet.h (PKT_secret_key): Increased size of IV field and add a
	ivlen field.
	* parse-packet.c (parse_key): Use the len protect.ivlen.
	* build-packet.c (do_secret_key). Ditto.

	* getkey.c (key_byname): Close keyblocks.

	* Makefile.am (gpgm): Removed this
	* g10.c: Merged gpg and gpgm

	* import.c (import): Utilize option quiet.
	* tdbio.c (tdbio_set_dbname): Ditto.
	* ringedit.c (add_keyblock_resource,keyring_copy): Ditto.

	* keyedit.c (sign_uids): Add some batch support.

	* g10.c (main): add call to tty_batchmode.

Fri Apr  9 12:26:25 CEST 1999  Werner Koch  <[email protected]>

	* status.c (write_status_text): Some more status codes.
	* passphrase_to_dek (passphrase_to_dek): add a status code.
	* seckey_cert.c (check_secret_key): Likewise.

	* encr-data.c (decrypt_data): Reverse the last changes
	* cipher.c (write_header): Ditto.

	* parse-packet.c (parse_key): Dropped kludge for ancient blowfish mode.

Thu Apr  8 09:35:53 CEST 1999  Werner Koch  <[email protected]>

	* mainproc.c (proc_encrypted): Add a new status output
	* passphrase.c (passphrase_to_dek): Ditto.
	* status.h status.c: Add new status tokens.

Wed Apr  7 20:51:39 CEST 1999  Werner Koch  <[email protected]>

	* encr-data.c (decrypt_data): Fixes for 128 bit blocksize
	* cipher.c (write_header): Ditto.
	* seckey-cert.c (do_check): Ditto.
	(protect_secret_key). Ditto.
	* misc.c (print_cipher_algo_note): Twofish is now a standard algo.

	* keygen.c (do_create): Fixed spelling (Ga�l Qu�ri)
	(ask_keysize): Only allow keysizes up to 4096

	* ringedit.c (add_keyblock_resource): chmod newly created secrings.

	* import.c (delete_inv_parts): Fixed accidently deleted subkeys.

Tue Apr  6 19:58:12 CEST 1999  Werner Koch  <[email protected]>

	* armor.c: Removed duped include (John Bley)
	* mainproc.c: Ditto.

	* build-packet.c (hash_public_key): Fixed hashing of the header.

	* import.c (delete_inv_parts): Allow import of own non-exportable sigs.

Sat Mar 20 13:59:47 CET 1999  Werner Koch  <[email protected]>

	* armor.c (fake_packet): Fix for not not-dash-escaped

Sat Mar 20 11:44:21 CET 1999  Werner Koch  <[email protected]>

	* g10.c (main): Added command --recv-keys
	* hkp.c (hkp_import): New.

Wed Mar 17 13:09:03 CET 1999  Werner Koch  <[email protected]>

	* trustdb.c (check_trust): add new arg add_fnc and changed all callers.
	(do_check): Ditto.
	(verify_key): Ditto.
	(propagate_validity): Use the new add_fnc arg.
	(print_user_id): Add the FILE arg.
	(propagate_ownertrust): New.
	* pkclist.c (add_ownertrust_cb): New and changed the add_ownertrust
	logic.

	* getkey.c (get_keyblock_bylid): New.
	* trustdb.c (print_uid_from_keyblock): New.
	(dump_tn_tree_with_colons): New.
	(list_trust_path): Add colon print mode.

	* trustdb.c (insert_trust_record): Always use the primary key.

	* encode.c (encode_simple): Added text_mode filter (R�mi Guyomarch)
	(encode_crypt): Ditto.

	* mainproc.c (proc_pubkey_enc): Added status ENC_TO.
	* armor.c (armor_filter): Added status NODATA.
	* passphrase.c (passphrase_to_dek): Always print NEED_PASSPHRASE
	* seckey_cert.c (check_secret_key): Added BAD_PASS status.

	* g10.c (main): Set g10_opt_homedir.

Sun Mar 14 19:34:36 CET 1999  Werner Koch  <[email protected]>

	* keygen.c (do_create): Changed wording of the note (Hugh Daniel)

Thu Mar 11 16:39:46 CET 1999  Werner Koch  <[email protected]>

	* tdbdump.c: New

	* trustdb.c (walk_sigrecs,do_list_sigs,list_sigs,
	list_records,list_trustdb,export_ownertrust,import_ownertrust): Moved
	to tdbdump.c
	(init_trustdb): renamed to setup_trustdb.  Changed all callers.
	(do_init_trustdb): renamed to init_trustdb().
	* trustdb.c (die_invalid_db): replaced by tdbio_invalid.
	* tdbio.c (tdbio_invalid): New.

	* import.c (delete_inv_parts): Skip non exportable signatures.
	* keyedit.c (sign_uid_mk_attrib): New.
	(sign_uids): Add the local argument.
	(keyedit_menu): New "lsign" command.
	* trustdb.c (register_trusted_key): Removed this and all related stuff.
	* g10.c (oTrustedKey): Removed option.

	* tdbio.h (dir.valcheck): New trustdb field.
	* tdbio.c: Add support for this field
	(tdbio_read_modify_stamp): New.
	(tdbio_write_modify_stamp): New.
	* trustdb.c (do_check): Check against this field. Removed cache update.
	(verify_key): Add cache update.
	(upd_uid_record): Some functional changes.
	(upd_cert_record): Ditto

Wed Mar 10 11:26:18 CET 1999  Werner Koch  <[email protected]>

	* keylist.c (list_keyblock): Fixed segv in uid. Print 'u' as
	validity of sks.

Mon Mar  8 20:47:17 CET 1999  Werner Koch  <[email protected]>

	* getkey.c (classify_user_id): Add new mode 12 (#<lid>).

	* seckey-cert.c (check_secret_key): replaced error by info.

	* trustdb.c (query_trust_info): Add another arg, changed all callers.
	(check_trust): Ditto.
	(do_check): Ditto.
	(verify_key): Handle namehash.
	* keylist.c (list_keyblock): print trust info for user ids.

	* sig-check.c (signature_check): Add sig-created to status output.

Tue Mar  2 16:44:57 CET 1999  Werner Koch  <[email protected]>

	* textfilter.c (copy_clearsig_text): New.
	(clearsign): Removed.
	* sign.c (clearsign_file): does not use textfiler anymore.

	* keygen.c (ask_user_id): print a note about the used charset.

Tue Mar  2 10:38:42 CET 1999  Werner Koch  <[email protected]>

	* sig-check.c (signature_check): sig-id now works for all algos.

	* armor.c (armor_filter): Fixed armor bypassing.

Sun Feb 28 19:11:00 CET 1999  Werner Koch  <[email protected]>

	* keygen.c (ask_user_id): Don't change the case of email addresses.
	(has_invalid_email_chars): Adjusted.

	* keylist.c (list_one): Really list serect keys (Remi Guyomarch)

	* keyedit.c (menu_select_uid): Add some braces to make egcs happy.
	(menu_select_key): Ditto.

	* mainproc.c (do_proc_packets): List sym-enc packets (Remi Guyomarch)

Fri Feb 26 17:55:41 CET 1999  Werner Koch  <[email protected]>

	* pkclist.c (build_pk_list): Return error if there are no recipients.

	* sig-check.c (signature_check): New signature id feature.
	* armor.c (make_radic64_string): New.

	* mainproc.c (proc_pubkey_enc): early check for seckey availability.

	* pkclist.c (do_we_trust_pre): print user id before asking.

	* ringedit.c (add_keyblock_resource,get_keyblock_handle): Cleaner
	handling of default resource.


Thu Feb 25 18:47:39 CET 1999  Werner Koch  <[email protected]>

	* pkclist.c (algo_available): New.
	(select_algo_from_prefs): Check whether algo is available.

	* ringedit.c (keyring_copy): Take care of opt.dry_run.
	(do_gdbm_store): Ditto.
	* openfile.c (open_outfile). Ditto.
	(copy_options_file): Ditto.
	* trustdb.c (update_trustdb): Ditto.
	(clear_trust_checked_flag): Ditto.
	(update_trust_record): Ditto.
	(insert_trust_record): Ditto.

Wed Feb 24 11:07:27 CET 1999  Werner Koch  <[email protected]>

	* keylist.c (secret_key_list): Now really list the secret key.

	* trustdb.c (do_init_trustdb): New. Init is now deferred.

Mon Feb 22 20:04:00 CET 1999  Werner Koch  <[email protected]>

	* getkey.c (lookup_sk): Return G10ERR_NO_SECKEY and not x_PUBKEY.

Fri Feb 19 15:49:15 CET 1999  Werner Koch  <[email protected]>

	* pkclist.c (select_algo_from_prefs): retrieve LID if not there.

	* armor.c (fake_packet): Replaced ugly lineending handling.

	* g10.c (oNoEncryptTo): New.
	* pkclist.c (build_pk_list): Implemented this option.

	* g10.c (main): Greeting is now printed to stderr and not to tty.
	Use add_to_strlist() instead of direct coding.

	* import.c (import): Use iobuf_push_filter2.

	* mainproc.c (check_sig_and_print): Print all user ids
	for good signatures.
	* getkey.c (get_pubkeyblock): New.

	* import.c (chk_self_sigs): Fixed SEGV for unbounded class 0x18 keys.
	(delete_inv_parts): Delete special marked packets.

Tue Feb 16 14:10:02 CET 1999  Werner Koch  <[email protected]>

	* g10.c (main): New option --encrypt-to

	* pkclist.c (build_pk_list): Implemented encrypt-to.

	* parse-packet.c (parse_user_id): Removed the hack to work with
	utf-8 strings.

	* g10.c (main): Install lockfile cleanup handler.
	* tdbio.c (cleanup): Removed: this is now handled by dotlock.

Sat Feb 13 14:13:04 CET 1999  Werner Koch  <[email protected]>

	* tdbio.c (tdbio_set_dbname): Init lockhandle for a new trustdb

Wed Feb 10 17:15:39 CET 1999  Werner Koch  <[email protected]>

	* g10.c (main): check for development version now in configure

	* tdbio.c (tdbio_write_record): Add uid.validity
	(tdbio_read_record) : Ditto.
	(tdbio_dump_record) : Ditto.

	* keygen.c (keygen_add_std_prefs): Replaced Blowfish by Twofish,
	removed MD5 and Tiger.
	* pubkey-enc.c (get_it): Suppress warning about missing Blowfish
	in preferences in certain cases.

	* ringedit.c (lock_rentry,unlock_rentry): New.

	* getkey.c (key_byname): Pass ret_kb down to lookup_xx.

	* armor.c (armor_filter): No output of of empty comment lines.
	Add option --no-version to suppress the output of the version string.

	* getkey.c: Release the getkey context for auto context variables.

Sun Jan 24 18:16:26 CET 1999  Werner Koch  <[email protected]>

	* getkey.c: Changed the internal design to allow simultaneous
	lookup of multible user ids
	(get_pubkey_bynames): New.
	(get_seckey_bynames): New.
	(get_seckey_next): New.
	(get_seckey_end): New.
	* keylist.c (list_one): Use the new functions.

	* keylist.c (list_keyblock): add a newline for normal listings.

	* g10.c (--recipient): New option name to replace --remote-user


Wed Jan 20 18:59:49 CET 1999  Werner Koch  <[email protected]>

	* textfilter.c: Mostly rewritten
	* plaintext.c (handle_plaintext): Use now text_filter semantics.

Tue Jan 19 19:34:58 CET 1999  Werner Koch  <[email protected]>

	* export.c (export_pubkeys_stream): New.
	(do_export_stream): New.
	* g10.c (aSendKeys): New command.
	* hkp.c (hkp_export): New.

	* compress.c (do_uncompress): Hack for algo 1 and 1.1.3

Sun Jan 17 11:04:33 CET 1999  Werner Koch  <[email protected]>

	* textfilter.c (text_filter): Now uses iobuf_read_line().
	(read_line): Removed.

	* armor.c (trim_trailing_spaces): Removed and replaced
	by trim_trailing_ws from libutil

Sat Jan 16 12:03:27 CET 1999  Werner Koch  <[email protected]>

	* hkp.c (hkp_ask_import): Use only the short keyid

Sat Jan 16 09:27:30 CET 1999  Werner Koch  <[email protected]>

	* import.c (import_key_stream): New
	(import): New, moved most of import_keys here.
	* g10.c: New option --keyserver
	* mainproc.c (check_sig_and_print): Hook to import a pubkey.

	* pref.c pref.h : Removed

	* hkp.c hkp.h: New

Wed Jan 13 14:10:15 CET 1999  Werner Koch  <[email protected]>

	* armor.c (radix64_read): Print an error if a bad armor was detected.

Wed Jan 13 12:49:36 CET 1999  Werner Koch  <[email protected]>

	* armor.c (radix64_read): Now handles malformed armors produced
	by some buggy MUAs.

Tue Jan 12 11:17:18 CET 1999  Werner Koch  <[email protected]>

	* ringedit.c (find_keyblock_bysk): New.

	* skc_list.c (is_insecure): New.
	(build_sk_list): usage check for insecure keys.

	* import.c (chk_self_sigs): Add handling for subkeys.
	(delete_inv_parts): Skip unsigned subkeys

	* sig-check.c (do_check): Print info if the signature is older
	than the key.
	* keygen.c (generate_subkeypair): Fail on time warp.
	* sign.c (do_sign): Ditto.

Sun Jan 10 15:10:02 CET 1999  Werner Koch  <[email protected]>

	* armor.c (fake_packet): Fixed not-dash-escaped bug.

Sat Jan  9 16:02:23 CET 1999  Werner Koch  <[email protected]>

	* sig-check.c (do_check): Output time diff on error

	* status.c (STATUS_VALIDSIG): New.
	(is_status_enabled): New.
	* mainproc.c (check_sig_and_print): Issue that status message.

	* plaintext.c (special_md_putc): Removed

	* armor.c (armor_filter): print error for truncated lines.

	* free-packet.c (free_encrypted): Revomed call to set_block_mode.
	(free_plaintext): Ditto.

Thu Jan  7 18:00:58 CET 1999  Werner Koch  <[email protected]>

	* pkclist.c (add_ownertrust): Fixed return value.

	* encr-data.c (decrypt_data): Disabled iobuf_set_limit and
	iobuf_pop_filter stuff.
	* compress.c (handle_compressed): Disabled iobuf_pop_filter.

	* packet.h (PKT_secret_key): Add is_primary flag.
	* parse-packet.c (parse_key): Set this flag.
	* passphrase.c (passphrase_to_dek): Kludge to print the primary
	keyid - changed the API: keyid must now hold 2 keyids.
	* getkey.c (get_primary_seckey): New.
	* seckey-cert.c (do_check): pass primary keyid to passphrase query

	* tbdio.c (open_db): removed the atexit
	(tdbio_set_dbname): and moved it to here.

	* armor.c: Rewrote large parts.

Tue Dec 29 19:55:38 CET 1998  Werner Koch  <[email protected]>

	* revoke.c (gen_revoke): Removed compression.

	* pkclist.c (do_we_trust_pre): special check for revoked keys

	* trustdb.c (update_trust_record): Fixed revoke flag.

Tue Dec 29 14:41:47 CET 1998  Werner Koch  <[email protected]>

	* misc.c (disable_core_dumps): Check for EINVAL (Atari)

	* getkey (merge_one_pk_and_selfsig): Fixed search of expiredate.
	(merge_keys_and_selfsig): Ditto.

	* free-packet.c (cmp_public_keys): cmp expire only for v3 packets
	(cmp_secret_keys): Ditto.
	(cmp_public_secret_key): Ditto.

Wed Dec 23 17:12:24 CET 1998  Werner Koch  <[email protected]>

	* armor.c (find_header): Reset not_dashed at every header

Wed Dec 23 13:18:14 CET 1998  Werner Koch  <[email protected]>

	* pkclist.c (add_ownertrust): Refresh validity values.

	* trustdb.c (enum_cert_paths_print): New arg refresh.

	* ringedit.c: Fixed problems fix keyrings
	* parse-packet.c (dbg_parse_packet): New debug functions.

	* getkey.c (getkey_disable_caches): New.
	* import.c (import_keys): Disable caches.

Thu Dec 17 18:31:15 CET 1998  Werner Koch  <[email protected]>

	* misc.c (trap_unaligned): Only for glibc 1

	* sign.c (write_dash_escaped): Now escapes "From " lines
	* g10.c: New option --escape-from-lines

	* trustdb.c (sort_tsl_list): New
	(list_trust_path): Now prints sorted list.
	(enum_cert_paths): Likewise.
	(enum_cert_paths_print): New.
	(print_paths): New printing format.
	* pkclist.c (add_ownertrust): New arg quit.
	(edit_ownertrust): New quit selection and does not query
	the recipients ownertrust anymore.
	(add_ownertrust): Print the ceritficate path.


Mon Dec 14 21:18:49 CET 1998  Werner Koch  <[email protected]>

	* parse-packet.c (parse_signature): Now checks for critical bit
	(parse_sig_subpkt): Splitted.
	(parse_one_sig_subpkt): New.
	* sig-check.c (do_check): handle critical bit.

Sun Dec 13 14:10:56 CET 1998  Werner Koch  <[email protected]>

	* pcklist.c (select_algo_from_prefs): Preferences should
	now work (lost the != ? )

Thu Dec 10 20:15:36 CET 1998  Werner Koch  <[email protected]>

	* ringedit.c (gdbm_store): Fix for inserts

	* g10.c (main): New option --export-all
	* export.c (export_pubkeys): New arg.
	(do_export): Now may skip old keys.

	* status.c: Minor patches for Sun's cc

	* keygen.c (ask_algo): Disabled v3 ElGamal choice, rearranged
	 the numbers.  Add a warning question when a sign+encrypt key
	 is selected.

	* g10.c (do_not_use_RSA): Removed.
	* misc.c (print_pubkey_algo_note): New as replacement for the
	do_not_use_RSA() and chnaged all callers.
	(print_cipher_algo_note): New.
	(print_hash_algo_note): New.

	* cipher.c (write_header): Add a call to print_cipher_algo_note.
	* seckey-cert.c (protect_secret_key): Ditto
	* sign.c (do_sign): Add a call to print_digest_algo_note.

	* getkey.c (get_long_user_id_string): New.
	* mainproc.c (check_sig_and_print): Changed the format of the
	status output.

	* encrypt.c (write_pubkey_enc_from_list): print used symmetric cipher.

	* pkclist.c (do_we_trust): Changed a message.

Wed Dec  9 13:41:06 CET 1998  Werner Koch  <[email protected]>

	* misc.c (trap_unaligned) [ALPHA]: Only if UAC_SIGBUS is defined.

	* sign.c (write_dash_escaped): Add the forgotten patch by Brian Moore.

	* compress.c (do_uncompress): Fixed the inflating bug.


Tue Dec  8 13:15:16 CET 1998  Werner Koch  <[email protected]>

	* trustdb.c (upd_uid_record): Now uses the newest self-signature
	(insert_trust_record): Now calls update with recheck set to true.
	(register_trusted_key): New.
	(verify_own_keys): Enhanced by list of trusted keys.

	* g10.c (main): Print a warning when a devel version is used.
	(main): New option --trusted-key

	* import.c (merge_blocks): Fixed merging of new user ids and
	added merging of subkeys.
	(append_uid): Ditto.
	(merge_keysig): New.
	(append_key): New.
	* getkey.c (merge_one_pk_and_selfsig): Get the expiration time
	from the newest self-signature.
	(merge_keys_and_selfsig): Ditto.

	* free-packet.c (cmp_secret_key): New.


Fri Nov 27 21:37:41 CET 1998  Werner Koch  <[email protected]>

	* g10.c: New option --lock-once
	* tdbio.c (open_db): Add an atexit
	(cleanup): New.
	(tdbio_sync): Add locking.
	(tdbio_end_transaction): Ditto.
	(put_record_into_cache): Ditto.
	* ringedit.c (keyring_copy): Ditto.
	(cleanup): New.
	(add_keyblock_resource): Add an atexit.

Fri Nov 27 15:30:24 CET 1998  Werner Koch  <[email protected]>

	 * armor.c (find_header): Another fix for clearsigs.

Fri Nov 27 12:39:29 CET 1998  Werner Koch  <[email protected]>


	* status.c (display_help): Removed.
	* helptext.c: New and removed the N_() from all cpr_gets.


Fri Nov 20 16:54:52 1998  Werner Koch  ([email protected])

	* g10.c (main): New option --not-dash-escaped
	* sign.c (write_dashed_escaped): Ditto.
	* armor.c (find_header): Support for NotDashEscaped header.

	* getkey.c: print "disabled cache.." only if verbose is used.

Thu Nov 19 07:17:31 1998  Werner Koch  <[email protected]>

	* parse-packet.c (dump_sig_subpkt): Fixed expire listing
	* getkey.c (merge_keys_and_selfsig): Fixed expire calculation.
	(merge_one_pk_and_selfsig): Ditto.
	* keyedit.c (menu_expire). Ditto.
	* keygen.c (keygen_add_key_expire): Ditto.
	(ask_expire_interval): New and changed all local function to use
	this instead.
	(keygen_add_key_expire): Opaque should now be a public key;
	changed all callers.

	* parse.packet.c (parse): use skip_rest to skip packets.

	* keyedit.c (keyedit_menu): New arg for cmdline cmds.

Wed Nov 18 20:33:50 1998  Werner Koch  ([email protected])

	* trustdb.c (check_trustdb): Now rechecks all gived userids.
	(collect_paths): Some fixes.
	(upd_pref_records): Skips empty items, evaluate all items.

	* parse-packet.c (dump_sig_subpkt): Better listing of prefs.
	(skip_packet): Now knows about marker packet

	* g10.c: removed cmd "--edit-sig".

	* pubring.asc: Updated.

Sat Nov 14 14:01:29 1998  Werner Koch  ([email protected])

	* g10.c (main): Changed syntax of --list-trust-path
	* trustdb.c (list_trust_path): Replaced max_depth by
	opt.max_cert_depth

Fri Nov 13 07:39:58 1998  Werner Koch  <[email protected]>

	* trustdb.c (collect_paths): Removed a warning message.
	(enum_trust_web): Removed.
	(enum_cert_paths): New.
	* pkclist.c (add_ownertrust): Changed to use enum_cert_paths.
	(edit_ownertrust): Now list ceritficates on request.
	(show_paths): New.

Wed Nov 11 18:05:44 1998  Werner Koch  <[email protected]>

	* g10.c (main): New option --max-cert-depth
	* tdbio.h: add new fields to ver and dir record.
	* tdbio.c: read/write/dump of these fields.
	(tdbio_db_matches_options): New.
	* trustdb.c: replaced MAC_CERT_DEPTH by opt.max_cert_depth.
	(do_check): cache validity and changed other functions
	to reset the cached value.

	* keylist.c (list_one): Now lists the ownertrust.
	* mainproc.c (list_node): Ditto.

Tue Nov 10 10:08:59 1998  Werner Koch  ([email protected])

	* g10.c (g10_exit): Now looks at the new g10_errors_seen.
	* mainproc.c (check_sig_and_print): Sets g10_errors_seen.

	* *.c : i18n many more strings.

	* ringedit.c (locate_keyblock_by_keyid): Add HAVE_LIBGDBM
	(locate_keyblock_by_fpr): Ditto.

	* g10.c (main): removed unsused "int errors".
	(main): Add new option --charset.

	* g10.c (main): special message for the unix newbie.

Mon Nov  9 07:17:42 1998  Werner Koch  <[email protected]>

	* getkey.c (finish_lookup): Kludge to prefere algo 16.

	* trustdb.c (new_lid_table): Clear cached item.

	* status.c (cpr_get_utf8): New.
	* pkclist.c (build_pk_list): Uses this.

Sun Nov  8 17:20:39 1998  Werner Koch  ([email protected])

	* mainproc.c (check_sig_and_print): Why did I use strlen()-1
	in the printf? - This truncated the TZ.

Sat Nov  7 15:57:28 1998  me,,,  (wk@tobold)

	* getkey.c (lookup): Changes to support a read_next.
	(get_pubkey): Fixed a memory leak.

	* keylist.c (list_one): Now lists all matching user IDs.

Tue Nov  3 16:19:21 1998  Werner Koch  ([email protected])

	* keygen.c (ask_user_id): Now converted to UTF-8

	* g10.c (main): Kludge for pgp clearsigs and textmode.

Fri Oct 30 16:40:39 1998  me,,,  (wk@tobold)

	* signal.c (block_all_signals): New.
	(unblock_all_signals): New
	* tdbio.c (tdbio_end_transaction): Now blocks all signals.

	* trustdb.c (new_lid_table): Changed the representation of the
	former local_lid_info stuff.

	* trustdb.c (update_trust_record): Reorganized the whole thing.
	* sig-check.c (check_key_signature): Now handles class 0x28


Wed Oct 28 18:56:33 1998  me,,,  (wk@tobold)

	* export.c (do_export): Takes care of the exportable sig flag.

Tue Oct 27 14:53:04 1998  Werner Koch  ([email protected])

	* trustdb.c (update_trust_record): New "fast" parameter.

Sun Oct 25 19:32:05 1998  Werner Koch  ([email protected])

	* openfile.c (copy_options_File): New.
	* ringedit.c (add_keyblock_resource): Creates options file
	* tdbio.c (tdbio_set_dbname): Ditto.

Sat Oct 24 14:10:53 1998  brian moore <[email protected]>

	* mainproc.c (proc_pubkey_enc): Don't release the DEK
	(do_proc_packets): Ditto.

Fri Oct 23 06:49:38 1998  me,,,  (wk@tobold)

	* keyedit.c (keyedit_menu): Comments are now allowed

	* trustdb.c: Rewrote large parts.


Thu Oct 22 15:56:45 1998  Michael Roth	([email protected])

	* encode.c: (encode_simple): Only the plain filename without
	a given directory is stored in generated packets.
	(encode_crypt): Ditto.

	* sign.c: (sign_file) Ditto.


Thu Oct 22 10:53:41 1998  Werner Koch  ([email protected])

	* trustdb.c (update_trust_record): Add new optional arg.

	* import.c (import_keys): Add statistics output
	* trustdb.c (update_trustdb): Ditto.
	(insert_trustdb): Ditto.

	* tdbio.c (tdbio_begin_transaction): New.
	(tdbio_end_transaction): New.
	(tdbio_cancel_transaction): New.

	* g10.c (main): New option --quit.

	* trustdb.c (check_hint_sig): No tests for user-id w/o sig.
	This caused an assert while checking the sigs.

	* trustdb.c (upd_sig_record): Splitted into several functions.

	* import.c (import_keys): New arg "fast".
	* g10.c (main): New command --fast-import.

Wed Oct 21 18:19:36 1998  Michael Roth <[email protected]>

	* ringedit.c (add_keyblock_resource): Directory is now created.
	* tdbio.c (tdbio_set_dbname): New info message.

Wed Oct 21 11:52:04 1998  Werner Koch  ([email protected])

	* trustdb.c (update_trustdb): released keyblock in loop.

	* keylist.c (list_block): New.
	(list_all): Changed to use list_block.

	* trustdb.c: Completed support for GDBM

	* sign.c (only_old_style): Changed the way force_v3 is handled
	(sign_file): Ditto.
	(clearsign_file): Ditto.

	* keygen.c (has_invalid_email_chars): Splitted into mailbox and
	host part.

	* keylist.c (list_one): Add a merge_keys_and_selfsig.
	* mainproc.c (proc_tree): Ditto.

Sun Oct 18 11:49:03 1998  Werner Koch  ([email protected])

	* sign.c (only_old_style): Add option force_v3_sigs
	(sign_file): Fixed a bug in sig->version
	(clearsign_file): Ditto.

	* parse-packet.c (dump_sig_subpkt): New

	* keyedit.c (menu_expire): New.
	* free-packet.c (cmp_signatures): New


Sat Oct 17 10:22:39 1998  Werner Koch  ([email protected])

	* armor.c: changed output line length from 72 to 64.

	* keyedit.c (fix_keyblock): New.

Fri Oct 16 10:24:47 1998  Werner Koch  ([email protected])

	* trustdb.c: Rewrote most.
	* tdbio.c: Add cache and generalized hash tables.

	* options.h (ENABLE_COMMENT_PACKETS): New but undef'ed.
	* encode.c, sign.c, keygen.c: Disabled comment packets.
	* export.c (do_export): Comment packets are never exported,
	except for those in the secret keyring.

	* g10.c (main): Removed option do-no-export-rsa; should be
	be replaced by a secpial tool.
	* export.c (do_export): Removed the code for the above option.

	* armor.c (find_header): Support for new only_keyblocks.
	* import.c (import_keys): Only looks for keyblock armors.

	* packet.h: replaced valid_days by expiredate and changed all users.
	* build-packet.c (do_public_key): calculates valid-days
	(do_secret_key): Ditto.
	* parse-packet.c (parse_key): expiredate is calucated from the
	valid_period in v3 packets.
	* keyid.c (do_fingerprint_md): calculates valid_dates.

	* keygen.c (add_key_expire): fixed key expiration time for v4 packets.

	* armor.c (find_header): A LF in the first 28 bytes
	was skipped for non-armored data.

Thu Oct  8 11:35:51 1998  Werner Koch  ([email protected])

	* armor.c (is_armored): Add test on old comment packets.

	* tdbio.c (tdbio_search_dir_bypk): fixed memory leak.

	* getkey.c: Changed the caching algorithms.

Wed Oct  7 19:33:28 1998  Werner Koch  ([email protected])

	* kbnodes.c (unused_nodes): New.

Wed Oct  7 11:15:36 1998  Werner Koch  ([email protected])

	* keyedit.c (sign_uids): Fixed a problem with SK which could caused
	a save of an unprotected key.
	(menu_adduid): Ditto.

	* keyedit.c (keyedit_menu): Prefs are now correctly listed for
	new user ids.

	* trustdb.c (update_trust_record): New.
	(insert_trust_record): Now makes use of update_trust_record.

Tue Oct  6 16:18:03 1998  Werner Koch  ([email protected])

	* trustdb.c (read_record): replaces most of the tdbio_read_records.
	(write_record): Ditto.

Sat Oct  3 11:01:21 1998  Werner Koch  ([email protected])

	* keygen.c (ask_alogo): enable ElGamal enc-only only for addmode.

Wed Sep 30 10:15:33 1998  Werner Koch  ([email protected])

	* import.c (import_one): Fixed update of wrong keyblock.

Tue Sep 29 08:32:08 1998  me,,,  (wk@tobold)

	* mainproc.c (proc_plaintext): Display note for special filename.
	* plaintext.c (handle_plaintext): Suppress output of special file.

Mon Sep 28 12:57:12 1998  Werner Koch  ([email protected])

	* g10.c (verify_own_keys): Add warning if a key is not protected.

	* passphrase (hash_passphrase): Fixed iterated+salted mode and
	setup for keysizes > hashsize.

	* g10.c (main): New options: --s2k-{cipher,digest,mode}.

Fri Sep 25 09:34:23 1998  Werner Koch  ([email protected])

	* g10.c: Chnaged some help texts.

Tue Sep 22 19:34:39 1998  Werner Koch  ([email protected])

	* passphrase.c (read_passphrase_from_fd): fixed bug for long
	passphrases.

Mon Sep 21 11:28:05 1998  Werner Koch  (wk@(none))

	* getkey.c (lookup): Add code to use the sub key if the primary one
	does not match the usage.

	* armor.c (armor_filter): New error message: no valid data found.
	(radix64_read): Changes to support multiple messages.
	(i18n.h): New.
	* mainproc.c (add_onepass_sig): bug fix.

Mon Sep 21 08:03:16 1998  Werner Koch  ([email protected])

	* pkclist.c (do_we_trust): Add keyid to most messages.

	* passphrase.c (read_passphrase_from_fd): New.
	(have_static_passphrase): New
	(get_passphrase_fd): Removed.
	(set_passphrase_fd): Removed.
	* g10.c (main): passphrase is now read here.

	* keyedit.c (keyedit_menu): "help" texts should now translate fine.

Mon Sep 21 06:40:02 1998  Werner Koch  ([email protected])

	* encode.c (encode_simple): Now disables compression
	when --rfc1991 is used.
	(encode_crypt): Ditto.

Fri Sep 18 16:50:32 1998  Werner Koch  ([email protected])

	* getkey.c (merge_key_and_selfsig): New.

Fri Sep 18 10:20:11 1998  Werner Koch  ([email protected])

	* pkclist.c (select_algo_from_prefs): Removed 3DES kludge.

	* seskey.c (make_session_key): Fixed SERIOUS bug introduced
	by adding the weak key detection code.

	* sign.c (sign_file): Changed aremor header in certain cases.

Tue Sep 15 17:52:55 1998  Werner Koch  ([email protected])

	* mainproc.c (check_sig_and_print): Replaced ascime by asctimestamp.

Mon Sep 14 11:40:52 1998  Werner Koch  ([email protected])

	* seskey.c (make_session_key): Now detects weak keys.

	* trustdb (clear_trust_checked_flag): New.

	* plaintext.c (handle_plaintext): Does no anymore suppress CR from
	cleartext signed messages.

Sun Sep 13 12:54:29 1998  Werner Koch  ([email protected])

	* trustdb.c (insert_trust_record): Fixed a stupid bug in the free
	liunked list loops.

Sat Sep 12 15:49:16 1998  Werner Koch  ([email protected])

	* status.c (remove_shmid): New.
	(init_shm_comprocess): Now sets permission to the real uid.

Wed Sep  9 11:15:03 1998  Werner Koch  ([email protected])

	* packet.h (PKT_pubkey_enc): New flah throw_keyid, and add logic to
	implement it.
	* g10.c (main): New Option --throw-keyid

	* getkey.c (enum_secret_keys): Add new ar and changed all callers.

Tue Sep  8 20:04:09 1998  Werner Koch  ([email protected])

	* delkey.c (delete_key): Moved from keyedit.c.

Mon Sep  7 16:37:52 1998  Werner Koch  ([email protected])

	* build-packet.c (calc_length_header): New arg new_ctb to correctly
	calculate the length of new style packets.

	* armor.c (is_armored): Checks for symkey_enc packets.

	* pkclist.c (select_algo_from_prefs): 3DEs substitute is now CAST5.

Tue Aug 11 17:54:50 1998  Werner Koch  ([email protected])

	* build-packet.c (do_secret_key): Fixed handling of old keys.

	* getkey.c (compare_name): Fixed exact and email matching

	* openfile.c (open_outfile): Changed arguments and all callers.

Tue Aug 11 09:14:35 1998  Werner Koch  ([email protected])

	* encode.c (encode_simple): Applied option set-filename and comment.
	(encode_crypt): Ditto.
	* sign.c (sign_file): Ditto.
	* armor.c (armor_filter): Applied option comment.

	* encode.c (encode_crypt): Moved init_packet to the begin.
	(encode_simple): add an init_packet().

	* comment (write_comment): Now enforces a hash sign as the 1st byte.

	* import.c (import_one): Add explanation for "no user ids".

	* compress.c (do_uncompress): Applied Brian Warner's patch to support
	zlib 1.1.3 etc.

	* trustdb.c (check_trust): Fixed a problem after inserting new keys.

	* getkey (lookup): do not return the primary key if usage is given
	(lookup_sk): Ditto and take usage into account.

	* status.c (cpr_get_answer_is_yes): add display_help.

Mon Aug 10 10:11:28 1998  Werner Koch  ([email protected])

	* getkey.c (lookup_sk): Now always returns the primary if arg
	primary is true.
	(lookup): Likewise.
	(get_pubkey_byname): Now returns the primary key
	(get_seckey_byname): Ditto.


Mon Aug 10 08:34:03 1998  Werner Koch  ([email protected])

	* keyid.c (pubkey_letter): ELG_E is now a small g.

Sat Aug  8 17:26:12 1998  Werner Koch  ([email protected])

	* openfile (overwrite_filep): Changed semantics and all callers.

Sat Aug  8 12:17:07 1998  Werner Koch  ([email protected])

	* status.c (display_help): New.

Thu Aug  6 16:30:41 1998  Werner Koch,mobil,,,	(wk@tobold)

	* seskey.c (encode_session_key): Now uses get_random_bits().

Thu Aug  6 07:34:56 1998  Werner Koch,mobil,,,	(wk@tobold)

	* ringedit.c (keyring_copy): No more backupfiles for
	secret keyrings and add additional warning in case of
	a failed secret keyring operation.

Wed Aug  5 11:54:37 1998  Werner Koch  ([email protected])

	* g10.c (check_opts): Moved to main.  Changed def_cipher_algo
	semantics and chnaged all users.

	* pubkey-enc.c (get_sssion_key): New informational output
	about preferences.

	* parse-packet.c (parse_symkeyenc): Fixed salted+iterated S2K
	(parse_key): Ditto.
	* build-packet.c (do_secret_key): Ditto.
	(do_symkey_enc): Ditto.

Tue Aug  4 08:59:10 1998  Werner Koch  ([email protected])

	* getkey.c (enum_secret_keys): Now returns only primary keys.

	* getkey (lookup): Now sets the new namehash field.

	* parse-packet.c (parse_sig_subpkt2): New.

	* sign.c (sign_file): one-pass sigs are now emiited reverse.
	Preference data is considered when selecting the compress algo.

Wed Jul 29 12:53:03 1998  Werner Koch  ([email protected])

	* free-packet.c (copy_signature): New.

	* keygen.c (generate_subkeypair): rewritten
	* g10.c (aKeyadd): Removed option --add-key

Mon Jul 27 10:37:28 1998  Werner Koch  ([email protected])

	* seckey-cert.c (do_check): Additional check on cipher blocksize.
	(protect_secret_key): Ditto.
	* encr-data.c: Support for other blocksizes.
	* cipher.c (write_header): Ditto.

Fri Jul 24 16:47:59 1998  Werner Koch  ([email protected])

	* kbnode.c (insert_kbnode): Changed semantics and all callers.
	* keyedit.c : More or less a complete rewrite

Wed Jul 22 17:10:04 1998  Werner Koch  ([email protected])

	* build-packet.c (write_sign_packet_header): New.

Tue Jul 21 14:37:09 1998  Werner Koch  ([email protected])

	* import.c (import_one): Now creates a trustdb record.

	* g10.c (main): New command --check-trustdb

Mon Jul 20 11:15:07 1998  Werner Koch  ([email protected])

	* genkey.c (generate_keypair): Default key is now DSA with
	encryption only ElGamal subkey.

Thu Jul 16 10:58:33 1998  Werner Koch  ([email protected])

	* keyid.c (keyid_from_fingerprint): New.
	* getkey.c (get_pubkey_byfprint): New.

Tue Jul 14 18:09:51 1998  Werner Koch  ([email protected])

	* keyid.c (fingerprint_from_pk): Add argument and changed all callers.
	(fingerprint_from_sk): Ditto.

Tue Jul 14 10:10:03 1998  Werner Koch  ([email protected])

	* plaintext.c (handle_plaintext): Now returns create error if
	the file could not be created or the user responded not to overwrite
	the file.
	* mainproc.c (proc_plaintext): Tries again if the file could not
	be created to check the signature without output.

	* misc.c (disable_core_dumps): New.
	* g10.c (main): disable coredumps for gpg

	* g10.c (MAINTAINER_OPTIONS): New to disable some options

Mon Jul 13 16:47:54 1998  Werner Koch  ([email protected])

	* plaintext.c (hash_datafiles): New arg for better support of
	detached sigs. Changed all callers.
	* mainproc.c (proc_signature_packets): Ditto.

	* g10.c (main): New option "compress-sigs"
	* sig.c (sign_file): detached signatures are not anymore compressed
	unless the option --compress-sigs is used.

Thu Jul  9 19:54:54 1998  Werner Koch  ([email protected])

	* armor.c: Fixes to allow zero length cleartext signatures

Thu Jul  9 14:52:47 1998  Werner Koch  ([email protected])

	* g10.c (build_list): Now drops setuid.
	(main): Changed the way keyrings  and algorithms are registered .

Wed Jul  8 14:17:30 1998  Werner Koch  ([email protected])

	* packet.h (PKT_public_key): Add field keyid.
	* parse-packet.c (parse_key): Reset the above field.
	* keyid.c (keyid_from_pk): Use above field as cache.

	* tdbio.c, tdbio.h: New
	* trustdb.c: Moved some functions to tdbio.c.
	(print_keyid): New.

	* pkclist.c (check_signatures_trust): New.

Wed Jul  8 10:45:28 1998  Werner Koch  ([email protected])

	* plaintext.c (special_md_putc): New.
	(handle_plaintext): add clearsig argument
	* mainproc.c (proc_plaintext): detection of clearsig
	* sign.c (write_dased_escaped): Changed clearsig format

Tue Jul  7 18:56:19 1998  Werner Koch  ([email protected])

	* armor.c (find_header): Now makes sure that there is only one
	empty line for clearsigs, as this is what OP now says.

Mon Jul  6 13:09:07 1998  Werner Koch  ([email protected])

	* g10.c (main): New option default-secret-key
	* getkey.c (get_seckey_byname): support for this option.

Mon Jul  6 09:03:49 1998  Werner Koch  ([email protected])

	* getkey.c (add_keyring): Keyrings are now added to end of the
	list of keyrings.  The first added keyringwill be created.
	(add_secret_keyring): Likewise.

	* ringedit.c (add_keyblock_resource): Files are created here.

	* g10.c (aNOP): Removed

	* getkey.c (lookup): Add checking of usage for name lookups
	* packet.h (pubkey_usage): Add a field which may be used to store
	usage capabilities.
	* pkclist.c (build_pk_list): getkey now called with usage arg.
	* skclist.c (build_sk_list): Ditto.

	* sign.c (clearsign_file): Fixed "Hash:" headers

Sat Jul  4 13:33:31 1998  Werner Koch  ([email protected])

	* trustdb.c (list_ownertrust): New.
	* g10.c (aListOwnerTrust): New.

	* g10.c (def_pubkey_algo): Removed.

	* trustdb.c (verify_private_data): Removed and also the call to it.
	(sign_private_data): Removed.

Fri Jul  3 13:26:10 1998  Werner Koch  ([email protected])

	* g10.c (aEditKey): was aEditSig. Changed usage msg.

	* keyedit.c: Done some i18n stuff.

	* g10.c (do_not_use_RSA): New.
	* sign.c (do_sign): Add call to above function.
	* encode.c (write_pubkey_enc_from_list): Ditto.

Thu Jul  2 21:01:25 1998  Werner Koch  ([email protected])

	* parse-packet.c: Now is able sto store data of unknown
	algorithms.
	* free-packet.c: Support for this.
	* build-packet.c: Can write data of packet with unknown algos.

Thu Jul  2 11:46:36 1998  Werner Koch  ([email protected])

	* parse-packet.c (parse): fixed 4 byte length header

Wed Jul  1 12:36:55 1998  Werner Koch  ([email protected])

	* packet.h (new_ctb): New field for some packets
	* build-packet.c (build_packet): Support for new_ctb
	* parse-packet.c (parse): Ditto.

Mon Jun 29 12:54:45 1998  Werner Koch  ([email protected])

	* packet.h: changed all "_cert" to "_key", "subcert" to "subkey".

	* free-packet.c (free_packet): Removed memory leak for subkeys.

Sun Jun 28 18:32:27 1998  Werner Koch  ([email protected])

	* import.c (import_keys): Renamed from import_pubkeys.
	(import_secret_one): New.

	* g10.c (aExportSecret): New.

	* export.c (export_seckeys): New.

	* parse-packet.c (parse_certificate): Cleaned up.
	(parse_packet): Trust packets are now considered as unknown.
	(parse_pubkey_warning): New.

Fri Jun 26 10:37:35 1998  Werner Koch  ([email protected])

	* keygen.c (has_invalid_email_chars): New.

Wed Jun 24 16:40:22 1998  Werner Koch  ([email protected])

	* armor.c (armor_filter): Now creates valid onepass_sig packets
	with all detected hash algorithms.
	* mainproc.c (proc_plaintext): Now uses the hash algos as specified
	in the onepass_sig packets (if there are any)

Mon Jun 22 11:54:08 1998  Werner Koch  ([email protected])

	* plaintext.c (handle_plaintext): add arg to disable outout
	* mainproc.c (proc_plaintext): disable output when in sigs_only mode.

Thu Jun 18 13:17:27 1998  Werner Koch  ([email protected])

	* keygen.c: Removed all rsa packet stuff, chnaged defaults
	for key generation.

Sun Jun 14 21:28:31 1998  Werner Koch  ([email protected])

	* misc.c (checksum_u16): Fixed a stupid bug which caused a
	wrong checksum calculation for the secret key protection and
	add a backward compatibility option.
	* g10.c (main): Add option --emulate-checksum-bug.

Thu Jun 11 13:26:44 1998  Werner Koch  ([email protected])

	* packet.h: Major changes to the structure of public key material
	which is now stored in an array and not anaymore in a union of
	algorithm specific structures.	These is needed to make the system
	more extendable and makes a lot of stuff much simpler. Changed
	all over the system.

	* dsa.c, rsa.c, elg.c: Removed.

Wed Jun 10 07:22:02 1998  Werner Koch,mobil,,,	(wk@tobold)

	* g10.c ("load-extension"): New option.

Mon Jun  8 22:23:37 1998  Werner Koch  ([email protected])

	* seckey-cert.c (do_check): Removed cipher constants
	(protect_secret_key): Ditto.

Fri May 29 10:00:28 1998  Werner Koch  ([email protected])

	* trustdb.c (query_trust_info): New.
	* keylist.c (list_one): Add output of trust info
	* mainproc (list_node): ditto.
	* g10.c (main): full trustdb init if -with-colons and any of the
	key list modes.

Thu May 28 10:34:42 1998  Werner Koch  ([email protected])

	* status.c (STATUS_RSA_OR_IDEA): New.
	* sig-check.c (check_signature): Output special status message.
	* pubkey-enc.c (get_session_key): Ditto.

	* mainproc.c (check_sig_and_print): Changed format of output.
	* passpharse.c (passphrase_to_dek): Likewise.

Wed May 27 13:46:48 1998  Werner Koch  ([email protected])

	* g10.c (aListSecretKeys): New option --list-secret-keys
	* keylist.c (std_key_list): Renamed to public_key_list.
	(secret_key_list): New
	(list_one, list_all): Add support for secret keys.
	* getkey.c (get_secret_keyring): New.
	* mainproc.c (list_node): Add option --with-colons for secret keys

	* sig-check.c (check_key_signature): detection of selfsigs
	* mainproc.c (list_node): fixed listing.

	* g10.c (aListSecretKeys): New option --always-trust
	* pkclist.c (do_we_trust): Override per option added

	* status.c (write_status_text): Add a prefix to every output line.

Wed May 27 07:49:21 1998  Werner Koch  ([email protected])

	* g10 (--compress-keys): New.
	* options.h (compress_keys): New.
	* export.c (export_pubkeys): Only compresses with the new option.

Tue May 26 11:24:33 1998  Werner Koch  ([email protected])

	* passphrase.c (get_last_passphrase): New
	(set_next_passphrase): New.
	(passphrase_to_dek): add support for the above functions.
	* keyedit.c (make_keysig_packet): Add sigclass 0x18,
	changed all callers due to a new argument.
	* keygen.c (write_keybinding): New
	(generate_subkeypair): Add functionality
	(ask_algo, ask_keysize, ask_valid_days): Broke out of generate_keypair
	(ask_user_id, ask_passphrase): Ditto.

Thu May 21 11:26:13 1998  Werner Koch  ([email protected])

	* g10.c,gpgd.c (main): Does now return an int, so that egcs does
	not complain.

	* armor.c (fake_packet): Removed erro message and add a noticed
	that this part should be fixed.

	* sign.c (sign_file): Compression now comes in front of encryption.
	* encode.c (encode_simple): Ditto.
	(encode_crypt): Ditto.

Tue May 19 16:18:19 1998  Werner Koch  ([email protected])

	* armor.c (fake_packet): Changed assertion to log_error

Sat May 16 16:02:06 1998  Werner Koch  ([email protected])

	* build-packet.c (build_packet): Add SUBKEY packets.

Fri May 15 17:57:23 1998  Werner Koch  ([email protected])

	* sign.c (hash_for): New and used in all places here.
	* main.h (DEFAULT_): new macros.
	* g10.c  (opt.def_digest_algo): Now set to 0

	* compress.c (init_compress): Add support for algo 1
	* options.h (def_compress_algo): New
	* g10.c (main): New option --compress-algo

Fri May 15 13:23:59 1998  Werner Koch  ([email protected])

	* g10.c (print_mds): New feature to print only one hash,
	chnaged formatting.

Thu May 14 15:36:24 1998  Werner Koch  ([email protected])

	* misc.c (trap_unaligned) [__alpha__]: New
	* g10.c (trap_unaligned): Add call to this to track down SIGBUS
	on Alphas (to avoid the slow emulation code).

Wed May 13 11:48:27 1998  Werner Koch  ([email protected])

	* build-packet.c (do_signature): Support for v4 pakets.
	* keyedit.c (make_keysig_packet): Ditto.
	* build-packet.c (build_sig_subpkt_from_sig): New.
	(build_sig_subpkt): New.

	* elg.c (g10_elg_sign): removed keyid_from_skc.
	* dsa.c (g10_dsa_sign): Ditto.
	* rsa.c (g10_rsa_sign): Ditto.
	* keyedit.c (make_keysig_packet): Add call to keyid_from_skc

	* sign.c (clearsign_file): Support for v4 signatures.
	(sign_file): Ditto.

Wed May  6 09:31:24 1998  Werner Koch  ([email protected])

	* parse-packet.c (do_parse): add support for 5 byte length leader.
	(parse_subpkt): Ditto.
	* build-packet.c (write_new_header): Ditto.

	* packet.h (SIGSUBPKT_): New constants.
	* parse-packet.c (parse_sig_subpkt): Changed name, made global,
	and arg to return packet length, chnaged all callers


Tue May  5 22:11:59 1998  Werner Koch  ([email protected])

	* keygen.c (gen_dsa): New.
	* build_packet.c (do_secret_cert): Support for DSA

Mon May  4 19:01:25 1998  Werner Koch  ([email protected])

	* compress.c: doubled buffer sizes
	* parse-packet.c (do_plaintext): now uses iobuf_read/write.

Mon May  4 09:35:53 1998  Werner Koch  ([email protected])

	* seskey.c (encode_md_value): Add optional argument hash_algo,
	changed all callers.

	* passphrase.c (make_dek_from_passphrase): Removed
	* (get_passhrase_hash): Changed name to passphrase_to_dek, add arg,
	changed all callers.

	* all: Introduced the new ELG identifier and added support for the
	encryption only one (which is okay to use by GNUPG for signatures).

Sun May  3 17:50:26 1998  Werner Koch  ([email protected])

	* packet.h (PKT_OLD_COMMENT): New name for type 16.
	* parse-packet.c (parse_comment): Now uses type 61

Fri May  1 12:44:39 1998  Werner Koch,mobil,,,	(wk@tobold)

	* packet.h (count): Chnaged s2k count from byte to u32.
	* seckey-cert.c (do_check): Changed s2k algo 3 to 4, changed
	reading of count.
	* build-packet.c (do_secret_cert): ditto.
	* parse-packet.c (parse_certificate): ditto.

	* parse-packet.c (parse_symkeyenc): New.
	* build-packet.c (do_symkey_enc): New.

Thu Apr 30 16:33:34 1998  Werner Koch  ([email protected])

	* sign.c (clearsign_file): Fixed "Hash: " armor line.

Tue Apr 28 14:27:42 1998  Werner Koch  ([email protected])

	* parse-packet.c (parse_subpkt): Some new types.

Mon Apr 27 12:53:59 1998  Werner Koch  ([email protected])

	* g10.c (main): Add option --skip-verify.
	* mainproc.c (check_sig_and_print): Ditto.

	* g10.c (print_mds): Add output for Tiger.

	* sign.c (sign_file): Now uses partial length headers if used
	in canonical textmode (kludge to fix a bug).

	* parse-packet.c (parse_certificate): Changed BLOWFISH id.
	* pubkey-enc.c (get_session_key): Ditto.
	* seskey.c (make_session_key): Ditto.
	* seckey-cert.c (protect_secret_key,do_check): Add BLOWFISH160.

Fri Apr 24 17:38:48 1998  Werner Koch,mobil,,,	(wk@tobold)

	* sig-check.c (check_key_signature): Add sig-class 0x14..0x17
	* keyedit.c (sign-key): Some changes to start with support of
	the above new sig-classes.

Wed Apr 22 09:01:57 1998  Werner Koch,mobil,,,	(wk@tobold)

	* getkey.c (compare_name): add email matching

Tue Apr 21 16:17:12 1998  Werner Koch,mobil,,,	(wk@tobold)

	* armor.c (armor_filter): fixed missing last LF before CSUM.

Thu Apr  9 11:35:22 1998  Werner Koch  ([email protected])

	* seckey-cert.c (do_check): New; combines all the check functions
	into one.

	* sign.c: removed all key management functions
	* keyedit.c: New.

Thu Apr  9 09:49:36 1998  Werner Koch  ([email protected])

	* import.c (chk_self_sigs): Changed an error message.

Wed Apr  8 16:19:39 1998  Werner Koch  ([email protected])

	* packet.h: packet structs now uses structs from the pubkey,
	removed all copy operations from packet to pubkey structs.

Wed Apr  8 13:40:33 1998  Werner Koch  ([email protected])

	* trustdb.c (verify_own_certs): Fixed "public key not found".

	* getkey.c (key_byname): New, combines public and secret key search.

	* pkclist.c (build_pkc_list): Add new arg usage, changed all callers.
	* skclist.c (build_skc_list): Likewise.

	* ringedit.c (find_keyblock, keyring_search2): Removed.

Wed Apr  8 09:47:21 1998  Werner Koch  ([email protected])

	* sig-check.c (do_check): Applied small fix from Ulf M�ller.

Tue Apr  7 19:28:07 1998  Werner Koch  ([email protected])

	* cipher.c, encr-data.c, seckey-cert.c: Now uses cipher_xxxx
	functions instead of blowfish_xxx or cast_xxx

Tue Apr  7 11:04:02 1998  Werner Koch  ([email protected])

	* Makefile.am (g10maint.o): Changed the way it is created.

Mon Apr  6 11:17:08 1998  Werner Koch  ([email protected])

	* misc.c: New.
	* keygen.c (checksum,checksum_u16,checksum_mpi): Moved to misc.c
	* seckey-cert.c: Kludge for wrong ELG checksum implementation.

Sat Apr  4 20:07:01 1998  Werner Koch  ([email protected])

	* cipher.c (cipher_filter): Support for CAST5
	* encr-data.c (decode_filter): Ditto.
	(decrypt_data): Ditto.
	* seskey.c (make_session_key): Ditto.
	* seckey-cert.c (check_elg, check_dsa): Ditto,
	(protect_secret_key): Ditto.
	* pubkey-enc.c (get_session_key): Ditto.
	* passphrase.c (hash_passphrase): Ditto.

Thu Apr  2 20:22:35 1998  Werner Koch  ([email protected])

	* gpgd.c: New

Thu Apr  2 10:38:16 1998  Werner Koch  ([email protected])

	* keygen.c (generate_keypair): Add valid_days stuff.
	* trustdb.c (check_trust): Add check for valid_days.

Wed Apr  1 16:15:58 1998  Werner Koch  ([email protected])

	* keygen.c (generate_keypair): Addional question whether the
	selected large keysize is really needed.

Wed Apr  1 15:56:33 1998  Werner Koch  ([email protected])

	* seckey-cert.c (protect_secret_key): merged protect_xxx to here.

Wed Apr  1 10:34:46 1998  Werner Koch  ([email protected])

	* Makefile.am (g10maint.c): Changed creation rule, so that it works
	on FreeBSD (missing CFLAGS).

	* parse-packet.c (parse_subkey): Removed.

Thu Mar 19 15:22:36 1998  Werner Koch  ([email protected])

	* ringedit.c (keyring_enum): Fixed problem with reading too
	many packets. Add support to read secret keyrings.

	* getkey.c (scan_keyring): Removed
	(lookup): New to replace scan_keyring.
	(scan_secret_keyring): Removed.
	(lookup_skc): New.

Wed Mar 18 11:47:34 1998  Werner Koch  ([email protected])

	* ringedit.c (enum_keyblocks): New read mode 11.

	* keyid.c (elg_fingerprint_md): New and changed all other functions
	to call this if the packet version is 4 or above.

Tue Mar 17 20:46:16 1998  Werner Koch  ([email protected])

	* parse-packet.c (parse_certificate): Add listing support for subkeys.

Tue Mar 17 20:32:22 1998  Werner Koch  ([email protected])

	* armor.c (is_armored): Allow marker packet.

Thu Mar 12 13:36:49 1998  Werner Koch  ([email protected])

	* trustdb.c (check_trust): Checks timestamp of pubkey.
	* sig-check. (do_check): Compares timestamps.

Tue Mar 10 17:01:56 1998  Werner Koch  ([email protected])

	* g10.c (main): Add call to init_signals.
	* signal.c: New.

Mon Mar  9 12:43:42 1998  Werner Koch  ([email protected])

	* dsa.c: New
	* packet.h, free-packet.c, parse-packet.c : Add support for DSA
	* sig-check.c, getkey.c, keyid.c, ringedit.c: Ditto.
	* seckey-cert.c: Ditto.

	* packet.h : Moved .digest_algo of signature packets to outer
	structure. Changed all references

Sun Mar  8 13:06:42 1998  Werner Koch  ([email protected])

	* openfile.c : Support for stdout filename "-".

	* mainproc.c (check_sig_and_print): Enhanced status output:
	* status.c (write_status_text): New.

Fri Mar  6 16:10:54 1998  Werner Koch  ([email protected])

	* kbnode.c (clone_kbnode): Fixed private_flag.

	* mainproc.c (list_node): Output of string "Revoked" as user-id.

Fri Mar  6 14:26:39 1998  Werner Koch  ([email protected])

	* g10.c (main): Add userids to "-kv" and cleaned up this stuff.

Fri Mar  6 12:45:58 1998  Werner Koch  ([email protected])

	* g10.c (main): Changed semantics of the list-... commands
	and added a new one. Removed option "-d"

	* decrypt.c: New.

	* trustdb.c (init_trustdb): Autocreate directory only if it ends
	in "/.gnupg".

Thu Mar  5 12:12:11 1998  Werner Koch  ([email protected])

	* mainproc.c (do_proc_packets): New. Common part of proc_packet.
	(proc_signature_packets): special version to handle signature data.
	* verify.c: New.
	* g10.c (aVerify): New.
	* plaintext.c (hash_datafiles): New.
	* compress.c (handle_compressed): Add callback arg, changed caller.

Thu Mar  5 10:20:06 1998  Werner Koch  ([email protected])

	* g10.c: Is nom the common source for gpg and gpgm
	* g10maint.c: Removed
	* Makefile.am: Add rule to build g10maint.c

Thu Mar  5 08:43:59 1998  Werner Koch  ([email protected])

	* g10.c (main): Changed the way clear text sigs are faked.

Wed Mar  4 19:47:37 1998  Werner Koch  ([email protected])

	* g10maint.c (aMuttKeyList): New
	* keylist.c: New.

Wed Mar  4 17:20:33 1998  Werner Koch  ([email protected])

	* getkey.c (get_pubkey_byname): Kludge to allow 0x prefix.

Tue Mar  3 13:46:55 1998  Werner Koch  ([email protected])

	* g10maint.c (main): New option --gen-random.

Tue Mar  3 09:50:08 1998  Werner Koch  ([email protected])

	* g10.c (aDeleteSecretKey): New.
	(aEditSig): Add option "--edit-key" as synonym for "--edit-sig".
	(aDeleteSecretKey): New.
	* getkey.c (seckey_available): New.
	* sign.c (delete_key): Enhanced to delete secret keys, changed all
	callers.

Mon Mar  2 21:23:48 1998  Werner Koch  ([email protected])

	* pkc_list.c (build_pkc_list): Add interactive input of user ID.

Mon Mar  2 20:54:05 1998  Werner Koch  ([email protected])

	* pkclist.c (do_we_trust_pre): New.
	(add_ownertrust): Add message.
	* trustdb.c (enum_trust_web): Quick fix.

Mon Mar  2 13:50:53 1998  Werner Koch  ([email protected])

	* g10.c (main): New action aDeleteKey
	* sign.c (delete_key): New.

Sun Mar  1 16:38:58 1998  Werner Koch  ([email protected])

	* trustdb.c (do_check): No returns TRUST_UNDEFINED instead of
	eof error.

Fri Feb 27 18:14:03 1998  Werner Koch  ([email protected])

	* armor.c (find_header): Removed trailing CR on headers.

Fri Feb 27 18:02:48 1998  Werner Koch  ([email protected])

	* ringedit.c (keyring_search) [MINGW32]: Open and close file here
	because rename does not work on open files. Chnaged callers.

Fri Feb 27 16:43:11 1998  Werner Koch  ([email protected])

	* sig-check.c (do_check): Add an md_enable.
	* mainproc.c (do_check_sig): Use md_open in case of detached sig
	(proc_tree): Take detached sigs into account.

Fri Feb 27 15:22:46 1998  Werner Koch  ([email protected])

	* g10.c (main): Make use of GNUPGHOME envvar.
	* g10main.c (main): Ditto.

Wed Feb 25 11:40:04 1998  Werner Koch  ([email protected])

	* plaintext.c (ask_for_detached_datafile): add opt.verbose to
	info output.

	* openfile.c (open_sigfile): Try also name ending in ".asc"

Wed Feb 25 08:41:00 1998  Werner Koch  ([email protected])

	* keygen.c (generate_keypair): Fixed memory overflow.

Tue Feb 24 15:51:55 1998  Werner Koch  ([email protected])

	* parse-packet.c (parse_certificate): Support for S2K.
	* build-packet.c (do_secret_cert): Ditto.
	* keygen.c (gen_elg): Ditto.
	* seckey-cert.c (check_elg): Ditto
	(protect_elg): Ditto.
	* sign.c (chnage_passphrase): Ditto.
	* passphrase.c (get_passphrase_hash): Support for a salt and
	changed all callers.
	(make_dek_from_passphrase): Ditto.

Tue Feb 24 12:30:56 1998  Werner Koch  ([email protected])

	* build-packet.c (hash_public_cert): Disabled debug output.

Fri Feb 20 17:22:28 1998  Werner Koch  ([email protected])

	* trustdb.c (init_trustdb) [MINGW32]: Removed 2nd mkdir arg.
	(keyring_copy) [MINGW32]: Add a remove prior to the renames.

Wed Feb 18 18:39:02 1998  Werner Koch  ([email protected])

	* Makefile.am (OMIT_DEPENDENCIES): New.

	* rsa.c: Replaced log_bug by BUG.

Wed Feb 18 13:35:58 1998  Werner Koch  ([email protected])

	* mainproc.c (do_check_sig): Now uses hash_public_cert.
	* parse-packet.c (parse_certificate): Removed hashing.
	* packet.h (public_cert): Removed hash variable.
	* free-packet.c (copy_public_cert, free_public_cert): Likewise.

	* sig-check.c (check_key_signatures): Changed semantics.

Wed Feb 18 12:11:28 1998  Werner Koch  ([email protected])

	* trustdb.c (do_check): Add handling for revocation certificates.
	(build_sigrecs): Ditto.
	(check_sigs): Ditto.

Wed Feb 18 09:31:04 1998  Werner Koch  ([email protected])

	* armor.c (armor_filter): Add afx->hdrlines.
	* revoke.c (gen_revoke): Add comment line.
	* dearmor.c (enarmor_file): Ditto.

	* sig-check.c (check_key_signature): Add handling for class 0x20.
	* mainproc.c : Ditto.

Tue Feb 17 21:24:17 1998  Werner Koch  ([email protected])

	* armor.c : Add header lines "...ARMORED FILE .."
	* dearmor.c (enarmor_file): New.
	* g10maint.c (main): New option "--enarmor"

Tue Feb 17 19:03:33 1998  Werner Koch  ([email protected])

	* mainproc.c : Changed a lot, because the packets are now stored
	a simple linlked list and not anymore in a complicatd tree structure.

Tue Feb 17 10:14:48 1998  Werner Koch  ([email protected])

	* free_packet.c (cmp_public_certs): New.
	(cmp_user_ids): New.

	* kbnode.c (clone_kbnode): New.
	(release_kbnode): Add clone support.

	* ringedit.c (find_keyblock_bypkc): New.

	* sign.c (remove_keysigs): Self signatures are now skipped,
	changed arguments and all callers.

	* import.c : Add functionality.

Tue Feb 17 09:31:40 1998  Werner Koch  ([email protected])

	* options.h (homedir): New option.
	* g10.c, g10maint.c, getkey.c, keygen.c, trustdb.c (opt.homedir): New.

	* trustdb.c (init_trustdb): mkdir for hoem directory
	(sign_private_data): Renamed "sig" to "g10.sig"

Mon Feb 16 20:02:03 1998  Werner Koch  ([email protected])

	* kbnode.c (commit_kbnode): New.
	(delete_kbnode): removed unused first arg. Changed all Callers.

	* ringedit.c (keyblock_resource_name): New.
	(get_keyblock_handle): NULL for filename returns default resource.

Mon Feb 16 19:38:48 1998  Werner Koch  ([email protected])

	* sig-check.s (check_key_signature): Now uses the supplied
	public key to check the signature and not any more the one
	from the getkey.c
	(do_check): New.
	(check_signature): Most work moved to do_check.

Mon Feb 16 14:48:57 1998  Werner Koch  ([email protected])

	* armor.c (find_header): Fixed another bug.

Mon Feb 16 12:18:34 1998  Werner Koch  ([email protected])

	* getkey.c (scan_keyring): Add handling of compressed keyrings.

Mon Feb 16 10:44:51 1998  Werner Koch  ([email protected])

	* g10.c, g10maint.c (strusage): Rewrote.
	(build_list): New

Mon Feb 16 08:58:41 1998  Werner Koch  ([email protected])

	* armor.c (use_armor): New.

Sat Feb 14 14:30:57 1998  Werner Koch  ([email protected])

	* mainproc.c (proc_tree): Sigclass fix.

Sat Feb 14 14:16:33 1998  Werner Koch  ([email protected])

	* armor.c (armor_filter): Changed version and comment string.
	* encode.c, sign.c, keygen.c: Changed all comment packet strings.

Sat Feb 14 12:39:24 1998  Werner Koch  ([email protected])

	* g10.c (aGenRevoke): New command.
	* revoke.c: New.
	* sign.c (make_keysig_packet): Add support for sigclass 0x20.

Fri Feb 13 20:18:14 1998  Werner Koch  ([email protected])

	* ringedit.c (enum_keyblocks, keyring_enum): New.

Fri Feb 13 19:33:40 1998  Werner Koch  ([email protected])

	* export.c: Add functionality.

	* keygen.c (generate_keypair): Moved the leading comment behind the
	key packet.
	* kbnode.c (walk_kbnode): Fixed.

	* g10.c (main): listing armored keys now work.

Fri Feb 13 16:17:43 1998  Werner Koch  ([email protected])

	* parse-packet.c (parse_publickey, parse_signature): Fixed calls
	to mpi_read used for ELG b.

Fri Feb 13 15:13:23 1998  Werner Koch  ([email protected])

	* g10.c (main): changed formatting of help output.

Thu Feb 12 22:24:42 1998  Werner Koch  (wk@frodo)

	* pubkey-enc.c (get_session_key): rewritten


 Copyright 1998, 1999, 2000, 2001 Free Software Foundation, Inc.

 This file is free software; as a special exception the author gives
 unlimited permission to copy and/or distribute it, with or without
 modifications, as long as this notice is preserved.

 This file is distributed in the hope that it will be useful, but
 WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
 implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.