summaryrefslogtreecommitdiff
path: root/src/certtool-args.c.bak
blob: 991657fd3bd505ddacb5838bee544c7d4a130005 (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
/*   -*- buffer-read-only: t -*- vi: set ro:
 *
 *  DO NOT EDIT THIS FILE   (certtool-args.c)
 *
 *  It has been AutoGen-ed
 *  From the definitions    certtool-args.def
 *  and the template file   options
 *
 * Generated from AutoOpts 41:1:16 templates.
 *
 *  AutoOpts is a copyrighted work.  This source file is not encumbered
 *  by AutoOpts licensing, but is provided under the licensing terms chosen
 *  by the certtool author or copyright holder.  AutoOpts is
 *  licensed under the terms of the LGPL.  The redistributable library
 *  (``libopts'') is licensed under the terms of either the LGPL or, at the
 *  users discretion, the BSD license.  See the AutoOpts and/or libopts sources
 *  for details.
 *
 * The certtool program is copyrighted and licensed
 * under the following terms:
 *
 *  Copyright (C) 2000-@YEAR@ Free Software Foundation, and others, all rights reserved.
 *  This is free software. It is licensed for use, modification and
 *  redistribution under the terms of the GNU General Public License,
 *  version 3 or later <http://gnu.org/licenses/gpl.html>
 *
 *  certtool is free software: you can redistribute it and/or modify it
 *  under the terms of the GNU General Public License as published by the
 *  Free Software Foundation, either version 3 of the License, or
 *  (at your option) any later version.
 *
 *  certtool is distributed in the hope that it will be useful, but
 *  WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 *  See the GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License along
 *  with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#ifndef __doxygen__
#define OPTION_CODE_COMPILE 1
#include "certtool-args.h"
#include <sys/types.h>

#include <limits.h>
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>

#ifdef  __cplusplus
extern "C" {
#endif
extern FILE * option_usage_fp;
#define zCopyright      (certtool_opt_strs+0)
#define zLicenseDescrip (certtool_opt_strs+289)


#ifndef NULL
#  define NULL 0
#endif

/**
 *  static const strings for certtool options
 */
static char const certtool_opt_strs[7235] =
/*     0 */ "certtool @VERSION@\n"
            "Copyright (C) 2000-@YEAR@ Free Software Foundation, and others, all rights reserved.\n"
            "This is free software. It is licensed for use, modification and\n"
            "redistribution under the terms of the GNU General Public License,\n"
            "version 3 or later <http://gnu.org/licenses/gpl.html>\n\0"
/*   289 */ "certtool is free software: you can redistribute it and/or modify it under\n"
            "the terms of the GNU General Public License as published by the Free\n"
            "Software Foundation, either version 3 of the License, or (at your option)\n"
            "any later version.\n\n"
            "certtool is distributed in the hope that it will be useful, but WITHOUT ANY\n"
            "WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS\n"
            "FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more\n"
            "details.\n\n"
            "You should have received a copy of the GNU General Public License along\n"
            "with this program.  If not, see <http://www.gnu.org/licenses/>.\n\0"
/*   894 */ "Enable debugging\0"
/*   911 */ "DEBUG\0"
/*   917 */ "debug\0"
/*   923 */ "More verbose output\0"
/*   943 */ "VERBOSE\0"
/*   951 */ "verbose\0"
/*   959 */ "Input file\0"
/*   970 */ "INFILE\0"
/*   977 */ "infile\0"
/*   984 */ "Output file\0"
/*   996 */ "OUTFILE\0"
/*  1004 */ "outfile\0"
/*  1012 */ "Certificate related options:\0"
/*  1041 */ "Print information on the given certificate\0"
/*  1084 */ "CERTIFICATE_INFO\0"
/*  1101 */ "certificate-info\0"
/*  1118 */ "Print information on a public key\0"
/*  1152 */ "PUBKEY_INFO\0"
/*  1164 */ "pubkey-info\0"
/*  1176 */ "Generate a self-signed certificate\0"
/*  1211 */ "GENERATE_SELF_SIGNED\0"
/*  1232 */ "generate-self-signed\0"
/*  1253 */ "Generate a signed certificate\0"
/*  1283 */ "GENERATE_CERTIFICATE\0"
/*  1304 */ "generate-certificate\0"
/*  1325 */ "Generates a proxy certificate\0"
/*  1355 */ "GENERATE_PROXY\0"
/*  1370 */ "generate-proxy\0"
/*  1385 */ "Update a signed certificate\0"
/*  1413 */ "UPDATE_CERTIFICATE\0"
/*  1432 */ "update-certificate\0"
/*  1451 */ "Print the fingerprint of the given certificate\0"
/*  1498 */ "FINGERPRINT\0"
/*  1510 */ "fingerprint\0"
/*  1522 */ "Print the key ID of the given certificate\0"
/*  1564 */ "KEY_ID\0"
/*  1571 */ "key-id\0"
/*  1578 */ "Print certificate's public key (deprecated)\0"
/*  1622 */ "CERTIFICATE_PUBKEY\0"
/*  1641 */ "certificate-pubkey\0"
/*  1660 */ "Generate an X.509 version 1 certificate (with no extensions)\0"
/*  1721 */ "V1\0"
/*  1724 */ "v1\0"
/*  1727 */ "Sign a certificate with a specific signature algorithm\0"
/*  1782 */ "SIGN_PARAMS\0"
/*  1794 */ "sign-params\0"
/*  1806 */ "Certificate request related options:\0"
/*  1843 */ "Print information on the given certificate request\0"
/*  1894 */ "CRQ_INFO\0"
/*  1903 */ "crq-info\0"
/*  1912 */ "Generate a PKCS #10 certificate request\0"
/*  1952 */ "GENERATE_REQUEST\0"
/*  1969 */ "generate-request\0"
/*  1986 */ "Do not use extensions in certificate requests\0"
/*  2032 */ "NO_CRQ_EXTENSIONS\0"
/*  2050 */ "no-crq-extensions\0"
/*  2068 */ "PKCS#12 file related options:\0"
/*  2098 */ "Print information on a PKCS #12 structure\0"
/*  2140 */ "P12_INFO\0"
/*  2149 */ "p12-info\0"
/*  2158 */ "The PKCS #12 friendly name to use\0"
/*  2192 */ "P12_NAME\0"
/*  2201 */ "p12-name\0"
/*  2210 */ "Generate a PKCS #12 structure\0"
/*  2240 */ "TO_P12\0"
/*  2247 */ "to-p12\0"
/*  2254 */ "Private key related options:\0"
/*  2283 */ "Print information on a private key\0"
/*  2318 */ "KEY_INFO\0"
/*  2327 */ "key-info\0"
/*  2336 */ "Print information on a PKCS #8 structure\0"
/*  2377 */ "P8_INFO\0"
/*  2385 */ "p8-info\0"
/*  2393 */ "Convert an RSA-PSS key to raw RSA format\0"
/*  2434 */ "TO_RSA\0"
/*  2441 */ "to-rsa\0"
/*  2448 */ "Generate a private key\0"
/*  2471 */ "GENERATE_PRIVKEY\0"
/*  2488 */ "generate-privkey\0"
/*  2505 */ "Specify the number of bits for key generation\0"
/*  2551 */ "BITS\0"
/*  2556 */ "bits\0"
/*  2561 */ "Specify the curve used for EC key generation\0"
/*  2606 */ "CURVE\0"
/*  2612 */ "curve\0"
/*  2618 */ "Specify the security level [low, legacy, medium, high, ultra]\0"
/*  2680 */ "SEC_PARAM\0"
/*  2690 */ "sec-param\0"
/*  2700 */ "Convert a given key to a PKCS #8 structure\0"
/*  2743 */ "TO_P8\0"
/*  2749 */ "to-p8\0"
/*  2755 */ "Use PKCS #8 format for private keys\0"
/*  2791 */ "PKCS8\0"
/*  2797 */ "pkcs8\0"
/*  2803 */ "Generate a private key or parameters from a seed using a provable method\0"
/*  2876 */ "PROVABLE\0"
/*  2885 */ "provable\0"
/*  2894 */ "Verify a private key generated from a seed using a provable method\0"
/*  2961 */ "VERIFY_PROVABLE_PRIVKEY\0"
/*  2985 */ "verify-provable-privkey\0"
/*  3009 */ "When generating a private key use the given hex-encoded seed\0"
/*  3070 */ "SEED\0"
/*  3075 */ "seed\0"
/*  3080 */ "CRL related options:\0"
/*  3101 */ "Print information on the given CRL structure\0"
/*  3146 */ "CRL_INFO\0"
/*  3155 */ "crl-info\0"
/*  3164 */ "Generate a CRL\0"
/*  3179 */ "GENERATE_CRL\0"
/*  3192 */ "generate-crl\0"
/*  3205 */ "Verify a Certificate Revocation List using a trusted list\0"
/*  3263 */ "VERIFY_CRL\0"
/*  3274 */ "verify-crl\0"
/*  3285 */ "Certificate verification related options:\0"
/*  3327 */ "Verify a PEM encoded certificate chain\0"
/*  3366 */ "VERIFY_CHAIN\0"
/*  3379 */ "verify-chain\0"
/*  3392 */ "Verify a PEM encoded certificate (chain) against a trusted set\0"
/*  3455 */ "VERIFY\0"
/*  3462 */ "verify\0"
/*  3469 */ "Specify a hostname to be used for certificate chain verification\0"
/*  3534 */ "VERIFY_HOSTNAME\0"
/*  3550 */ "verify-hostname\0"
/*  3566 */ "Specify a email to be used for certificate chain verification\0"
/*  3628 */ "VERIFY_EMAIL\0"
/*  3641 */ "verify-email\0"
/*  3654 */ "Specify a purpose OID to be used for certificate chain verification\0"
/*  3722 */ "VERIFY_PURPOSE\0"
/*  3737 */ "verify-purpose\0"
/*  3752 */ "Allow broken algorithms, such as MD5 for verification\0"
/*  3806 */ "VERIFY_ALLOW_BROKEN\0"
/*  3826 */ "verify-allow-broken\0"
/*  3846 */ "PKCS#7 structure options:\0"
/*  3872 */ "Generate a PKCS #7 structure\0"
/*  3901 */ "P7_GENERATE\0"
/*  3913 */ "p7-generate\0"
/*  3925 */ "Signs using a PKCS #7 structure\0"
/*  3957 */ "P7_SIGN\0"
/*  3965 */ "p7-sign\0"
/*  3973 */ "Signs using a detached PKCS #7 structure\0"
/*  4014 */ "P7_DETACHED_SIGN\0"
/*  4031 */ "p7-detached-sign\0"
/*  4048 */ "The signer's certificate will be included in the cert list.\0"
/*  4108 */ "P7_INCLUDE_CERT\0"
/*  4124 */ "no-p7-include-cert\0"
/*  4143 */ "no\0"
/*  4146 */ "Will include a timestamp in the PKCS #7 structure\0"
/*  4196 */ "P7_TIME\0"
/*  4204 */ "no-p7-time\0"
/*  4215 */ "Will show the embedded data in the PKCS #7 structure\0"
/*  4268 */ "P7_SHOW_DATA\0"
/*  4281 */ "no-p7-show-data\0"
/*  4297 */ "Print information on a PKCS #7 structure\0"
/*  4338 */ "P7_INFO\0"
/*  4346 */ "p7-info\0"
/*  4354 */ "Verify the provided PKCS #7 structure\0"
/*  4392 */ "P7_VERIFY\0"
/*  4402 */ "p7-verify\0"
/*  4412 */ "Convert S/MIME to PKCS #7 structure\0"
/*  4448 */ "SMIME_TO_P7\0"
/*  4460 */ "smime-to-p7\0"
/*  4472 */ "Other options:\0"
/*  4487 */ "Generate PKCS #3 encoded Diffie-Hellman parameters (deprecated)\0"
/*  4551 */ "GENERATE_DH_PARAMS\0"
/*  4570 */ "generate-dh-params\0"
/*  4589 */ "List the included PKCS #3 encoded Diffie-Hellman parameters\0"
/*  4649 */ "GET_DH_PARAMS\0"
/*  4663 */ "get-dh-params\0"
/*  4677 */ "Print information PKCS #3 encoded Diffie-Hellman parameters\0"
/*  4737 */ "DH_INFO\0"
/*  4745 */ "dh-info\0"
/*  4753 */ "Loads a private key file\0"
/*  4778 */ "LOAD_PRIVKEY\0"
/*  4791 */ "load-privkey\0"
/*  4804 */ "Loads a public key file\0"
/*  4828 */ "LOAD_PUBKEY\0"
/*  4840 */ "load-pubkey\0"
/*  4852 */ "Loads a certificate request file\0"
/*  4885 */ "LOAD_REQUEST\0"
/*  4898 */ "load-request\0"
/*  4911 */ "Loads a certificate file\0"
/*  4936 */ "LOAD_CERTIFICATE\0"
/*  4953 */ "load-certificate\0"
/*  4970 */ "Loads the certificate authority's private key file\0"
/*  5021 */ "LOAD_CA_PRIVKEY\0"
/*  5037 */ "load-ca-privkey\0"
/*  5053 */ "Loads the certificate authority's certificate file\0"
/*  5104 */ "LOAD_CA_CERTIFICATE\0"
/*  5124 */ "load-ca-certificate\0"
/*  5144 */ "Loads the provided CRL\0"
/*  5167 */ "LOAD_CRL\0"
/*  5176 */ "load-crl\0"
/*  5185 */ "Loads auxiliary data\0"
/*  5206 */ "LOAD_DATA\0"
/*  5216 */ "load-data\0"
/*  5226 */ "Password to use\0"
/*  5242 */ "PASSWORD\0"
/*  5251 */ "password\0"
/*  5260 */ "Enforce a NULL password\0"
/*  5284 */ "NULL_PASSWORD\0"
/*  5298 */ "null-password\0"
/*  5312 */ "Enforce an empty password\0"
/*  5338 */ "EMPTY_PASSWORD\0"
/*  5353 */ "empty-password\0"
/*  5368 */ "Print big number in an easier format to parse\0"
/*  5414 */ "HEX_NUMBERS\0"
/*  5426 */ "hex-numbers\0"
/*  5438 */ "In certain operations it prints the information in C-friendly format\0"
/*  5507 */ "CPRINT\0"
/*  5514 */ "cprint\0"
/*  5521 */ "Generate RSA key (deprecated)\0"
/*  5551 */ "RSA\0"
/*  5555 */ "rsa\0"
/*  5559 */ "Generate DSA key (deprecated)\0"
/*  5589 */ "DSA\0"
/*  5593 */ "dsa\0"
/*  5597 */ "Generate ECC (ECDSA) key (deprecated)\0"
/*  5635 */ "ECC\0"
/*  5639 */ "ecc\0"
/*  5643 */ "an alias for the 'ecc' option (deprecated)\0"
/*  5686 */ "ecdsa\0"
/*  5692 */ "Specify the key type to use on key generation\0"
/*  5738 */ "KEY_TYPE\0"
/*  5747 */ "key-type\0"
/*  5756 */ "Hash algorithm to use for signing\0"
/*  5790 */ "HASH\0"
/*  5795 */ "hash\0"
/*  5800 */ "Specify the RSA-PSS key default salt size\0"
/*  5842 */ "SALT_SIZE\0"
/*  5852 */ "salt-size\0"
/*  5862 */ "Use DER format for input certificates, private keys, and DH parameters\0"
/*  5933 */ "INDER\0"
/*  5939 */ "no-inder\0"
/*  5948 */ "an alias for the 'inder' option\0"
/*  5980 */ "inraw\0"
/*  5986 */ "Use DER format for output certificates, private keys, and DH parameters\0"
/*  6058 */ "OUTDER\0"
/*  6065 */ "no-outder\0"
/*  6075 */ "an alias for the 'outder' option\0"
/*  6108 */ "outraw\0"
/*  6115 */ "No effect (deprecated)\0"
/*  6138 */ "DISABLE_QUICK_RANDOM\0"
/*  6159 */ "disable-quick-random\0"
/*  6180 */ "Template file to use for non-interactive operation\0"
/*  6231 */ "TEMPLATE\0"
/*  6240 */ "template\0"
/*  6249 */ "Print information to stdout instead of stderr\0"
/*  6295 */ "STDOUT_INFO\0"
/*  6307 */ "stdout-info\0"
/*  6319 */ "Enable interaction for entering password when in batch mode.\0"
/*  6380 */ "ASK_PASS\0"
/*  6389 */ "ask-pass\0"
/*  6398 */ "Cipher to use for PKCS #8 and #12 operations\0"
/*  6443 */ "PKCS_CIPHER\0"
/*  6455 */ "pkcs-cipher\0"
/*  6467 */ "Specify the PKCS #11 provider library\0"
/*  6505 */ "PROVIDER\0"
/*  6514 */ "provider\0"
/*  6523 */ "display extended usage information and exit\0"
/*  6567 */ "help\0"
/*  6572 */ "extended usage information passed thru pager\0"
/*  6617 */ "more-help\0"
/*  6627 */ "output version information and exit\0"
/*  6663 */ "version\0"
/*  6671 */ "CERTTOOL\0"
/*  6680 */ "certtool - GnuTLS certificate tool\n"
            "Usage:  %s [ -<flag> [<val>] | --<name>[{=| }<val>] ]...\n\0"
/*  6773 */ "@PACKAGE_BUGREPORT@\0"
/*  6793 */ "\n\0"
/*  6795 */ "Tool to parse and generate X.509 certificates, requests and private keys.\n"
            "It can be used interactively or non interactively by specifying the\n"
            "template command line option.\n\n"
            "The tool accepts files or supported URIs via the --infile option.  In case\n"
            "PIN is required for URI access you can provide it using the environment\n"
            "variables GNUTLS_PIN and GNUTLS_SO_PIN.\n\0"
/*  7156 */ "certtool @VERSION@\0"
/*  7175 */ "certtool [options]\n"
            "certtool --help for usage instructions.\n";

/**
 *  debug option description:
 */
/** Descriptive text for the debug option */
#define DEBUG_DESC      (certtool_opt_strs+894)
/** Upper-cased name for the debug option */
#define DEBUG_NAME      (certtool_opt_strs+911)
/** Name string for the debug option */
#define DEBUG_name      (certtool_opt_strs+917)
/** Compiled in flag settings for the debug option */
#define DEBUG_FLAGS     (OPTST_DISABLED \
        | OPTST_SET_ARGTYPE(OPARG_TYPE_NUMERIC))

/**
 *  verbose option description:
 */
/** Descriptive text for the verbose option */
#define VERBOSE_DESC      (certtool_opt_strs+923)
/** Upper-cased name for the verbose option */
#define VERBOSE_NAME      (certtool_opt_strs+943)
/** Name string for the verbose option */
#define VERBOSE_name      (certtool_opt_strs+951)
/** Compiled in flag settings for the verbose option */
#define VERBOSE_FLAGS     (OPTST_DISABLED)

/**
 *  infile option description:
 */
/** Descriptive text for the infile option */
#define INFILE_DESC      (certtool_opt_strs+959)
/** Upper-cased name for the infile option */
#define INFILE_NAME      (certtool_opt_strs+970)
/** Name string for the infile option */
#define INFILE_name      (certtool_opt_strs+977)
/** Compiled in flag settings for the infile option */
#define INFILE_FLAGS     (OPTST_DISABLED \
        | OPTST_SET_ARGTYPE(OPARG_TYPE_FILE))

/**
 *  outfile option description:
 */
/** Descriptive text for the outfile option */
#define OUTFILE_DESC      (certtool_opt_strs+984)
/** Upper-cased name for the outfile option */
#define OUTFILE_NAME      (certtool_opt_strs+996)
/** Name string for the outfile option */
#define OUTFILE_name      (certtool_opt_strs+1004)
/** Compiled in flag settings for the outfile option */
#define OUTFILE_FLAGS     (OPTST_DISABLED \
        | OPTST_SET_ARGTYPE(OPARG_TYPE_STRING))

/**
 *  cert_options option description:
 */
/** cert_options option separation text */
#define CERT_OPTIONS_DESC      (certtool_opt_strs+1012)
#define CERT_OPTIONS_FLAGS     (OPTST_DOCUMENT | OPTST_NO_INIT)

/**
 *  certificate-info option description:
 */
/** Descriptive text for the certificate-info option */
#define CERTIFICATE_INFO_DESC      (certtool_opt_strs+1041)
/** Upper-cased name for the certificate-info option */
#define CERTIFICATE_INFO_NAME      (certtool_opt_strs+1084)
/** Name string for the certificate-info option */
#define CERTIFICATE_INFO_name      (certtool_opt_strs+1101)
/** Compiled in flag settings for the certificate-info option */
#define CERTIFICATE_INFO_FLAGS     (OPTST_DISABLED)

/**
 *  pubkey-info option description:
 */
/** Descriptive text for the pubkey-info option */
#define PUBKEY_INFO_DESC      (certtool_opt_strs+1118)
/** Upper-cased name for the pubkey-info option */
#define PUBKEY_INFO_NAME      (certtool_opt_strs+1152)
/** Name string for the pubkey-info option */
#define PUBKEY_INFO_name      (certtool_opt_strs+1164)
/** Compiled in flag settings for the pubkey-info option */
#define PUBKEY_INFO_FLAGS     (OPTST_DISABLED)

/**
 *  generate-self-signed option description:
 */
/** Descriptive text for the generate-self-signed option */
#define GENERATE_SELF_SIGNED_DESC      (certtool_opt_strs+1176)
/** Upper-cased name for the generate-self-signed option */
#define GENERATE_SELF_SIGNED_NAME      (certtool_opt_strs+1211)
/** Name string for the generate-self-signed option */
#define GENERATE_SELF_SIGNED_name      (certtool_opt_strs+1232)
/** Compiled in flag settings for the generate-self-signed option */
#define GENERATE_SELF_SIGNED_FLAGS     (OPTST_DISABLED)

/**
 *  generate-certificate option description:
 */
/** Descriptive text for the generate-certificate option */
#define GENERATE_CERTIFICATE_DESC      (certtool_opt_strs+1253)
/** Upper-cased name for the generate-certificate option */
#define GENERATE_CERTIFICATE_NAME      (certtool_opt_strs+1283)
/** Name string for the generate-certificate option */
#define GENERATE_CERTIFICATE_name      (certtool_opt_strs+1304)
/** Compiled in flag settings for the generate-certificate option */
#define GENERATE_CERTIFICATE_FLAGS     (OPTST_DISABLED)

/**
 *  generate-proxy option description:
 */
/** Descriptive text for the generate-proxy option */
#define GENERATE_PROXY_DESC      (certtool_opt_strs+1325)
/** Upper-cased name for the generate-proxy option */
#define GENERATE_PROXY_NAME      (certtool_opt_strs+1355)
/** Name string for the generate-proxy option */
#define GENERATE_PROXY_name      (certtool_opt_strs+1370)
/** Compiled in flag settings for the generate-proxy option */
#define GENERATE_PROXY_FLAGS     (OPTST_DISABLED)

/**
 *  update-certificate option description:
 */
/** Descriptive text for the update-certificate option */
#define UPDATE_CERTIFICATE_DESC      (certtool_opt_strs+1385)
/** Upper-cased name for the update-certificate option */
#define UPDATE_CERTIFICATE_NAME      (certtool_opt_strs+1413)
/** Name string for the update-certificate option */
#define UPDATE_CERTIFICATE_name      (certtool_opt_strs+1432)
/** Compiled in flag settings for the update-certificate option */
#define UPDATE_CERTIFICATE_FLAGS     (OPTST_DISABLED)

/**
 *  fingerprint option description:
 */
/** Descriptive text for the fingerprint option */
#define FINGERPRINT_DESC      (certtool_opt_strs+1451)
/** Upper-cased name for the fingerprint option */
#define FINGERPRINT_NAME      (certtool_opt_strs+1498)
/** Name string for the fingerprint option */
#define FINGERPRINT_name      (certtool_opt_strs+1510)
/** Compiled in flag settings for the fingerprint option */
#define FINGERPRINT_FLAGS     (OPTST_DISABLED)

/**
 *  key-id option description:
 */
/** Descriptive text for the key-id option */
#define KEY_ID_DESC      (certtool_opt_strs+1522)
/** Upper-cased name for the key-id option */
#define KEY_ID_NAME      (certtool_opt_strs+1564)
/** Name string for the key-id option */
#define KEY_ID_name      (certtool_opt_strs+1571)
/** Compiled in flag settings for the key-id option */
#define KEY_ID_FLAGS     (OPTST_DISABLED)

/**
 *  certificate-pubkey option description:
 */
/** Descriptive text for the certificate-pubkey option */
#define CERTIFICATE_PUBKEY_DESC      (certtool_opt_strs+1578)
/** Upper-cased name for the certificate-pubkey option */
#define CERTIFICATE_PUBKEY_NAME      (certtool_opt_strs+1622)
/** Name string for the certificate-pubkey option */
#define CERTIFICATE_PUBKEY_name      (certtool_opt_strs+1641)
/** Compiled in flag settings for the certificate-pubkey option */
#define CERTIFICATE_PUBKEY_FLAGS     (OPTST_DISABLED | OPTST_DEPRECATED)

/**
 *  v1 option description:
 */
/** Descriptive text for the v1 option */
#define V1_DESC      (certtool_opt_strs+1660)
/** Upper-cased name for the v1 option */
#define V1_NAME      (certtool_opt_strs+1721)
/** Name string for the v1 option */
#define V1_name      (certtool_opt_strs+1724)
/** Compiled in flag settings for the v1 option */
#define V1_FLAGS     (OPTST_DISABLED)

/**
 *  sign-params option description:
 */
/** Descriptive text for the sign-params option */
#define SIGN_PARAMS_DESC      (certtool_opt_strs+1727)
/** Upper-cased name for the sign-params option */
#define SIGN_PARAMS_NAME      (certtool_opt_strs+1782)
/** Name string for the sign-params option */
#define SIGN_PARAMS_name      (certtool_opt_strs+1794)
/** Compiled in flag settings for the sign-params option */
#define SIGN_PARAMS_FLAGS     (OPTST_DISABLED \
        | OPTST_SET_ARGTYPE(OPARG_TYPE_STRING))

/**
 *  crq_options option description:
 */
/** crq_options option separation text */
#define CRQ_OPTIONS_DESC      (certtool_opt_strs+1806)
#define CRQ_OPTIONS_FLAGS     (OPTST_DOCUMENT | OPTST_NO_INIT)

/**
 *  crq-info option description:
 */
/** Descriptive text for the crq-info option */
#define CRQ_INFO_DESC      (certtool_opt_strs+1843)
/** Upper-cased name for the crq-info option */
#define CRQ_INFO_NAME      (certtool_opt_strs+1894)
/** Name string for the crq-info option */
#define CRQ_INFO_name      (certtool_opt_strs+1903)
/** Compiled in flag settings for the crq-info option */
#define CRQ_INFO_FLAGS     (OPTST_DISABLED)

/**
 *  generate-request option description with
 *  "Must also have options" and "Incompatible options":
 */
/** Descriptive text for the generate-request option */
#define GENERATE_REQUEST_DESC      (certtool_opt_strs+1912)
/** Upper-cased name for the generate-request option */
#define GENERATE_REQUEST_NAME      (certtool_opt_strs+1952)
/** Name string for the generate-request option */
#define GENERATE_REQUEST_name      (certtool_opt_strs+1969)
/** Other options that appear in conjunction with the generate-request option */
static int const aGenerate_RequestCantList[] = {
    INDEX_OPT_INFILE, NO_EQUIVALENT };
/** Compiled in flag settings for the generate-request option */
#define GENERATE_REQUEST_FLAGS     (OPTST_DISABLED)

/**
 *  no-crq-extensions option description:
 */
/** Descriptive text for the no-crq-extensions option */
#define NO_CRQ_EXTENSIONS_DESC      (certtool_opt_strs+1986)
/** Upper-cased name for the no-crq-extensions option */
#define NO_CRQ_EXTENSIONS_NAME      (certtool_opt_strs+2032)
/** Name string for the no-crq-extensions option */
#define NO_CRQ_EXTENSIONS_name      (certtool_opt_strs+2050)
/** Compiled in flag settings for the no-crq-extensions option */
#define NO_CRQ_EXTENSIONS_FLAGS     (OPTST_DISABLED)

/**
 *  pkcs12_options option description:
 */
/** pkcs12_options option separation text */
#define PKCS12_OPTIONS_DESC      (certtool_opt_strs+2068)
#define PKCS12_OPTIONS_FLAGS     (OPTST_DOCUMENT | OPTST_NO_INIT)

/**
 *  p12-info option description:
 */
/** Descriptive text for the p12-info option */
#define P12_INFO_DESC      (certtool_opt_strs+2098)
/** Upper-cased name for the p12-info option */
#define P12_INFO_NAME      (certtool_opt_strs+2140)
/** Name string for the p12-info option */
#define P12_INFO_name      (certtool_opt_strs+2149)
/** Compiled in flag settings for the p12-info option */
#define P12_INFO_FLAGS     (OPTST_DISABLED)

/**
 *  p12-name option description:
 */
/** Descriptive text for the p12-name option */
#define P12_NAME_DESC      (certtool_opt_strs+2158)
/** Upper-cased name for the p12-name option */
#define P12_NAME_NAME      (certtool_opt_strs+2192)
/** Name string for the p12-name option */
#define P12_NAME_name      (certtool_opt_strs+2201)
/** Compiled in flag settings for the p12-name option */
#define P12_NAME_FLAGS     (OPTST_DISABLED \
        | OPTST_SET_ARGTYPE(OPARG_TYPE_STRING))

/**
 *  to-p12 option description:
 */
/** Descriptive text for the to-p12 option */
#define TO_P12_DESC      (certtool_opt_strs+2210)
/** Upper-cased name for the to-p12 option */
#define TO_P12_NAME      (certtool_opt_strs+2240)
/** Name string for the to-p12 option */
#define TO_P12_name      (certtool_opt_strs+2247)
/** Compiled in flag settings for the to-p12 option */
#define TO_P12_FLAGS     (OPTST_DISABLED)

/**
 *  key_options option description:
 */
/** key_options option separation text */
#define KEY_OPTIONS_DESC      (certtool_opt_strs+2254)
#define KEY_OPTIONS_FLAGS     (OPTST_DOCUMENT | OPTST_NO_INIT)

/**
 *  key-info option description:
 */
/** Descriptive text for the key-info option */
#define KEY_INFO_DESC      (certtool_opt_strs+2283)
/** Upper-cased name for the key-info option */
#define KEY_INFO_NAME      (certtool_opt_strs+2318)
/** Name string for the key-info option */
#define KEY_INFO_name      (certtool_opt_strs+2327)
/** Compiled in flag settings for the key-info option */
#define KEY_INFO_FLAGS     (OPTST_DISABLED)

/**
 *  p8-info option description:
 */
/** Descriptive text for the p8-info option */
#define P8_INFO_DESC      (certtool_opt_strs+2336)
/** Upper-cased name for the p8-info option */
#define P8_INFO_NAME      (certtool_opt_strs+2377)
/** Name string for the p8-info option */
#define P8_INFO_name      (certtool_opt_strs+2385)
/** Compiled in flag settings for the p8-info option */
#define P8_INFO_FLAGS     (OPTST_DISABLED)

/**
 *  to-rsa option description:
 */
/** Descriptive text for the to-rsa option */
#define TO_RSA_DESC      (certtool_opt_strs+2393)
/** Upper-cased name for the to-rsa option */
#define TO_RSA_NAME      (certtool_opt_strs+2434)
/** Name string for the to-rsa option */
#define TO_RSA_name      (certtool_opt_strs+2441)
/** Compiled in flag settings for the to-rsa option */
#define TO_RSA_FLAGS     (OPTST_DISABLED)

/**
 *  generate-privkey option description:
 */
/** Descriptive text for the generate-privkey option */
#define GENERATE_PRIVKEY_DESC      (certtool_opt_strs+2448)
/** Upper-cased name for the generate-privkey option */
#define GENERATE_PRIVKEY_NAME      (certtool_opt_strs+2471)
/** Name string for the generate-privkey option */
#define GENERATE_PRIVKEY_name      (certtool_opt_strs+2488)
/** Compiled in flag settings for the generate-privkey option */
#define GENERATE_PRIVKEY_FLAGS     (OPTST_DISABLED)

/**
 *  bits option description:
 */
/** Descriptive text for the bits option */
#define BITS_DESC      (certtool_opt_strs+2505)
/** Upper-cased name for the bits option */
#define BITS_NAME      (certtool_opt_strs+2551)
/** Name string for the bits option */
#define BITS_name      (certtool_opt_strs+2556)
/** Compiled in flag settings for the bits option */
#define BITS_FLAGS     (OPTST_DISABLED \
        | OPTST_SET_ARGTYPE(OPARG_TYPE_NUMERIC))

/**
 *  curve option description:
 */
/** Descriptive text for the curve option */
#define CURVE_DESC      (certtool_opt_strs+2561)
/** Upper-cased name for the curve option */
#define CURVE_NAME      (certtool_opt_strs+2606)
/** Name string for the curve option */
#define CURVE_name      (certtool_opt_strs+2612)
/** Compiled in flag settings for the curve option */
#define CURVE_FLAGS     (OPTST_DISABLED \
        | OPTST_SET_ARGTYPE(OPARG_TYPE_STRING))

/**
 *  sec-param option description:
 */
/** Descriptive text for the sec-param option */
#define SEC_PARAM_DESC      (certtool_opt_strs+2618)
/** Upper-cased name for the sec-param option */
#define SEC_PARAM_NAME      (certtool_opt_strs+2680)
/** Name string for the sec-param option */
#define SEC_PARAM_name      (certtool_opt_strs+2690)
/** Compiled in flag settings for the sec-param option */
#define SEC_PARAM_FLAGS     (OPTST_DISABLED \
        | OPTST_SET_ARGTYPE(OPARG_TYPE_STRING))

/**
 *  to-p8 option description:
 */
/** Descriptive text for the to-p8 option */
#define TO_P8_DESC      (certtool_opt_strs+2700)
/** Upper-cased name for the to-p8 option */
#define TO_P8_NAME      (certtool_opt_strs+2743)
/** Name string for the to-p8 option */
#define TO_P8_name      (certtool_opt_strs+2749)
/** Compiled in flag settings for the to-p8 option */
#define TO_P8_FLAGS     (OPTST_DISABLED)

/**
 *  pkcs8 option description:
 */
/** Descriptive text for the pkcs8 option */
#define PKCS8_DESC      (certtool_opt_strs+2755)
/** Upper-cased name for the pkcs8 option */
#define PKCS8_NAME      (certtool_opt_strs+2791)
/** Name string for the pkcs8 option */
#define PKCS8_name      (certtool_opt_strs+2797)
/** Compiled in flag settings for the pkcs8 option */
#define PKCS8_FLAGS     (OPTST_DISABLED)

/**
 *  provable option description:
 */
/** Descriptive text for the provable option */
#define PROVABLE_DESC      (certtool_opt_strs+2803)
/** Upper-cased name for the provable option */
#define PROVABLE_NAME      (certtool_opt_strs+2876)
/** Name string for the provable option */
#define PROVABLE_name      (certtool_opt_strs+2885)
/** Compiled in flag settings for the provable option */
#define PROVABLE_FLAGS     (OPTST_DISABLED)

/**
 *  verify-provable-privkey option description:
 */
/** Descriptive text for the verify-provable-privkey option */
#define VERIFY_PROVABLE_PRIVKEY_DESC      (certtool_opt_strs+2894)
/** Upper-cased name for the verify-provable-privkey option */
#define VERIFY_PROVABLE_PRIVKEY_NAME      (certtool_opt_strs+2961)
/** Name string for the verify-provable-privkey option */
#define VERIFY_PROVABLE_PRIVKEY_name      (certtool_opt_strs+2985)
/** Compiled in flag settings for the verify-provable-privkey option */
#define VERIFY_PROVABLE_PRIVKEY_FLAGS     (OPTST_DISABLED)

/**
 *  seed option description:
 */
/** Descriptive text for the seed option */
#define SEED_DESC      (certtool_opt_strs+3009)
/** Upper-cased name for the seed option */
#define SEED_NAME      (certtool_opt_strs+3070)
/** Name string for the seed option */
#define SEED_name      (certtool_opt_strs+3075)
/** Compiled in flag settings for the seed option */
#define SEED_FLAGS     (OPTST_DISABLED \
        | OPTST_SET_ARGTYPE(OPARG_TYPE_STRING))

/**
 *  crl_options option description:
 */
/** crl_options option separation text */
#define CRL_OPTIONS_DESC      (certtool_opt_strs+3080)
#define CRL_OPTIONS_FLAGS     (OPTST_DOCUMENT | OPTST_NO_INIT)

/**
 *  crl-info option description:
 */
/** Descriptive text for the crl-info option */
#define CRL_INFO_DESC      (certtool_opt_strs+3101)
/** Upper-cased name for the crl-info option */
#define CRL_INFO_NAME      (certtool_opt_strs+3146)
/** Name string for the crl-info option */
#define CRL_INFO_name      (certtool_opt_strs+3155)
/** Compiled in flag settings for the crl-info option */
#define CRL_INFO_FLAGS     (OPTST_DISABLED)

/**
 *  generate-crl option description:
 */
/** Descriptive text for the generate-crl option */
#define GENERATE_CRL_DESC      (certtool_opt_strs+3164)
/** Upper-cased name for the generate-crl option */
#define GENERATE_CRL_NAME      (certtool_opt_strs+3179)
/** Name string for the generate-crl option */
#define GENERATE_CRL_name      (certtool_opt_strs+3192)
/** Compiled in flag settings for the generate-crl option */
#define GENERATE_CRL_FLAGS     (OPTST_DISABLED)

/**
 *  verify-crl option description with
 *  "Must also have options" and "Incompatible options":
 */
/** Descriptive text for the verify-crl option */
#define VERIFY_CRL_DESC      (certtool_opt_strs+3205)
/** Upper-cased name for the verify-crl option */
#define VERIFY_CRL_NAME      (certtool_opt_strs+3263)
/** Name string for the verify-crl option */
#define VERIFY_CRL_name      (certtool_opt_strs+3274)
/** Other options that are required by the verify-crl option */
static int const aVerify_CrlMustList[] = {
    INDEX_OPT_LOAD_CA_CERTIFICATE, NO_EQUIVALENT };
/** Compiled in flag settings for the verify-crl option */
#define VERIFY_CRL_FLAGS     (OPTST_DISABLED)

/**
 *  cert_verify_options option description:
 */
/** cert_verify_options option separation text */
#define CERT_VERIFY_OPTIONS_DESC      (certtool_opt_strs+3285)
#define CERT_VERIFY_OPTIONS_FLAGS     (OPTST_DOCUMENT | OPTST_NO_INIT)

/**
 *  verify-chain option description:
 */
/** Descriptive text for the verify-chain option */
#define VERIFY_CHAIN_DESC      (certtool_opt_strs+3327)
/** Upper-cased name for the verify-chain option */
#define VERIFY_CHAIN_NAME      (certtool_opt_strs+3366)
/** Name string for the verify-chain option */
#define VERIFY_CHAIN_name      (certtool_opt_strs+3379)
/** Compiled in flag settings for the verify-chain option */
#define VERIFY_CHAIN_FLAGS     (OPTST_DISABLED)

/**
 *  verify option description:
 */
/** Descriptive text for the verify option */
#define VERIFY_DESC      (certtool_opt_strs+3392)
/** Upper-cased name for the verify option */
#define VERIFY_NAME      (certtool_opt_strs+3455)
/** Name string for the verify option */
#define VERIFY_name      (certtool_opt_strs+3462)
/** Compiled in flag settings for the verify option */
#define VERIFY_FLAGS     (OPTST_DISABLED)

/**
 *  verify-hostname option description:
 */
/** Descriptive text for the verify-hostname option */
#define VERIFY_HOSTNAME_DESC      (certtool_opt_strs+3469)
/** Upper-cased name for the verify-hostname option */
#define VERIFY_HOSTNAME_NAME      (certtool_opt_strs+3534)
/** Name string for the verify-hostname option */
#define VERIFY_HOSTNAME_name      (certtool_opt_strs+3550)
/** Compiled in flag settings for the verify-hostname option */
#define VERIFY_HOSTNAME_FLAGS     (OPTST_DISABLED \
        | OPTST_SET_ARGTYPE(OPARG_TYPE_STRING))

/**
 *  verify-email option description with
 *  "Must also have options" and "Incompatible options":
 */
/** Descriptive text for the verify-email option */
#define VERIFY_EMAIL_DESC      (certtool_opt_strs+3566)
/** Upper-cased name for the verify-email option */
#define VERIFY_EMAIL_NAME      (certtool_opt_strs+3628)
/** Name string for the verify-email option */
#define VERIFY_EMAIL_name      (certtool_opt_strs+3641)
/** Other options that appear in conjunction with the verify-email option */
static int const aVerify_EmailCantList[] = {
    INDEX_OPT_VERIFY_HOSTNAME, NO_EQUIVALENT };
/** Compiled in flag settings for the verify-email option */
#define VERIFY_EMAIL_FLAGS     (OPTST_DISABLED \
        | OPTST_SET_ARGTYPE(OPARG_TYPE_STRING))

/**
 *  verify-purpose option description:
 */
/** Descriptive text for the verify-purpose option */
#define VERIFY_PURPOSE_DESC      (certtool_opt_strs+3654)
/** Upper-cased name for the verify-purpose option */
#define VERIFY_PURPOSE_NAME      (certtool_opt_strs+3722)
/** Name string for the verify-purpose option */
#define VERIFY_PURPOSE_name      (certtool_opt_strs+3737)
/** Compiled in flag settings for the verify-purpose option */
#define VERIFY_PURPOSE_FLAGS     (OPTST_DISABLED \
        | OPTST_SET_ARGTYPE(OPARG_TYPE_STRING))

/**
 *  verify-allow-broken option description:
 */
/** Descriptive text for the verify-allow-broken option */
#define VERIFY_ALLOW_BROKEN_DESC      (certtool_opt_strs+3752)
/** Upper-cased name for the verify-allow-broken option */
#define VERIFY_ALLOW_BROKEN_NAME      (certtool_opt_strs+3806)
/** Name string for the verify-allow-broken option */
#define VERIFY_ALLOW_BROKEN_name      (certtool_opt_strs+3826)
/** Compiled in flag settings for the verify-allow-broken option */
#define VERIFY_ALLOW_BROKEN_FLAGS     (OPTST_DISABLED)

/**
 *  pkcs7_options option description:
 */
/** pkcs7_options option separation text */
#define PKCS7_OPTIONS_DESC      (certtool_opt_strs+3846)
#define PKCS7_OPTIONS_FLAGS     (OPTST_DOCUMENT | OPTST_NO_INIT)

/**
 *  p7-generate option description:
 */
/** Descriptive text for the p7-generate option */
#define P7_GENERATE_DESC      (certtool_opt_strs+3872)
/** Upper-cased name for the p7-generate option */
#define P7_GENERATE_NAME      (certtool_opt_strs+3901)
/** Name string for the p7-generate option */
#define P7_GENERATE_name      (certtool_opt_strs+3913)
/** Compiled in flag settings for the p7-generate option */
#define P7_GENERATE_FLAGS     (OPTST_DISABLED)

/**
 *  p7-sign option description:
 */
/** Descriptive text for the p7-sign option */
#define P7_SIGN_DESC      (certtool_opt_strs+3925)
/** Upper-cased name for the p7-sign option */
#define P7_SIGN_NAME      (certtool_opt_strs+3957)
/** Name string for the p7-sign option */
#define P7_SIGN_name      (certtool_opt_strs+3965)
/** Compiled in flag settings for the p7-sign option */
#define P7_SIGN_FLAGS     (OPTST_DISABLED)

/**
 *  p7-detached-sign option description:
 */
/** Descriptive text for the p7-detached-sign option */
#define P7_DETACHED_SIGN_DESC      (certtool_opt_strs+3973)
/** Upper-cased name for the p7-detached-sign option */
#define P7_DETACHED_SIGN_NAME      (certtool_opt_strs+4014)
/** Name string for the p7-detached-sign option */
#define P7_DETACHED_SIGN_name      (certtool_opt_strs+4031)
/** Compiled in flag settings for the p7-detached-sign option */
#define P7_DETACHED_SIGN_FLAGS     (OPTST_DISABLED)

/**
 *  p7-include-cert option description:
 */
/** Descriptive text for the p7-include-cert option */
#define P7_INCLUDE_CERT_DESC      (certtool_opt_strs+4048)
/** Upper-cased name for the p7-include-cert option */
#define P7_INCLUDE_CERT_NAME      (certtool_opt_strs+4108)
/** disablement name for the p7-include-cert option */
#define NOT_P7_INCLUDE_CERT_name  (certtool_opt_strs+4124)
/** disablement prefix for the p7-include-cert option */
#define NOT_P7_INCLUDE_CERT_PFX   (certtool_opt_strs+4143)
/** Name string for the p7-include-cert option */
#define P7_INCLUDE_CERT_name      (NOT_P7_INCLUDE_CERT_name + 3)
/** Compiled in flag settings for the p7-include-cert option */
#define P7_INCLUDE_CERT_FLAGS     (OPTST_INITENABLED)

/**
 *  p7-time option description:
 */
/** Descriptive text for the p7-time option */
#define P7_TIME_DESC      (certtool_opt_strs+4146)
/** Upper-cased name for the p7-time option */
#define P7_TIME_NAME      (certtool_opt_strs+4196)
/** disablement name for the p7-time option */
#define NOT_P7_TIME_name  (certtool_opt_strs+4204)
/** disablement prefix for the p7-time option */
#define NOT_P7_TIME_PFX   (certtool_opt_strs+4143)
/** Name string for the p7-time option */
#define P7_TIME_name      (NOT_P7_TIME_name + 3)
/** Compiled in flag settings for the p7-time option */
#define P7_TIME_FLAGS     (OPTST_DISABLED)

/**
 *  p7-show-data option description:
 */
/** Descriptive text for the p7-show-data option */
#define P7_SHOW_DATA_DESC      (certtool_opt_strs+4215)
/** Upper-cased name for the p7-show-data option */
#define P7_SHOW_DATA_NAME      (certtool_opt_strs+4268)
/** disablement name for the p7-show-data option */
#define NOT_P7_SHOW_DATA_name  (certtool_opt_strs+4281)
/** disablement prefix for the p7-show-data option */
#define NOT_P7_SHOW_DATA_PFX   (certtool_opt_strs+4143)
/** Name string for the p7-show-data option */
#define P7_SHOW_DATA_name      (NOT_P7_SHOW_DATA_name + 3)
/** Compiled in flag settings for the p7-show-data option */
#define P7_SHOW_DATA_FLAGS     (OPTST_DISABLED)

/**
 *  p7-info option description:
 */
/** Descriptive text for the p7-info option */
#define P7_INFO_DESC      (certtool_opt_strs+4297)
/** Upper-cased name for the p7-info option */
#define P7_INFO_NAME      (certtool_opt_strs+4338)
/** Name string for the p7-info option */
#define P7_INFO_name      (certtool_opt_strs+4346)
/** Compiled in flag settings for the p7-info option */
#define P7_INFO_FLAGS     (OPTST_DISABLED)

/**
 *  p7-verify option description:
 */
/** Descriptive text for the p7-verify option */
#define P7_VERIFY_DESC      (certtool_opt_strs+4354)
/** Upper-cased name for the p7-verify option */
#define P7_VERIFY_NAME      (certtool_opt_strs+4392)
/** Name string for the p7-verify option */
#define P7_VERIFY_name      (certtool_opt_strs+4402)
/** Compiled in flag settings for the p7-verify option */
#define P7_VERIFY_FLAGS     (OPTST_DISABLED)

/**
 *  smime-to-p7 option description:
 */
/** Descriptive text for the smime-to-p7 option */
#define SMIME_TO_P7_DESC      (certtool_opt_strs+4412)
/** Upper-cased name for the smime-to-p7 option */
#define SMIME_TO_P7_NAME      (certtool_opt_strs+4448)
/** Name string for the smime-to-p7 option */
#define SMIME_TO_P7_name      (certtool_opt_strs+4460)
/** Compiled in flag settings for the smime-to-p7 option */
#define SMIME_TO_P7_FLAGS     (OPTST_DISABLED)

/**
 *  other_options option description:
 */
/** other_options option separation text */
#define OTHER_OPTIONS_DESC      (certtool_opt_strs+4472)
#define OTHER_OPTIONS_FLAGS     (OPTST_DOCUMENT | OPTST_NO_INIT)

/**
 *  generate-dh-params option description:
 */
/** Descriptive text for the generate-dh-params option */
#define GENERATE_DH_PARAMS_DESC      (certtool_opt_strs+4487)
/** Upper-cased name for the generate-dh-params option */
#define GENERATE_DH_PARAMS_NAME      (certtool_opt_strs+4551)
/** Name string for the generate-dh-params option */
#define GENERATE_DH_PARAMS_name      (certtool_opt_strs+4570)
/** Compiled in flag settings for the generate-dh-params option */
#define GENERATE_DH_PARAMS_FLAGS     (OPTST_DISABLED | OPTST_DEPRECATED)

/**
 *  get-dh-params option description:
 */
/** Descriptive text for the get-dh-params option */
#define GET_DH_PARAMS_DESC      (certtool_opt_strs+4589)
/** Upper-cased name for the get-dh-params option */
#define GET_DH_PARAMS_NAME      (certtool_opt_strs+4649)
/** Name string for the get-dh-params option */
#define GET_DH_PARAMS_name      (certtool_opt_strs+4663)
/** Compiled in flag settings for the get-dh-params option */
#define GET_DH_PARAMS_FLAGS     (OPTST_DISABLED)

/**
 *  dh-info option description:
 */
/** Descriptive text for the dh-info option */
#define DH_INFO_DESC      (certtool_opt_strs+4677)
/** Upper-cased name for the dh-info option */
#define DH_INFO_NAME      (certtool_opt_strs+4737)
/** Name string for the dh-info option */
#define DH_INFO_name      (certtool_opt_strs+4745)
/** Compiled in flag settings for the dh-info option */
#define DH_INFO_FLAGS     (OPTST_DISABLED)

/**
 *  load-privkey option description:
 */
/** Descriptive text for the load-privkey option */
#define LOAD_PRIVKEY_DESC      (certtool_opt_strs+4753)
/** Upper-cased name for the load-privkey option */
#define LOAD_PRIVKEY_NAME      (certtool_opt_strs+4778)
/** Name string for the load-privkey option */
#define LOAD_PRIVKEY_name      (certtool_opt_strs+4791)
/** Compiled in flag settings for the load-privkey option */
#define LOAD_PRIVKEY_FLAGS     (OPTST_DISABLED \
        | OPTST_SET_ARGTYPE(OPARG_TYPE_STRING))

/**
 *  load-pubkey option description:
 */
/** Descriptive text for the load-pubkey option */
#define LOAD_PUBKEY_DESC      (certtool_opt_strs+4804)
/** Upper-cased name for the load-pubkey option */
#define LOAD_PUBKEY_NAME      (certtool_opt_strs+4828)
/** Name string for the load-pubkey option */
#define LOAD_PUBKEY_name      (certtool_opt_strs+4840)
/** Compiled in flag settings for the load-pubkey option */
#define LOAD_PUBKEY_FLAGS     (OPTST_DISABLED \
        | OPTST_SET_ARGTYPE(OPARG_TYPE_STRING))

/**
 *  load-request option description:
 */
/** Descriptive text for the load-request option */
#define LOAD_REQUEST_DESC      (certtool_opt_strs+4852)
/** Upper-cased name for the load-request option */
#define LOAD_REQUEST_NAME      (certtool_opt_strs+4885)
/** Name string for the load-request option */
#define LOAD_REQUEST_name      (certtool_opt_strs+4898)
/** Compiled in flag settings for the load-request option */
#define LOAD_REQUEST_FLAGS     (OPTST_DISABLED \
        | OPTST_SET_ARGTYPE(OPARG_TYPE_STRING))

/**
 *  load-certificate option description:
 */
/** Descriptive text for the load-certificate option */
#define LOAD_CERTIFICATE_DESC      (certtool_opt_strs+4911)
/** Upper-cased name for the load-certificate option */
#define LOAD_CERTIFICATE_NAME      (certtool_opt_strs+4936)
/** Name string for the load-certificate option */
#define LOAD_CERTIFICATE_name      (certtool_opt_strs+4953)
/** Compiled in flag settings for the load-certificate option */
#define LOAD_CERTIFICATE_FLAGS     (OPTST_DISABLED \
        | OPTST_SET_ARGTYPE(OPARG_TYPE_STRING))

/**
 *  load-ca-privkey option description:
 */
/** Descriptive text for the load-ca-privkey option */
#define LOAD_CA_PRIVKEY_DESC      (certtool_opt_strs+4970)
/** Upper-cased name for the load-ca-privkey option */
#define LOAD_CA_PRIVKEY_NAME      (certtool_opt_strs+5021)
/** Name string for the load-ca-privkey option */
#define LOAD_CA_PRIVKEY_name      (certtool_opt_strs+5037)
/** Compiled in flag settings for the load-ca-privkey option */
#define LOAD_CA_PRIVKEY_FLAGS     (OPTST_DISABLED \
        | OPTST_SET_ARGTYPE(OPARG_TYPE_STRING))

/**
 *  load-ca-certificate option description:
 */
/** Descriptive text for the load-ca-certificate option */
#define LOAD_CA_CERTIFICATE_DESC      (certtool_opt_strs+5053)
/** Upper-cased name for the load-ca-certificate option */
#define LOAD_CA_CERTIFICATE_NAME      (certtool_opt_strs+5104)
/** Name string for the load-ca-certificate option */
#define LOAD_CA_CERTIFICATE_name      (certtool_opt_strs+5124)
/** Compiled in flag settings for the load-ca-certificate option */
#define LOAD_CA_CERTIFICATE_FLAGS     (OPTST_DISABLED \
        | OPTST_SET_ARGTYPE(OPARG_TYPE_STRING))

/**
 *  load-crl option description:
 */
/** Descriptive text for the load-crl option */
#define LOAD_CRL_DESC      (certtool_opt_strs+5144)
/** Upper-cased name for the load-crl option */
#define LOAD_CRL_NAME      (certtool_opt_strs+5167)
/** Name string for the load-crl option */
#define LOAD_CRL_name      (certtool_opt_strs+5176)
/** Compiled in flag settings for the load-crl option */
#define LOAD_CRL_FLAGS     (OPTST_DISABLED \
        | OPTST_SET_ARGTYPE(OPARG_TYPE_STRING))

/**
 *  load-data option description:
 */
/** Descriptive text for the load-data option */
#define LOAD_DATA_DESC      (certtool_opt_strs+5185)
/** Upper-cased name for the load-data option */
#define LOAD_DATA_NAME      (certtool_opt_strs+5206)
/** Name string for the load-data option */
#define LOAD_DATA_name      (certtool_opt_strs+5216)
/** Compiled in flag settings for the load-data option */
#define LOAD_DATA_FLAGS     (OPTST_DISABLED \
        | OPTST_SET_ARGTYPE(OPARG_TYPE_STRING))

/**
 *  password option description:
 */
/** Descriptive text for the password option */
#define PASSWORD_DESC      (certtool_opt_strs+5226)
/** Upper-cased name for the password option */
#define PASSWORD_NAME      (certtool_opt_strs+5242)
/** Name string for the password option */
#define PASSWORD_name      (certtool_opt_strs+5251)
/** Compiled in flag settings for the password option */
#define PASSWORD_FLAGS     (OPTST_DISABLED \
        | OPTST_SET_ARGTYPE(OPARG_TYPE_STRING))

/**
 *  null-password option description:
 */
/** Descriptive text for the null-password option */
#define NULL_PASSWORD_DESC      (certtool_opt_strs+5260)
/** Upper-cased name for the null-password option */
#define NULL_PASSWORD_NAME      (certtool_opt_strs+5284)
/** Name string for the null-password option */
#define NULL_PASSWORD_name      (certtool_opt_strs+5298)
/** Compiled in flag settings for the null-password option */
#define NULL_PASSWORD_FLAGS     (OPTST_DISABLED)

/**
 *  empty-password option description:
 */
/** Descriptive text for the empty-password option */
#define EMPTY_PASSWORD_DESC      (certtool_opt_strs+5312)
/** Upper-cased name for the empty-password option */
#define EMPTY_PASSWORD_NAME      (certtool_opt_strs+5338)
/** Name string for the empty-password option */
#define EMPTY_PASSWORD_name      (certtool_opt_strs+5353)
/** Compiled in flag settings for the empty-password option */
#define EMPTY_PASSWORD_FLAGS     (OPTST_DISABLED)

/**
 *  hex-numbers option description:
 */
/** Descriptive text for the hex-numbers option */
#define HEX_NUMBERS_DESC      (certtool_opt_strs+5368)
/** Upper-cased name for the hex-numbers option */
#define HEX_NUMBERS_NAME      (certtool_opt_strs+5414)
/** Name string for the hex-numbers option */
#define HEX_NUMBERS_name      (certtool_opt_strs+5426)
/** Compiled in flag settings for the hex-numbers option */
#define HEX_NUMBERS_FLAGS     (OPTST_DISABLED)

/**
 *  cprint option description:
 */
/** Descriptive text for the cprint option */
#define CPRINT_DESC      (certtool_opt_strs+5438)
/** Upper-cased name for the cprint option */
#define CPRINT_NAME      (certtool_opt_strs+5507)
/** Name string for the cprint option */
#define CPRINT_name      (certtool_opt_strs+5514)
/** Compiled in flag settings for the cprint option */
#define CPRINT_FLAGS     (OPTST_DISABLED)

/**
 *  rsa option description:
 */
/** Descriptive text for the rsa option */
#define RSA_DESC      (certtool_opt_strs+5521)
/** Upper-cased name for the rsa option */
#define RSA_NAME      (certtool_opt_strs+5551)
/** Name string for the rsa option */
#define RSA_name      (certtool_opt_strs+5555)
/** Compiled in flag settings for the rsa option */
#define RSA_FLAGS     (OPTST_DISABLED | OPTST_DEPRECATED)

/**
 *  dsa option description:
 */
/** Descriptive text for the dsa option */
#define DSA_DESC      (certtool_opt_strs+5559)
/** Upper-cased name for the dsa option */
#define DSA_NAME      (certtool_opt_strs+5589)
/** Name string for the dsa option */
#define DSA_name      (certtool_opt_strs+5593)
/** Compiled in flag settings for the dsa option */
#define DSA_FLAGS     (OPTST_DISABLED | OPTST_DEPRECATED)

/**
 *  ecc option description:
 */
/** Descriptive text for the ecc option */
#define ECC_DESC      (certtool_opt_strs+5597)
/** Upper-cased name for the ecc option */
#define ECC_NAME      (certtool_opt_strs+5635)
/** Name string for the ecc option */
#define ECC_name      (certtool_opt_strs+5639)
/** Compiled in flag settings for the ecc option */
#define ECC_FLAGS     (OPTST_DISABLED | OPTST_DEPRECATED)

/**
 *  ecdsa option description:
 */
/** Descriptive text for the ecdsa option */
#define ECDSA_DESC    (certtool_opt_strs+5643)
#define ECDSA_NAME    NULL
/** Unmodified name string for the ecdsa option */
#define ECDSA_name    (certtool_opt_strs+5686)
/** Compiled in flag settings for the ecdsa option */
#define ECDSA_FLAGS     (ECC_FLAGS | OPTST_ALIAS | OPTST_DEPRECATED)

/**
 *  key-type option description:
 */
/** Descriptive text for the key-type option */
#define KEY_TYPE_DESC      (certtool_opt_strs+5692)
/** Upper-cased name for the key-type option */
#define KEY_TYPE_NAME      (certtool_opt_strs+5738)
/** Name string for the key-type option */
#define KEY_TYPE_name      (certtool_opt_strs+5747)
/** Compiled in flag settings for the key-type option */
#define KEY_TYPE_FLAGS     (OPTST_DISABLED \
        | OPTST_SET_ARGTYPE(OPARG_TYPE_STRING))

/**
 *  hash option description:
 */
/** Descriptive text for the hash option */
#define HASH_DESC      (certtool_opt_strs+5756)
/** Upper-cased name for the hash option */
#define HASH_NAME      (certtool_opt_strs+5790)
/** Name string for the hash option */
#define HASH_name      (certtool_opt_strs+5795)
/** Compiled in flag settings for the hash option */
#define HASH_FLAGS     (OPTST_DISABLED \
        | OPTST_SET_ARGTYPE(OPARG_TYPE_STRING))

/**
 *  salt-size option description:
 */
/** Descriptive text for the salt-size option */
#define SALT_SIZE_DESC      (certtool_opt_strs+5800)
/** Upper-cased name for the salt-size option */
#define SALT_SIZE_NAME      (certtool_opt_strs+5842)
/** Name string for the salt-size option */
#define SALT_SIZE_name      (certtool_opt_strs+5852)
/** Compiled in flag settings for the salt-size option */
#define SALT_SIZE_FLAGS     (OPTST_DISABLED \
        | OPTST_SET_ARGTYPE(OPARG_TYPE_NUMERIC))

/**
 *  inder option description:
 */
/** Descriptive text for the inder option */
#define INDER_DESC      (certtool_opt_strs+5862)
/** Upper-cased name for the inder option */
#define INDER_NAME      (certtool_opt_strs+5933)
/** disablement name for the inder option */
#define NOT_INDER_name  (certtool_opt_strs+5939)
/** disablement prefix for the inder option */
#define NOT_INDER_PFX   (certtool_opt_strs+4143)
/** Name string for the inder option */
#define INDER_name      (NOT_INDER_name + 3)
/** Compiled in flag settings for the inder option */
#define INDER_FLAGS     (OPTST_DISABLED)

/**
 *  inraw option description:
 */
/** Descriptive text for the inraw option */
#define INRAW_DESC    (certtool_opt_strs+5948)
#define INRAW_NAME    NULL
/** Unmodified name string for the inraw option */
#define INRAW_name    (certtool_opt_strs+5980)
/** Compiled in flag settings for the inraw option */
#define INRAW_FLAGS     (INDER_FLAGS | OPTST_ALIAS)

/**
 *  outder option description:
 */
/** Descriptive text for the outder option */
#define OUTDER_DESC      (certtool_opt_strs+5986)
/** Upper-cased name for the outder option */
#define OUTDER_NAME      (certtool_opt_strs+6058)
/** disablement name for the outder option */
#define NOT_OUTDER_name  (certtool_opt_strs+6065)
/** disablement prefix for the outder option */
#define NOT_OUTDER_PFX   (certtool_opt_strs+4143)
/** Name string for the outder option */
#define OUTDER_name      (NOT_OUTDER_name + 3)
/** Compiled in flag settings for the outder option */
#define OUTDER_FLAGS     (OPTST_DISABLED)

/**
 *  outraw option description:
 */
/** Descriptive text for the outraw option */
#define OUTRAW_DESC    (certtool_opt_strs+6075)
#define OUTRAW_NAME    NULL
/** Unmodified name string for the outraw option */
#define OUTRAW_name    (certtool_opt_strs+6108)
/** Compiled in flag settings for the outraw option */
#define OUTRAW_FLAGS     (OUTDER_FLAGS | OPTST_ALIAS)

/**
 *  disable-quick-random option description:
 */
/** Descriptive text for the disable-quick-random option */
#define DISABLE_QUICK_RANDOM_DESC      (certtool_opt_strs+6115)
/** Upper-cased name for the disable-quick-random option */
#define DISABLE_QUICK_RANDOM_NAME      (certtool_opt_strs+6138)
/** Name string for the disable-quick-random option */
#define DISABLE_QUICK_RANDOM_name      (certtool_opt_strs+6159)
/** Compiled in flag settings for the disable-quick-random option */
#define DISABLE_QUICK_RANDOM_FLAGS     (OPTST_DISABLED | OPTST_DEPRECATED)

/**
 *  template option description:
 */
/** Descriptive text for the template option */
#define TEMPLATE_DESC      (certtool_opt_strs+6180)
/** Upper-cased name for the template option */
#define TEMPLATE_NAME      (certtool_opt_strs+6231)
/** Name string for the template option */
#define TEMPLATE_name      (certtool_opt_strs+6240)
/** Compiled in flag settings for the template option */
#define TEMPLATE_FLAGS     (OPTST_DISABLED \
        | OPTST_SET_ARGTYPE(OPARG_TYPE_STRING))

/**
 *  stdout-info option description:
 */
/** Descriptive text for the stdout-info option */
#define STDOUT_INFO_DESC      (certtool_opt_strs+6249)
/** Upper-cased name for the stdout-info option */
#define STDOUT_INFO_NAME      (certtool_opt_strs+6295)
/** Name string for the stdout-info option */
#define STDOUT_INFO_name      (certtool_opt_strs+6307)
/** Compiled in flag settings for the stdout-info option */
#define STDOUT_INFO_FLAGS     (OPTST_DISABLED)

/**
 *  ask-pass option description:
 */
/** Descriptive text for the ask-pass option */
#define ASK_PASS_DESC      (certtool_opt_strs+6319)
/** Upper-cased name for the ask-pass option */
#define ASK_PASS_NAME      (certtool_opt_strs+6380)
/** Name string for the ask-pass option */
#define ASK_PASS_name      (certtool_opt_strs+6389)
/** Compiled in flag settings for the ask-pass option */
#define ASK_PASS_FLAGS     (OPTST_DISABLED)

/**
 *  pkcs-cipher option description:
 */
/** Descriptive text for the pkcs-cipher option */
#define PKCS_CIPHER_DESC      (certtool_opt_strs+6398)
/** Upper-cased name for the pkcs-cipher option */
#define PKCS_CIPHER_NAME      (certtool_opt_strs+6443)
/** Name string for the pkcs-cipher option */
#define PKCS_CIPHER_name      (certtool_opt_strs+6455)
/** Compiled in flag settings for the pkcs-cipher option */
#define PKCS_CIPHER_FLAGS     (OPTST_DISABLED \
        | OPTST_SET_ARGTYPE(OPARG_TYPE_STRING))

/**
 *  provider option description:
 */
/** Descriptive text for the provider option */
#define PROVIDER_DESC      (certtool_opt_strs+6467)
/** Upper-cased name for the provider option */
#define PROVIDER_NAME      (certtool_opt_strs+6505)
/** Name string for the provider option */
#define PROVIDER_name      (certtool_opt_strs+6514)
/** Compiled in flag settings for the provider option */
#define PROVIDER_FLAGS     (OPTST_DISABLED \
        | OPTST_SET_ARGTYPE(OPARG_TYPE_STRING))

/*
 *  Help/More_Help/Version option descriptions:
 */
#define HELP_DESC       (certtool_opt_strs+6523)
#define HELP_name       (certtool_opt_strs+6567)
#ifdef HAVE_WORKING_FORK
#define MORE_HELP_DESC  (certtool_opt_strs+6572)
#define MORE_HELP_name  (certtool_opt_strs+6617)
#define MORE_HELP_FLAGS (OPTST_IMM | OPTST_NO_INIT)
#else
#define MORE_HELP_DESC  HELP_DESC
#define MORE_HELP_name  HELP_name
#define MORE_HELP_FLAGS (OPTST_OMITTED | OPTST_NO_INIT)
#endif
#ifdef NO_OPTIONAL_OPT_ARGS
#  define VER_FLAGS     (OPTST_IMM | OPTST_NO_INIT)
#else
#  define VER_FLAGS     (OPTST_SET_ARGTYPE(OPARG_TYPE_STRING) | \
                         OPTST_ARG_OPTIONAL | OPTST_IMM | OPTST_NO_INIT)
#endif
#define VER_DESC        (certtool_opt_strs+6627)
#define VER_name        (certtool_opt_strs+6663)
/**
 *  Declare option callback procedures
 */
extern tOptProc
    optionBooleanVal,   optionNestedVal,    optionNumericVal,
    optionPagedUsage,   optionPrintVersion, optionResetOpt,
    optionStackArg,     optionTimeDate,     optionTimeVal,
    optionUnstackArg,   optionVendorOption;
static tOptProc
    doOptDebug,  doOptEcdsa,  doOptInfile, doOptInraw,  doOptOutraw,
    doUsageOpt;
#define VER_PROC        optionPrintVersion

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/**
 *  Define the certtool Option Descriptions.
 * This is an array of OPTION_CT entries, one for each
 * option that the certtool program responds to.
 */
static tOptDesc optDesc[OPTION_CT] = {
  {  /* entry idx, value */ 0, VALUE_OPT_DEBUG,
     /* equiv idx, value */ 0, VALUE_OPT_DEBUG,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ DEBUG_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --debug */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ doOptDebug,
     /* desc, NAME, name */ DEBUG_DESC, DEBUG_NAME, DEBUG_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 1, VALUE_OPT_VERBOSE,
     /* equiv idx, value */ 1, VALUE_OPT_VERBOSE,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, NOLIMIT, 0,
     /* opt state flags  */ VERBOSE_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --verbose */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ VERBOSE_DESC, VERBOSE_NAME, VERBOSE_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 2, VALUE_OPT_INFILE,
     /* equiv idx, value */ 2, VALUE_OPT_INFILE,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ INFILE_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --infile */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ doOptInfile,
     /* desc, NAME, name */ INFILE_DESC, INFILE_NAME, INFILE_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 3, VALUE_OPT_OUTFILE,
     /* equiv idx, value */ 3, VALUE_OPT_OUTFILE,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ OUTFILE_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --outfile */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ OUTFILE_DESC, OUTFILE_NAME, OUTFILE_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 0, 0,
     /* equiv idx, value */ 0, 0,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 0, 0,
     /* opt state flags  */ CERT_OPTIONS_FLAGS, 0,
     /* last opt argumnt */ { NULL },
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ CERT_OPTIONS_DESC, NULL, NULL,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 5, VALUE_OPT_CERTIFICATE_INFO,
     /* equiv idx, value */ 5, VALUE_OPT_CERTIFICATE_INFO,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ CERTIFICATE_INFO_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --certificate-info */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ CERTIFICATE_INFO_DESC, CERTIFICATE_INFO_NAME, CERTIFICATE_INFO_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 6, VALUE_OPT_PUBKEY_INFO,
     /* equiv idx, value */ 6, VALUE_OPT_PUBKEY_INFO,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ PUBKEY_INFO_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --pubkey-info */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ PUBKEY_INFO_DESC, PUBKEY_INFO_NAME, PUBKEY_INFO_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 7, VALUE_OPT_GENERATE_SELF_SIGNED,
     /* equiv idx, value */ 7, VALUE_OPT_GENERATE_SELF_SIGNED,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ GENERATE_SELF_SIGNED_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --generate-self-signed */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ GENERATE_SELF_SIGNED_DESC, GENERATE_SELF_SIGNED_NAME, GENERATE_SELF_SIGNED_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 8, VALUE_OPT_GENERATE_CERTIFICATE,
     /* equiv idx, value */ 8, VALUE_OPT_GENERATE_CERTIFICATE,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ GENERATE_CERTIFICATE_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --generate-certificate */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ GENERATE_CERTIFICATE_DESC, GENERATE_CERTIFICATE_NAME, GENERATE_CERTIFICATE_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 9, VALUE_OPT_GENERATE_PROXY,
     /* equiv idx, value */ 9, VALUE_OPT_GENERATE_PROXY,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ GENERATE_PROXY_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --generate-proxy */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ GENERATE_PROXY_DESC, GENERATE_PROXY_NAME, GENERATE_PROXY_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 10, VALUE_OPT_UPDATE_CERTIFICATE,
     /* equiv idx, value */ 10, VALUE_OPT_UPDATE_CERTIFICATE,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ UPDATE_CERTIFICATE_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --update-certificate */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ UPDATE_CERTIFICATE_DESC, UPDATE_CERTIFICATE_NAME, UPDATE_CERTIFICATE_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 11, VALUE_OPT_FINGERPRINT,
     /* equiv idx, value */ 11, VALUE_OPT_FINGERPRINT,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ FINGERPRINT_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --fingerprint */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ FINGERPRINT_DESC, FINGERPRINT_NAME, FINGERPRINT_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 12, VALUE_OPT_KEY_ID,
     /* equiv idx, value */ 12, VALUE_OPT_KEY_ID,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ KEY_ID_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --key-id */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ KEY_ID_DESC, KEY_ID_NAME, KEY_ID_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 13, VALUE_OPT_CERTIFICATE_PUBKEY,
     /* equiv idx, value */ 13, VALUE_OPT_CERTIFICATE_PUBKEY,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ CERTIFICATE_PUBKEY_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --certificate-pubkey */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ CERTIFICATE_PUBKEY_DESC, CERTIFICATE_PUBKEY_NAME, CERTIFICATE_PUBKEY_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 14, VALUE_OPT_V1,
     /* equiv idx, value */ 14, VALUE_OPT_V1,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ V1_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --v1 */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ V1_DESC, V1_NAME, V1_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 15, VALUE_OPT_SIGN_PARAMS,
     /* equiv idx, value */ 15, VALUE_OPT_SIGN_PARAMS,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ SIGN_PARAMS_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --sign-params */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ SIGN_PARAMS_DESC, SIGN_PARAMS_NAME, SIGN_PARAMS_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 0, 0,
     /* equiv idx, value */ 0, 0,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 0, 0,
     /* opt state flags  */ CRQ_OPTIONS_FLAGS, 0,
     /* last opt argumnt */ { NULL },
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ CRQ_OPTIONS_DESC, NULL, NULL,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 17, VALUE_OPT_CRQ_INFO,
     /* equiv idx, value */ 17, VALUE_OPT_CRQ_INFO,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ CRQ_INFO_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --crq-info */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ CRQ_INFO_DESC, CRQ_INFO_NAME, CRQ_INFO_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 18, VALUE_OPT_GENERATE_REQUEST,
     /* equiv idx, value */ 18, VALUE_OPT_GENERATE_REQUEST,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ GENERATE_REQUEST_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --generate-request */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, aGenerate_RequestCantList,
     /* option proc      */ NULL,
     /* desc, NAME, name */ GENERATE_REQUEST_DESC, GENERATE_REQUEST_NAME, GENERATE_REQUEST_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 19, VALUE_OPT_NO_CRQ_EXTENSIONS,
     /* equiv idx, value */ 19, VALUE_OPT_NO_CRQ_EXTENSIONS,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ NO_CRQ_EXTENSIONS_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --no-crq-extensions */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ NO_CRQ_EXTENSIONS_DESC, NO_CRQ_EXTENSIONS_NAME, NO_CRQ_EXTENSIONS_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 0, 0,
     /* equiv idx, value */ 0, 0,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 0, 0,
     /* opt state flags  */ PKCS12_OPTIONS_FLAGS, 0,
     /* last opt argumnt */ { NULL },
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ PKCS12_OPTIONS_DESC, NULL, NULL,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 21, VALUE_OPT_P12_INFO,
     /* equiv idx, value */ 21, VALUE_OPT_P12_INFO,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ P12_INFO_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --p12-info */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ P12_INFO_DESC, P12_INFO_NAME, P12_INFO_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 22, VALUE_OPT_P12_NAME,
     /* equiv idx, value */ 22, VALUE_OPT_P12_NAME,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ P12_NAME_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --p12-name */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ P12_NAME_DESC, P12_NAME_NAME, P12_NAME_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 23, VALUE_OPT_TO_P12,
     /* equiv idx, value */ 23, VALUE_OPT_TO_P12,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ TO_P12_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --to-p12 */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ TO_P12_DESC, TO_P12_NAME, TO_P12_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 0, 0,
     /* equiv idx, value */ 0, 0,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 0, 0,
     /* opt state flags  */ KEY_OPTIONS_FLAGS, 0,
     /* last opt argumnt */ { NULL },
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ KEY_OPTIONS_DESC, NULL, NULL,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 25, VALUE_OPT_KEY_INFO,
     /* equiv idx, value */ 25, VALUE_OPT_KEY_INFO,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ KEY_INFO_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --key-info */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ KEY_INFO_DESC, KEY_INFO_NAME, KEY_INFO_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 26, VALUE_OPT_P8_INFO,
     /* equiv idx, value */ 26, VALUE_OPT_P8_INFO,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ P8_INFO_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --p8-info */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ P8_INFO_DESC, P8_INFO_NAME, P8_INFO_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 27, VALUE_OPT_TO_RSA,
     /* equiv idx, value */ 27, VALUE_OPT_TO_RSA,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ TO_RSA_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --to-rsa */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ TO_RSA_DESC, TO_RSA_NAME, TO_RSA_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 28, VALUE_OPT_GENERATE_PRIVKEY,
     /* equiv idx, value */ 28, VALUE_OPT_GENERATE_PRIVKEY,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ GENERATE_PRIVKEY_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --generate-privkey */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ GENERATE_PRIVKEY_DESC, GENERATE_PRIVKEY_NAME, GENERATE_PRIVKEY_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 29, VALUE_OPT_BITS,
     /* equiv idx, value */ 29, VALUE_OPT_BITS,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ BITS_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --bits */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ optionNumericVal,
     /* desc, NAME, name */ BITS_DESC, BITS_NAME, BITS_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 30, VALUE_OPT_CURVE,
     /* equiv idx, value */ 30, VALUE_OPT_CURVE,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ CURVE_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --curve */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ CURVE_DESC, CURVE_NAME, CURVE_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 31, VALUE_OPT_SEC_PARAM,
     /* equiv idx, value */ 31, VALUE_OPT_SEC_PARAM,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ SEC_PARAM_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --sec-param */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ SEC_PARAM_DESC, SEC_PARAM_NAME, SEC_PARAM_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 32, VALUE_OPT_TO_P8,
     /* equiv idx, value */ 32, VALUE_OPT_TO_P8,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ TO_P8_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --to-p8 */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ TO_P8_DESC, TO_P8_NAME, TO_P8_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 33, VALUE_OPT_PKCS8,
     /* equiv idx, value */ 33, VALUE_OPT_PKCS8,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ PKCS8_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --pkcs8 */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ PKCS8_DESC, PKCS8_NAME, PKCS8_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 34, VALUE_OPT_PROVABLE,
     /* equiv idx, value */ 34, VALUE_OPT_PROVABLE,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ PROVABLE_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --provable */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ PROVABLE_DESC, PROVABLE_NAME, PROVABLE_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 35, VALUE_OPT_VERIFY_PROVABLE_PRIVKEY,
     /* equiv idx, value */ 35, VALUE_OPT_VERIFY_PROVABLE_PRIVKEY,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ VERIFY_PROVABLE_PRIVKEY_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --verify-provable-privkey */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ VERIFY_PROVABLE_PRIVKEY_DESC, VERIFY_PROVABLE_PRIVKEY_NAME, VERIFY_PROVABLE_PRIVKEY_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 36, VALUE_OPT_SEED,
     /* equiv idx, value */ 36, VALUE_OPT_SEED,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ SEED_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --seed */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ SEED_DESC, SEED_NAME, SEED_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 0, 0,
     /* equiv idx, value */ 0, 0,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 0, 0,
     /* opt state flags  */ CRL_OPTIONS_FLAGS, 0,
     /* last opt argumnt */ { NULL },
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ CRL_OPTIONS_DESC, NULL, NULL,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 38, VALUE_OPT_CRL_INFO,
     /* equiv idx, value */ 38, VALUE_OPT_CRL_INFO,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ CRL_INFO_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --crl-info */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ CRL_INFO_DESC, CRL_INFO_NAME, CRL_INFO_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 39, VALUE_OPT_GENERATE_CRL,
     /* equiv idx, value */ 39, VALUE_OPT_GENERATE_CRL,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ GENERATE_CRL_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --generate-crl */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ GENERATE_CRL_DESC, GENERATE_CRL_NAME, GENERATE_CRL_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 40, VALUE_OPT_VERIFY_CRL,
     /* equiv idx, value */ 40, VALUE_OPT_VERIFY_CRL,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ VERIFY_CRL_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --verify-crl */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ aVerify_CrlMustList, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ VERIFY_CRL_DESC, VERIFY_CRL_NAME, VERIFY_CRL_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 0, 0,
     /* equiv idx, value */ 0, 0,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 0, 0,
     /* opt state flags  */ CERT_VERIFY_OPTIONS_FLAGS, 0,
     /* last opt argumnt */ { NULL },
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ CERT_VERIFY_OPTIONS_DESC, NULL, NULL,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 42, VALUE_OPT_VERIFY_CHAIN,
     /* equiv idx, value */ 42, VALUE_OPT_VERIFY_CHAIN,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ VERIFY_CHAIN_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --verify-chain */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ VERIFY_CHAIN_DESC, VERIFY_CHAIN_NAME, VERIFY_CHAIN_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 43, VALUE_OPT_VERIFY,
     /* equiv idx, value */ 43, VALUE_OPT_VERIFY,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ VERIFY_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --verify */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ VERIFY_DESC, VERIFY_NAME, VERIFY_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 44, VALUE_OPT_VERIFY_HOSTNAME,
     /* equiv idx, value */ 44, VALUE_OPT_VERIFY_HOSTNAME,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ VERIFY_HOSTNAME_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --verify-hostname */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ VERIFY_HOSTNAME_DESC, VERIFY_HOSTNAME_NAME, VERIFY_HOSTNAME_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 45, VALUE_OPT_VERIFY_EMAIL,
     /* equiv idx, value */ 45, VALUE_OPT_VERIFY_EMAIL,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ VERIFY_EMAIL_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --verify-email */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, aVerify_EmailCantList,
     /* option proc      */ NULL,
     /* desc, NAME, name */ VERIFY_EMAIL_DESC, VERIFY_EMAIL_NAME, VERIFY_EMAIL_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 46, VALUE_OPT_VERIFY_PURPOSE,
     /* equiv idx, value */ 46, VALUE_OPT_VERIFY_PURPOSE,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ VERIFY_PURPOSE_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --verify-purpose */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ VERIFY_PURPOSE_DESC, VERIFY_PURPOSE_NAME, VERIFY_PURPOSE_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 47, VALUE_OPT_VERIFY_ALLOW_BROKEN,
     /* equiv idx, value */ 47, VALUE_OPT_VERIFY_ALLOW_BROKEN,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ VERIFY_ALLOW_BROKEN_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --verify-allow-broken */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ VERIFY_ALLOW_BROKEN_DESC, VERIFY_ALLOW_BROKEN_NAME, VERIFY_ALLOW_BROKEN_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 0, 0,
     /* equiv idx, value */ 0, 0,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 0, 0,
     /* opt state flags  */ PKCS7_OPTIONS_FLAGS, 0,
     /* last opt argumnt */ { NULL },
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ PKCS7_OPTIONS_DESC, NULL, NULL,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 49, VALUE_OPT_P7_GENERATE,
     /* equiv idx, value */ 49, VALUE_OPT_P7_GENERATE,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ P7_GENERATE_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --p7-generate */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ P7_GENERATE_DESC, P7_GENERATE_NAME, P7_GENERATE_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 50, VALUE_OPT_P7_SIGN,
     /* equiv idx, value */ 50, VALUE_OPT_P7_SIGN,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ P7_SIGN_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --p7-sign */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ P7_SIGN_DESC, P7_SIGN_NAME, P7_SIGN_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 51, VALUE_OPT_P7_DETACHED_SIGN,
     /* equiv idx, value */ 51, VALUE_OPT_P7_DETACHED_SIGN,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ P7_DETACHED_SIGN_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --p7-detached-sign */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ P7_DETACHED_SIGN_DESC, P7_DETACHED_SIGN_NAME, P7_DETACHED_SIGN_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 52, VALUE_OPT_P7_INCLUDE_CERT,
     /* equiv idx, value */ 52, VALUE_OPT_P7_INCLUDE_CERT,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ P7_INCLUDE_CERT_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --p7-include-cert */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ P7_INCLUDE_CERT_DESC, P7_INCLUDE_CERT_NAME, P7_INCLUDE_CERT_name,
     /* disablement strs */ NOT_P7_INCLUDE_CERT_name, NOT_P7_INCLUDE_CERT_PFX },

  {  /* entry idx, value */ 53, VALUE_OPT_P7_TIME,
     /* equiv idx, value */ 53, VALUE_OPT_P7_TIME,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ P7_TIME_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --p7-time */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ P7_TIME_DESC, P7_TIME_NAME, P7_TIME_name,
     /* disablement strs */ NOT_P7_TIME_name, NOT_P7_TIME_PFX },

  {  /* entry idx, value */ 54, VALUE_OPT_P7_SHOW_DATA,
     /* equiv idx, value */ 54, VALUE_OPT_P7_SHOW_DATA,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ P7_SHOW_DATA_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --p7-show-data */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ P7_SHOW_DATA_DESC, P7_SHOW_DATA_NAME, P7_SHOW_DATA_name,
     /* disablement strs */ NOT_P7_SHOW_DATA_name, NOT_P7_SHOW_DATA_PFX },

  {  /* entry idx, value */ 55, VALUE_OPT_P7_INFO,
     /* equiv idx, value */ 55, VALUE_OPT_P7_INFO,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ P7_INFO_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --p7-info */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ P7_INFO_DESC, P7_INFO_NAME, P7_INFO_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 56, VALUE_OPT_P7_VERIFY,
     /* equiv idx, value */ 56, VALUE_OPT_P7_VERIFY,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ P7_VERIFY_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --p7-verify */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ P7_VERIFY_DESC, P7_VERIFY_NAME, P7_VERIFY_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 57, VALUE_OPT_SMIME_TO_P7,
     /* equiv idx, value */ 57, VALUE_OPT_SMIME_TO_P7,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ SMIME_TO_P7_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --smime-to-p7 */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ SMIME_TO_P7_DESC, SMIME_TO_P7_NAME, SMIME_TO_P7_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 0, 0,
     /* equiv idx, value */ 0, 0,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 0, 0,
     /* opt state flags  */ OTHER_OPTIONS_FLAGS, 0,
     /* last opt argumnt */ { NULL },
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ OTHER_OPTIONS_DESC, NULL, NULL,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 59, VALUE_OPT_GENERATE_DH_PARAMS,
     /* equiv idx, value */ 59, VALUE_OPT_GENERATE_DH_PARAMS,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ GENERATE_DH_PARAMS_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --generate-dh-params */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ GENERATE_DH_PARAMS_DESC, GENERATE_DH_PARAMS_NAME, GENERATE_DH_PARAMS_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 60, VALUE_OPT_GET_DH_PARAMS,
     /* equiv idx, value */ 60, VALUE_OPT_GET_DH_PARAMS,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ GET_DH_PARAMS_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --get-dh-params */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ GET_DH_PARAMS_DESC, GET_DH_PARAMS_NAME, GET_DH_PARAMS_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 61, VALUE_OPT_DH_INFO,
     /* equiv idx, value */ 61, VALUE_OPT_DH_INFO,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ DH_INFO_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --dh-info */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ DH_INFO_DESC, DH_INFO_NAME, DH_INFO_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 62, VALUE_OPT_LOAD_PRIVKEY,
     /* equiv idx, value */ 62, VALUE_OPT_LOAD_PRIVKEY,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ LOAD_PRIVKEY_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --load-privkey */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ LOAD_PRIVKEY_DESC, LOAD_PRIVKEY_NAME, LOAD_PRIVKEY_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 63, VALUE_OPT_LOAD_PUBKEY,
     /* equiv idx, value */ 63, VALUE_OPT_LOAD_PUBKEY,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ LOAD_PUBKEY_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --load-pubkey */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ LOAD_PUBKEY_DESC, LOAD_PUBKEY_NAME, LOAD_PUBKEY_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 64, VALUE_OPT_LOAD_REQUEST,
     /* equiv idx, value */ 64, VALUE_OPT_LOAD_REQUEST,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ LOAD_REQUEST_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --load-request */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ LOAD_REQUEST_DESC, LOAD_REQUEST_NAME, LOAD_REQUEST_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 65, VALUE_OPT_LOAD_CERTIFICATE,
     /* equiv idx, value */ 65, VALUE_OPT_LOAD_CERTIFICATE,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ LOAD_CERTIFICATE_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --load-certificate */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ LOAD_CERTIFICATE_DESC, LOAD_CERTIFICATE_NAME, LOAD_CERTIFICATE_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 66, VALUE_OPT_LOAD_CA_PRIVKEY,
     /* equiv idx, value */ 66, VALUE_OPT_LOAD_CA_PRIVKEY,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ LOAD_CA_PRIVKEY_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --load-ca-privkey */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ LOAD_CA_PRIVKEY_DESC, LOAD_CA_PRIVKEY_NAME, LOAD_CA_PRIVKEY_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 67, VALUE_OPT_LOAD_CA_CERTIFICATE,
     /* equiv idx, value */ 67, VALUE_OPT_LOAD_CA_CERTIFICATE,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ LOAD_CA_CERTIFICATE_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --load-ca-certificate */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ LOAD_CA_CERTIFICATE_DESC, LOAD_CA_CERTIFICATE_NAME, LOAD_CA_CERTIFICATE_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 68, VALUE_OPT_LOAD_CRL,
     /* equiv idx, value */ 68, VALUE_OPT_LOAD_CRL,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ LOAD_CRL_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --load-crl */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ LOAD_CRL_DESC, LOAD_CRL_NAME, LOAD_CRL_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 69, VALUE_OPT_LOAD_DATA,
     /* equiv idx, value */ 69, VALUE_OPT_LOAD_DATA,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ LOAD_DATA_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --load-data */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ LOAD_DATA_DESC, LOAD_DATA_NAME, LOAD_DATA_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 70, VALUE_OPT_PASSWORD,
     /* equiv idx, value */ 70, VALUE_OPT_PASSWORD,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ PASSWORD_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --password */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ PASSWORD_DESC, PASSWORD_NAME, PASSWORD_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 71, VALUE_OPT_NULL_PASSWORD,
     /* equiv idx, value */ 71, VALUE_OPT_NULL_PASSWORD,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ NULL_PASSWORD_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --null-password */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ NULL_PASSWORD_DESC, NULL_PASSWORD_NAME, NULL_PASSWORD_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 72, VALUE_OPT_EMPTY_PASSWORD,
     /* equiv idx, value */ 72, VALUE_OPT_EMPTY_PASSWORD,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ EMPTY_PASSWORD_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --empty-password */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ EMPTY_PASSWORD_DESC, EMPTY_PASSWORD_NAME, EMPTY_PASSWORD_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 73, VALUE_OPT_HEX_NUMBERS,
     /* equiv idx, value */ 73, VALUE_OPT_HEX_NUMBERS,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ HEX_NUMBERS_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --hex-numbers */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ HEX_NUMBERS_DESC, HEX_NUMBERS_NAME, HEX_NUMBERS_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 74, VALUE_OPT_CPRINT,
     /* equiv idx, value */ 74, VALUE_OPT_CPRINT,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ CPRINT_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --cprint */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ CPRINT_DESC, CPRINT_NAME, CPRINT_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 75, VALUE_OPT_RSA,
     /* equiv idx, value */ 75, VALUE_OPT_RSA,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ RSA_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --rsa */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ RSA_DESC, RSA_NAME, RSA_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 76, VALUE_OPT_DSA,
     /* equiv idx, value */ 76, VALUE_OPT_DSA,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ DSA_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --dsa */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ DSA_DESC, DSA_NAME, DSA_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 77, VALUE_OPT_ECC,
     /* equiv idx, value */ 77, VALUE_OPT_ECC,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ ECC_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --ecc */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ ECC_DESC, ECC_NAME, ECC_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 78, VALUE_OPT_ECDSA,
     /* equiv idx, value */ 78, VALUE_OPT_ECDSA,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ ECDSA_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --ecdsa */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ doOptEcdsa,
     /* desc, NAME, name */ ECDSA_DESC, ECDSA_NAME, ECDSA_name,
     /* disablement strs */ 0, 0 },

  {  /* entry idx, value */ 79, VALUE_OPT_KEY_TYPE,
     /* equiv idx, value */ 79, VALUE_OPT_KEY_TYPE,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ KEY_TYPE_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --key-type */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ KEY_TYPE_DESC, KEY_TYPE_NAME, KEY_TYPE_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 80, VALUE_OPT_HASH,
     /* equiv idx, value */ 80, VALUE_OPT_HASH,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ HASH_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --hash */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ HASH_DESC, HASH_NAME, HASH_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 81, VALUE_OPT_SALT_SIZE,
     /* equiv idx, value */ 81, VALUE_OPT_SALT_SIZE,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ SALT_SIZE_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --salt-size */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ optionNumericVal,
     /* desc, NAME, name */ SALT_SIZE_DESC, SALT_SIZE_NAME, SALT_SIZE_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 82, VALUE_OPT_INDER,
     /* equiv idx, value */ 82, VALUE_OPT_INDER,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ INDER_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --inder */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ INDER_DESC, INDER_NAME, INDER_name,
     /* disablement strs */ NOT_INDER_name, NOT_INDER_PFX },

  {  /* entry idx, value */ 83, VALUE_OPT_INRAW,
     /* equiv idx, value */ 83, VALUE_OPT_INRAW,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ INRAW_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --inraw */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ doOptInraw,
     /* desc, NAME, name */ INRAW_DESC, INRAW_NAME, INRAW_name,
     /* disablement strs */ 0, 0 },

  {  /* entry idx, value */ 84, VALUE_OPT_OUTDER,
     /* equiv idx, value */ 84, VALUE_OPT_OUTDER,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ OUTDER_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --outder */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ OUTDER_DESC, OUTDER_NAME, OUTDER_name,
     /* disablement strs */ NOT_OUTDER_name, NOT_OUTDER_PFX },

  {  /* entry idx, value */ 85, VALUE_OPT_OUTRAW,
     /* equiv idx, value */ 85, VALUE_OPT_OUTRAW,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ OUTRAW_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --outraw */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ doOptOutraw,
     /* desc, NAME, name */ OUTRAW_DESC, OUTRAW_NAME, OUTRAW_name,
     /* disablement strs */ 0, 0 },

  {  /* entry idx, value */ 86, VALUE_OPT_DISABLE_QUICK_RANDOM,
     /* equiv idx, value */ 86, VALUE_OPT_DISABLE_QUICK_RANDOM,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ DISABLE_QUICK_RANDOM_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --disable-quick-random */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ DISABLE_QUICK_RANDOM_DESC, DISABLE_QUICK_RANDOM_NAME, DISABLE_QUICK_RANDOM_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 87, VALUE_OPT_TEMPLATE,
     /* equiv idx, value */ 87, VALUE_OPT_TEMPLATE,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ TEMPLATE_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --template */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ TEMPLATE_DESC, TEMPLATE_NAME, TEMPLATE_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 88, VALUE_OPT_STDOUT_INFO,
     /* equiv idx, value */ 88, VALUE_OPT_STDOUT_INFO,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ STDOUT_INFO_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --stdout-info */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ STDOUT_INFO_DESC, STDOUT_INFO_NAME, STDOUT_INFO_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 89, VALUE_OPT_ASK_PASS,
     /* equiv idx, value */ 89, VALUE_OPT_ASK_PASS,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ ASK_PASS_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --ask-pass */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ ASK_PASS_DESC, ASK_PASS_NAME, ASK_PASS_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 90, VALUE_OPT_PKCS_CIPHER,
     /* equiv idx, value */ 90, VALUE_OPT_PKCS_CIPHER,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ PKCS_CIPHER_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --pkcs-cipher */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ PKCS_CIPHER_DESC, PKCS_CIPHER_NAME, PKCS_CIPHER_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 91, VALUE_OPT_PROVIDER,
     /* equiv idx, value */ 91, VALUE_OPT_PROVIDER,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ PROVIDER_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --provider */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ PROVIDER_DESC, PROVIDER_NAME, PROVIDER_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ INDEX_OPT_VERSION, VALUE_OPT_VERSION,
     /* equiv idx value  */ NO_EQUIVALENT, VALUE_OPT_VERSION,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ VER_FLAGS, AOUSE_VERSION,
     /* last opt argumnt */ { NULL },
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ VER_PROC,
     /* desc, NAME, name */ VER_DESC, NULL, VER_name,
     /* disablement strs */ NULL, NULL },



  {  /* entry idx, value */ INDEX_OPT_HELP, VALUE_OPT_HELP,
     /* equiv idx value  */ NO_EQUIVALENT, VALUE_OPT_HELP,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ OPTST_IMM | OPTST_NO_INIT, AOUSE_HELP,
     /* last opt argumnt */ { NULL },
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ doUsageOpt,
     /* desc, NAME, name */ HELP_DESC, NULL, HELP_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ INDEX_OPT_MORE_HELP, VALUE_OPT_MORE_HELP,
     /* equiv idx value  */ NO_EQUIVALENT, VALUE_OPT_MORE_HELP,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ MORE_HELP_FLAGS, AOUSE_MORE_HELP,
     /* last opt argumnt */ { NULL },
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL,  NULL,
     /* option proc      */ optionPagedUsage,
     /* desc, NAME, name */ MORE_HELP_DESC, NULL, MORE_HELP_name,
     /* disablement strs */ NULL, NULL }
};


/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/** Reference to the upper cased version of certtool. */
#define zPROGNAME       (certtool_opt_strs+6671)
/** Reference to the title line for certtool usage. */
#define zUsageTitle     (certtool_opt_strs+6680)
/** There is no certtool configuration file. */
#define zRcName         NULL
/** There are no directories to search for certtool config files. */
#define apzHomeList     NULL
/** The certtool program bug email address. */
#define zBugsAddr       (certtool_opt_strs+6773)
/** Clarification/explanation of what certtool does. */
#define zExplain        (certtool_opt_strs+6793)
/** Extra detail explaining what certtool does. */
#define zDetail         (certtool_opt_strs+6795)
/** The full version string for certtool. */
#define zFullVersion    (certtool_opt_strs+7156)
/* extracted from optcode.tlib near line 364 */

#if defined(ENABLE_NLS)
# define OPTPROC_BASE OPTPROC_TRANSLATE | OPTPROC_NXLAT_OPT
  static tOptionXlateProc translate_option_strings;
#else
# define OPTPROC_BASE OPTPROC_NONE
# define translate_option_strings NULL
#endif /* ENABLE_NLS */

#define certtool_full_usage (NULL)
#define certtool_short_usage (certtool_opt_strs+7175)

#endif /* not defined __doxygen__ */

/*
 *  Create the static procedure(s) declared above.
 */
/**
 * The callout function that invokes the optionUsage function.
 *
 * @param[in] opts the AutoOpts option description structure
 * @param[in] od   the descriptor for the "help" (usage) option.
 * @noreturn
 */
static void
doUsageOpt(tOptions * opts, tOptDesc * od)
{
    int ex_code;
    ex_code = CERTTOOL_EXIT_SUCCESS;
    optionUsage(&certtoolOptions, ex_code);
    /* NOTREACHED */
    exit(CERTTOOL_EXIT_FAILURE);
    (void)opts;
    (void)od;
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/**
 * Code to handle the debug option.
 * Specifies the debug level.
 * @param[in] pOptions the certtool options data structure
 * @param[in,out] pOptDesc the option descriptor for this option.
 */
static void
doOptDebug(tOptions* pOptions, tOptDesc* pOptDesc)
{
    static struct {long rmin, rmax;} const rng[1] = {
        { 0 ,  9999 } };
    int  ix;

    if (pOptions <= OPTPROC_EMIT_LIMIT)
        goto emit_ranges;
    optionNumericVal(pOptions, pOptDesc);

    for (ix = 0; ix < 1; ix++) {
        if (pOptDesc->optArg.argInt < rng[ix].rmin)
            continue;  /* ranges need not be ordered. */
        if (pOptDesc->optArg.argInt == rng[ix].rmin)
            return;
        if (rng[ix].rmax == LONG_MIN)
            continue;
        if (pOptDesc->optArg.argInt <= rng[ix].rmax)
            return;
    }

    option_usage_fp = stderr;

 emit_ranges:
optionShowRange(pOptions, pOptDesc, VOIDP(rng), 1);
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/**
 * Code to handle the infile option.
 *
 * @param[in] pOptions the certtool options data structure
 * @param[in,out] pOptDesc the option descriptor for this option.
 */
static void
doOptInfile(tOptions* pOptions, tOptDesc* pOptDesc)
{
    static teOptFileType const  type =
        FTYPE_MODE_MUST_EXIST + FTYPE_MODE_NO_OPEN;
    static tuFileMode           mode;
#ifndef O_CLOEXEC
#  define O_CLOEXEC 0
#endif
    mode.file_flags = O_CLOEXEC;

    /*
     * This function handles special invalid values for "pOptions"
     */
    optionFileCheck(pOptions, pOptDesc, type, mode);
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/**
 * Code to handle the ecdsa option.
 *
 * @param[in] pOptions the certtool options data structure
 * @param[in,out] pOptDesc the option descriptor for this option.
 */
static void
doOptEcdsa(tOptions* pOptions, tOptDesc* pOptDesc)
{
    int res = optionAlias(pOptions, pOptDesc, INDEX_OPT_ECC);
    if ((res != 0) && ((pOptions->fOptSet & OPTPROC_ERRSTOP) != 0))
        USAGE(CERTTOOL_EXIT_USAGE_ERROR);

}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/**
 * Code to handle the inraw option.
 *
 * @param[in] pOptions the certtool options data structure
 * @param[in,out] pOptDesc the option descriptor for this option.
 */
static void
doOptInraw(tOptions* pOptions, tOptDesc* pOptDesc)
{
    int res = optionAlias(pOptions, pOptDesc, INDEX_OPT_INDER);
    if ((res != 0) && ((pOptions->fOptSet & OPTPROC_ERRSTOP) != 0))
        USAGE(CERTTOOL_EXIT_USAGE_ERROR);

}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/**
 * Code to handle the outraw option.
 *
 * @param[in] pOptions the certtool options data structure
 * @param[in,out] pOptDesc the option descriptor for this option.
 */
static void
doOptOutraw(tOptions* pOptions, tOptDesc* pOptDesc)
{
    int res = optionAlias(pOptions, pOptDesc, INDEX_OPT_OUTDER);
    if ((res != 0) && ((pOptions->fOptSet & OPTPROC_ERRSTOP) != 0))
        USAGE(CERTTOOL_EXIT_USAGE_ERROR);

}
/* extracted from optmain.tlib near line 1250 */

/**
 * The directory containing the data associated with certtool.
 */
#ifndef  PKGDATADIR
# define PKGDATADIR ""
#endif

/**
 * Information about the person or institution that packaged certtool
 * for the current distribution.
 */
#ifndef  WITH_PACKAGER
# define certtool_packager_info NULL
#else
/** Packager information for certtool. */
static char const certtool_packager_info[] =
    "Packaged by " WITH_PACKAGER

# ifdef WITH_PACKAGER_VERSION
        " ("WITH_PACKAGER_VERSION")"
# endif

# ifdef WITH_PACKAGER_BUG_REPORTS
    "\nReport certtool bugs to " WITH_PACKAGER_BUG_REPORTS
# endif
    "\n";
#endif
#ifndef __doxygen__

#endif /* __doxygen__ */
/**
 * The option definitions for certtool.  The one structure that
 * binds them all.
 */
tOptions certtoolOptions = {
    OPTIONS_STRUCT_VERSION,
    0, NULL,                    /* original argc + argv    */
    ( OPTPROC_BASE
    + OPTPROC_ERRSTOP
    + OPTPROC_SHORTOPT
    + OPTPROC_LONGOPT
    + OPTPROC_NO_REQ_OPT
    + OPTPROC_NEGATIONS
    + OPTPROC_NO_ARGS
    + OPTPROC_GNUUSAGE
    + OPTPROC_MISUSE ),
    0, NULL,                    /* current option index, current option */
    NULL,         NULL,         zPROGNAME,
    zRcName,      zCopyright,   zLicenseDescrip,
    zFullVersion, apzHomeList,  zUsageTitle,
    zExplain,     zDetail,      optDesc,
    zBugsAddr,                  /* address to send bugs to */
    NULL, NULL,                 /* extensions/saved state  */
    optionUsage, /* usage procedure */
    translate_option_strings,   /* translation procedure */
    /*
     *  Indexes to special options
     */
    { INDEX_OPT_MORE_HELP, /* more-help option index */
      NO_EQUIVALENT, /* save option index */
      NO_EQUIVALENT, /* '-#' option index */
      NO_EQUIVALENT /* index of default opt */
    },
    95 /* full option count */, 92 /* user option count */,
    certtool_full_usage, certtool_short_usage,
    NULL, NULL,
    PKGDATADIR, certtool_packager_info
};

#if ENABLE_NLS
/**
 * This code is designed to translate translatable option text for the
 * certtool program.  These translations happen upon entry
 * to optionProcess().
 */
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#ifdef HAVE_DCGETTEXT
# include <gettext.h>
#endif
#include <autoopts/usage-txt.h>

static char * AO_gettext(char const * pz);
static void   coerce_it(void ** s);

/**
 * AutoGen specific wrapper function for gettext.  It relies on the macro _()
 * to convert from English to the target language, then strdup-duplicates the
 * result string.  It tries the "libopts" domain first, then whatever has been
 * set via the \a textdomain(3) call.
 *
 * @param[in] pz the input text used as a lookup key.
 * @returns the translated text (if there is one),
 *   or the original text (if not).
 */
static char *
AO_gettext(char const * pz)
{
    char * res;
    if (pz == NULL)
        return NULL;
#ifdef HAVE_DCGETTEXT
    /*
     * While processing the option_xlateable_txt data, try to use the
     * "libopts" domain.  Once we switch to the option descriptor data,
     * do *not* use that domain.
     */
    if (option_xlateable_txt.field_ct != 0) {
        res = dgettext("libopts", pz);
        if (res == pz)
            res = (char *)VOIDP(_(pz));
    } else
        res = (char *)VOIDP(_(pz));
#else
    res = (char *)VOIDP(_(pz));
#endif
    if (res == pz)
        return res;
    res = strdup(res);
    if (res == NULL) {
        fputs(_("No memory for duping translated strings\n"), stderr);
        exit(CERTTOOL_EXIT_FAILURE);
    }
    return res;
}

/**
 * All the pointers we use are marked "* const", but they are stored in
 * writable memory.  Coerce the mutability and set the pointer.
 */
static void coerce_it(void ** s) { *s = AO_gettext(*s);
}

/**
 * Translate all the translatable strings in the certtoolOptions
 * structure defined above.  This is done only once.
 */
static void
translate_option_strings(void)
{
    tOptions * const opts = &certtoolOptions;

    /*
     *  Guard against re-translation.  It won't work.  The strings will have
     *  been changed by the first pass through this code.  One shot only.
     */
    if (option_xlateable_txt.field_ct != 0) {
        /*
         *  Do the translations.  The first pointer follows the field count
         *  field.  The field count field is the size of a pointer.
         */
        char ** ppz = (char**)VOIDP(&(option_xlateable_txt));
        int     ix  = option_xlateable_txt.field_ct;

        do {
            ppz++; /* skip over field_ct */
            *ppz = AO_gettext(*ppz);
        } while (--ix > 0);
        /* prevent re-translation and disable "libopts" domain lookup */
        option_xlateable_txt.field_ct = 0;

        coerce_it(VOIDP(&(opts->pzCopyright)));
        coerce_it(VOIDP(&(opts->pzCopyNotice)));
        coerce_it(VOIDP(&(opts->pzFullVersion)));
        coerce_it(VOIDP(&(opts->pzUsageTitle)));
        coerce_it(VOIDP(&(opts->pzExplain)));
        coerce_it(VOIDP(&(opts->pzDetail)));
        {
            tOptDesc * od = opts->pOptDesc;
            for (ix = opts->optCt; ix > 0; ix--, od++)
                coerce_it(VOIDP(&(od->pzText)));
        }
    }
}
#endif /* ENABLE_NLS */

#ifdef DO_NOT_COMPILE_THIS_CODE_IT_IS_FOR_GETTEXT
/** I18N function strictly for xgettext.  Do not compile. */
static void bogus_function(void) {
  /* TRANSLATORS:

     The following dummy function was crated solely so that xgettext can
     extract the correct strings.  These strings are actually referenced
     by a field name in the certtoolOptions structure noted in the
     comments below.  The literal text is defined in certtool_opt_strs.
   
     NOTE: the strings below are segmented with respect to the source string
     certtool_opt_strs.  The strings above are handed off for translation
     at run time a paragraph at a time.  Consequently, they are presented here
     for translation a paragraph at a time.
   
     ALSO: often the description for an option will reference another option
     by name.  These are set off with apostrophe quotes (I hope).  Do not
     translate option names.
   */
  /* referenced via certtoolOptions.pzCopyright */
  puts(_("certtool @VERSION@\n\
Copyright (C) 2000-@YEAR@ Free Software Foundation, and others, all rights reserved.\n\
This is free software. It is licensed for use, modification and\n\
redistribution under the terms of the GNU General Public License,\n\
version 3 or later <http://gnu.org/licenses/gpl.html>\n"));

  /* referenced via certtoolOptions.pzCopyNotice */
  puts(_("certtool is free software: you can redistribute it and/or modify it under\n\
the terms of the GNU General Public License as published by the Free\n\
Software Foundation, either version 3 of the License, or (at your option)\n\
any later version.\n\n"));
  puts(_("certtool is distributed in the hope that it will be useful, but WITHOUT ANY\n\
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS\n\
FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more\n\
details.\n\n"));
  puts(_("You should have received a copy of the GNU General Public License along\n\
with this program.  If not, see <http://www.gnu.org/licenses/>.\n"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("Enable debugging"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("More verbose output"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("Input file"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("Output file"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("Certificate related options:"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("Print information on the given certificate"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("Print information on a public key"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("Generate a self-signed certificate"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("Generate a signed certificate"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("Generates a proxy certificate"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("Update a signed certificate"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("Print the fingerprint of the given certificate"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("Print the key ID of the given certificate"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("Print certificate's public key (deprecated)"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("Generate an X.509 version 1 certificate (with no extensions)"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("Sign a certificate with a specific signature algorithm"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("Certificate request related options:"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("Print information on the given certificate request"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("Generate a PKCS #10 certificate request"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("Do not use extensions in certificate requests"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("PKCS#12 file related options:"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("Print information on a PKCS #12 structure"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("The PKCS #12 friendly name to use"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("Generate a PKCS #12 structure"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("Private key related options:"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("Print information on a private key"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("Print information on a PKCS #8 structure"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("Convert an RSA-PSS key to raw RSA format"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("Generate a private key"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("Specify the number of bits for key generation"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("Specify the curve used for EC key generation"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("Specify the security level [low, legacy, medium, high, ultra]"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("Convert a given key to a PKCS #8 structure"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("Use PKCS #8 format for private keys"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("Generate a private key or parameters from a seed using a provable method"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("Verify a private key generated from a seed using a provable method"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("When generating a private key use the given hex-encoded seed"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("CRL related options:"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("Print information on the given CRL structure"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("Generate a CRL"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("Verify a Certificate Revocation List using a trusted list"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("Certificate verification related options:"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("Verify a PEM encoded certificate chain"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("Verify a PEM encoded certificate (chain) against a trusted set"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("Specify a hostname to be used for certificate chain verification"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("Specify a email to be used for certificate chain verification"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("Specify a purpose OID to be used for certificate chain verification"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("Allow broken algorithms, such as MD5 for verification"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("PKCS#7 structure options:"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("Generate a PKCS #7 structure"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("Signs using a PKCS #7 structure"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("Signs using a detached PKCS #7 structure"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("The signer's certificate will be included in the cert list."));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("Will include a timestamp in the PKCS #7 structure"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("Will show the embedded data in the PKCS #7 structure"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("Print information on a PKCS #7 structure"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("Verify the provided PKCS #7 structure"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("Convert S/MIME to PKCS #7 structure"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("Other options:"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("Generate PKCS #3 encoded Diffie-Hellman parameters (deprecated)"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("List the included PKCS #3 encoded Diffie-Hellman parameters"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("Print information PKCS #3 encoded Diffie-Hellman parameters"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("Loads a private key file"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("Loads a public key file"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("Loads a certificate request file"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("Loads a certificate file"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("Loads the certificate authority's private key file"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("Loads the certificate authority's certificate file"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("Loads the provided CRL"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("Loads auxiliary data"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("Password to use"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("Enforce a NULL password"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("Enforce an empty password"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("Print big number in an easier format to parse"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("In certain operations it prints the information in C-friendly format"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("Generate RSA key (deprecated)"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("Generate DSA key (deprecated)"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("Generate ECC (ECDSA) key (deprecated)"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("an alias for the 'ecc' option (deprecated)"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("Specify the key type to use on key generation"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("Hash algorithm to use for signing"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("Specify the RSA-PSS key default salt size"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("Use DER format for input certificates, private keys, and DH parameters"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("an alias for the 'inder' option"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("Use DER format for output certificates, private keys, and DH parameters"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("an alias for the 'outder' option"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("No effect (deprecated)"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("Template file to use for non-interactive operation"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("Print information to stdout instead of stderr"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("Enable interaction for entering password when in batch mode."));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("Cipher to use for PKCS #8 and #12 operations"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("Specify the PKCS #11 provider library"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("display extended usage information and exit"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("extended usage information passed thru pager"));

  /* referenced via certtoolOptions.pOptDesc->pzText */
  puts(_("output version information and exit"));

  /* referenced via certtoolOptions.pzUsageTitle */
  puts(_("certtool - GnuTLS certificate tool\n\
Usage:  %s [ -<flag> [<val>] | --<name>[{=| }<val>] ]...\n"));

  /* referenced via certtoolOptions.pzExplain */
  puts(_("\n"));

  /* referenced via certtoolOptions.pzDetail */
  puts(_("Tool to parse and generate X.509 certificates, requests and private keys.\n\
It can be used interactively or non interactively by specifying the\n\
template command line option.\n\n"));
  puts(_("The tool accepts files or supported URIs via the --infile option.  In case\n\
PIN is required for URI access you can provide it using the environment\n\
variables GNUTLS_PIN and GNUTLS_SO_PIN.\n"));

  /* referenced via certtoolOptions.pzFullVersion */
  puts(_("certtool @VERSION@"));

  /* referenced via certtoolOptions.pzFullUsage */
  puts(_("<<<NOT-FOUND>>>"));

  /* referenced via certtoolOptions.pzShortUsage */
  puts(_("certtool [options]\n\
certtool --help for usage instructions.\n"));
  /* LIBOPTS-MESSAGES: */
#line 67 "../autoopts.c"
  puts(_("allocation of %d bytes failed\n"));
#line 93 "../autoopts.c"
  puts(_("allocation of %d bytes failed\n"));
#line 53 "../init.c"
  puts(_("AutoOpts function called without option descriptor\n"));
#line 86 "../init.c"
  puts(_("\tThis exceeds the compiled library version:  "));
#line 84 "../init.c"
  puts(_("Automated Options Processing Error!\n"
       "\t%s called AutoOpts function with structure version %d:%d:%d.\n"));
#line 80 "../autoopts.c"
  puts(_("realloc of %d bytes at 0x%p failed\n"));
#line 88 "../init.c"
  puts(_("\tThis is less than the minimum library version:  "));
#line 121 "../version.c"
  puts(_("Automated Options version %s\n"
       "\tCopyright (C) 1999-2014 by Bruce Korb - all rights reserved\n"));
#line 87 "../makeshell.c"
  puts(_("(AutoOpts bug):  %s.\n"));
#line 90 "../reset.c"
  puts(_("optionResetOpt() called, but reset-option not configured"));
#line 295 "../usage.c"
  puts(_("could not locate the 'help' option"));
#line 336 "../autoopts.c"
  puts(_("optionProcess() was called with invalid data"));
#line 751 "../usage.c"
  puts(_("invalid argument type specified"));
#line 598 "../find.c"
  puts(_("defaulted to option with optional arg"));
#line 76 "../alias.c"
  puts(_("aliasing option is out of range."));
#line 235 "../enum.c"
  puts(_("%s error:  the keyword '%s' is ambiguous for %s\n"));
#line 108 "../find.c"
  puts(_("  The following options match:\n"));
#line 293 "../find.c"
  puts(_("%s: ambiguous option name: %s (matches %d options)\n"));
#line 161 "../check.c"
  puts(_("%s: Command line arguments required\n"));
#line 43 "../alias.c"
  puts(_("%d %s%s options allowed\n"));
#line 94 "../makeshell.c"
  puts(_("%s error %d (%s) calling %s for '%s'\n"));
#line 306 "../makeshell.c"
  puts(_("interprocess pipe"));
#line 168 "../version.c"
  puts(_("error: version option argument '%c' invalid.  Use:\n"
       "\t'v' - version only\n"
       "\t'c' - version and copyright\n"
       "\t'n' - version and full copyright notice\n"));
#line 58 "../check.c"
  puts(_("%s error:  the '%s' and '%s' options conflict\n"));
#line 217 "../find.c"
  puts(_("%s: The '%s' option has been disabled."));
#line 430 "../find.c"
  puts(_("%s: The '%s' option has been disabled."));
#line 38 "../alias.c"
  puts(_("-equivalence"));
#line 469 "../find.c"
  puts(_("%s: illegal option -- %c\n"));
#line 110 "../reset.c"
  puts(_("%s: illegal option -- %c\n"));
#line 271 "../find.c"
  puts(_("%s: illegal option -- %s\n"));
#line 755 "../find.c"
  puts(_("%s: illegal option -- %s\n"));
#line 118 "../reset.c"
  puts(_("%s: illegal option -- %s\n"));
#line 335 "../find.c"
  puts(_("%s: unknown vendor extension option -- %s\n"));
#line 160 "../enum.c"
  puts(_("  or an integer from %d through %d\n"));
#line 170 "../enum.c"
  puts(_("  or an integer from %d through %d\n"));
#line 750 "../usage.c"
  puts(_("%s error:  invalid option descriptor for %s\n"));
#line 1084 "../usage.c"
  puts(_("%s error:  invalid option descriptor for %s\n"));
#line 385 "../find.c"
  puts(_("%s: invalid option name: %s\n"));
#line 527 "../find.c"
  puts(_("%s: The '%s' option requires an argument.\n"));
#line 156 "../autoopts.c"
  puts(_("(AutoOpts bug):  Equivalenced option '%s' was equivalenced to both\n"
       "\t'%s' and '%s'."));
#line 94 "../check.c"
  puts(_("%s error:  The %s option is required\n"));
#line 632 "../find.c"
  puts(_("%s: The '%s' option cannot have an argument.\n"));
#line 151 "../check.c"
  puts(_("%s: Command line arguments are not allowed.\n"));
#line 536 "../save.c"
  puts(_("error %d (%s) creating %s\n"));
#line 235 "../enum.c"
  puts(_("%s error:  '%s' does not match any %s keywords.\n"));
#line 93 "../reset.c"
  puts(_("%s error: The '%s' option requires an argument.\n"));
#line 186 "../save.c"
  puts(_("error %d (%s) stat-ing %s\n"));
#line 239 "../save.c"
  puts(_("error %d (%s) stat-ing %s\n"));
#line 143 "../restore.c"
  puts(_("%s error: no saved option state\n"));
#line 231 "../autoopts.c"
  puts(_("'%s' is not a command line option.\n"));
#line 113 "../time.c"
  puts(_("%s error:  '%s' is not a recognizable date/time.\n"));
#line 131 "../save.c"
  puts(_("'%s' not defined\n"));
#line 50 "../time.c"
  puts(_("%s error:  '%s' is not a recognizable time duration.\n"));
#line 92 "../check.c"
  puts(_("%s error:  The %s option must appear %d times.\n"));
#line 165 "../numeric.c"
  puts(_("%s error:  '%s' is not a recognizable number.\n"));
#line 201 "../enum.c"
  puts(_("%s error:  %s exceeds %s keyword count\n"));
#line 333 "../usage.c"
  puts(_("Try '%s %s' for more information.\n"));
#line 45 "../alias.c"
  puts(_("one %s%s option allowed\n"));
#line 208 "../makeshell.c"
  puts(_("standard output"));
#line 943 "../makeshell.c"
  puts(_("standard output"));
#line 277 "../usage.c"
  puts(_("standard output"));
#line 418 "../usage.c"
  puts(_("standard output"));
#line 628 "../usage.c"
  puts(_("standard output"));
#line 175 "../version.c"
  puts(_("standard output"));
#line 277 "../usage.c"
  puts(_("standard error"));
#line 418 "../usage.c"
  puts(_("standard error"));
#line 628 "../usage.c"
  puts(_("standard error"));
#line 175 "../version.c"
  puts(_("standard error"));
#line 208 "../makeshell.c"
  puts(_("write"));
#line 943 "../makeshell.c"
  puts(_("write"));
#line 276 "../usage.c"
  puts(_("write"));
#line 417 "../usage.c"
  puts(_("write"));
#line 627 "../usage.c"
  puts(_("write"));
#line 174 "../version.c"
  puts(_("write"));
#line 60 "../numeric.c"
  puts(_("%s error:  %s option value %ld is out of range.\n"));
#line 44 "../check.c"
  puts(_("%s error:  %s option requires the %s option\n"));
#line 130 "../save.c"
  puts(_("%s warning:  cannot save options - %s not regular file\n"));
#line 185 "../save.c"
  puts(_("%s warning:  cannot save options - %s not regular file\n"));
#line 238 "../save.c"
  puts(_("%s warning:  cannot save options - %s not regular file\n"));
#line 257 "../save.c"
  puts(_("%s warning:  cannot save options - %s not regular file\n"));
#line 535 "../save.c"
  puts(_("%s warning:  cannot save options - %s not regular file\n"));
  /* END-LIBOPTS-MESSAGES */

  /* USAGE-TEXT: */
#line 876 "../usage.c"
  puts(_("\t\t\t\t- an alternate for '%s'\n"));
#line 1151 "../usage.c"
  puts(_("Version, usage and configuration options:"));
#line 927 "../usage.c"
  puts(_("\t\t\t\t- default option for unnamed options\n"));
#line 840 "../usage.c"
  puts(_("\t\t\t\t- disabled as '--%s'\n"));
#line 1120 "../usage.c"
  puts(_(" --- %-14s %s\n"));
#line 1118 "../usage.c"
  puts(_("This option has been disabled"));
#line 867 "../usage.c"
  puts(_("\t\t\t\t- enabled by default\n"));
#line 40 "../alias.c"
  puts(_("%s error:  only "));
#line 1197 "../usage.c"
  puts(_(" - examining environment variables named %s_*\n"));
#line 168 "../file.c"
  puts(_("\t\t\t\t- file must not pre-exist\n"));
#line 172 "../file.c"
  puts(_("\t\t\t\t- file must pre-exist\n"));
#line 383 "../usage.c"
  puts(_("Options are specified by doubled hyphens and their name or by a single\n"
       "hyphen and the flag character.\n"));
#line 921 "../makeshell.c"
  puts(_("\n"
       "= = = = = = = =\n\n"
       "This incarnation of genshell will produce\n"
       "a shell script to parse the options for %s:\n\n"));
#line 167 "../enum.c"
  puts(_("  or an integer mask with any of the lower %d bits set\n"));
#line 900 "../usage.c"
  puts(_("\t\t\t\t- is a set membership option\n"));
#line 921 "../usage.c"
  puts(_("\t\t\t\t- must appear between %d and %d times\n"));
#line 385 "../usage.c"
  puts(_("Options are specified by single or double hyphens and their name.\n"));
#line 907 "../usage.c"
  puts(_("\t\t\t\t- may appear multiple times\n"));
#line 894 "../usage.c"
  puts(_("\t\t\t\t- may not be preset\n"));
#line 1312 "../usage.c"
  puts(_("   Arg Option-Name    Description\n"));
#line 1248 "../usage.c"
  puts(_("  Flg Arg Option-Name    Description\n"));
#line 1306 "../usage.c"
  puts(_("  Flg Arg Option-Name    Description\n"));
#line 1307 "../usage.c"
  puts(_(" %3s %s"));
#line 1313 "../usage.c"
  puts(_(" %3s %s"));
#line 390 "../usage.c"
  puts(_("The '-#<number>' option may omit the hash char\n"));
#line 386 "../usage.c"
  puts(_("All arguments are named options.\n"));
#line 974 "../usage.c"
  puts(_(" - reading file %s"));
#line 412 "../usage.c"
  puts(_("\n"
       "Please send bug reports to:  <%s>\n"));
#line 100 "../version.c"
  puts(_("\n"
       "Please send bug reports to:  <%s>\n"));
#line 129 "../version.c"
  puts(_("\n"
       "Please send bug reports to:  <%s>\n"));
#line 906 "../usage.c"
  puts(_("\t\t\t\t- may NOT appear - preset only\n"));
#line 947 "../usage.c"
  puts(_("\n"
       "The following option preset mechanisms are supported:\n"));
#line 1195 "../usage.c"
  puts(_("\n"
       "The following option preset mechanisms are supported:\n"));
#line 685 "../usage.c"
  puts(_("prohibits these options:\n"));
#line 680 "../usage.c"
  puts(_("prohibits the option '%s'\n"));
#line 81 "../numeric.c"
  puts(_("%s%ld to %ld"));
#line 79 "../numeric.c"
  puts(_("%sgreater than or equal to %ld"));
#line 75 "../numeric.c"
  puts(_("%s%ld exactly"));
#line 68 "../numeric.c"
  puts(_("%sit must lie in one of the ranges:\n"));
#line 68 "../numeric.c"
  puts(_("%sit must be in the range:\n"));
#line 88 "../numeric.c"
  puts(_(", or\n"));
#line 66 "../numeric.c"
  puts(_("%sis scalable with a suffix: k/K/m/M/g/G/t/T\n"));
#line 77 "../numeric.c"
  puts(_("%sless than or equal to %ld"));
#line 393 "../usage.c"
  puts(_("Operands and options may be intermixed.  They will be reordered.\n"));
#line 655 "../usage.c"
  puts(_("requires the option '%s'\n"));
#line 658 "../usage.c"
  puts(_("requires these options:\n"));
#line 1324 "../usage.c"
  puts(_("   Arg Option-Name   Req?  Description\n"));
#line 1318 "../usage.c"
  puts(_("  Flg Arg Option-Name   Req?  Description\n"));
#line 168 "../enum.c"
  puts(_("or you may use a numeric representation.  Preceding these with a '!'\n"
       "will clear the bits, specifying 'none' will clear all bits, and 'all'\n"
       "will set them all.  Multiple entries may be passed as an option\n"
       "argument list.\n"));
#line 913 "../usage.c"
  puts(_("\t\t\t\t- may appear up to %d times\n"));
#line 77 "../enum.c"
  puts(_("The valid \"%s\" option keywords are:\n"));
#line 1155 "../usage.c"
  puts(_("The next option supports vendor supported extra options:"));
#line 776 "../usage.c"
  puts(_("These additional options are:"));
  /* END-USAGE-TEXT */
}
#endif /* uncompilable code */
#ifdef  __cplusplus
}
#endif
/* certtool-args.c ends here */