summaryrefslogtreecommitdiff
path: root/src/p11tool-args.c
blob: e70b73d3ebbdec39b1f25c2a3a195180ea28e049 (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
/*   -*- buffer-read-only: t -*- vi: set ro:
 *  
 *  DO NOT EDIT THIS FILE   (p11tool-args.c)
 *  
 *  It has been AutoGen-ed  November 28, 2012 at 11:45:35 PM by AutoGen 5.16
 *  From the definitions    p11tool-args.def
 *  and the template file   options
 *
 * Generated from AutoOpts 36:4:11 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 p11tool 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 p11tool program is copyrighted and licensed
 * under the following terms:
 *
 *  Copyright (C) 2000-2012 Free Software Foundation, 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>
 *
 *  p11tool 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.
 *  
 *  p11tool 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 "p11tool-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;

/* TRANSLATORS: choose the translation for option names wisely because you
                cannot ever change your mind. */
#define zCopyright      (p11tool_opt_strs+0)
#define zLicenseDescrip (p11tool_opt_strs+278)


#ifndef NULL
#  define NULL 0
#endif

/*
 *  p11tool option static const strings
 */
static char const p11tool_opt_strs[3155] =
/*     0 */ "p11tool @VERSION@\n"
            "Copyright (C) 2000-2012 Free Software Foundation, all rights reserved.\n"
            "This is free software. It is licensed for use, modification and\n"
            "redistribution under the terms of the\n"
            "GNU General Public License, version 3 or later\n"
            "    <http://gnu.org/licenses/gpl.html>\n\0"
/*   278 */ "p11tool 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"
            "p11tool 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"
/*   881 */ "Enable debugging.\0"
/*   899 */ "DEBUG\0"
/*   905 */ "debug\0"
/*   911 */ "Output file\0"
/*   923 */ "OUTFILE\0"
/*   931 */ "outfile\0"
/*   939 */ "List all available tokens\0"
/*   965 */ "LIST_TOKENS\0"
/*   977 */ "list-tokens\0"
/*   989 */ "Export the object specified by the URL\0"
/*  1028 */ "EXPORT\0"
/*  1035 */ "export\0"
/*  1042 */ "List all available mechanisms in a token\0"
/*  1083 */ "LIST_MECHANISMS\0"
/*  1099 */ "list-mechanisms\0"
/*  1115 */ "List all available objects in a token\0"
/*  1153 */ "LIST_ALL\0"
/*  1162 */ "list-all\0"
/*  1171 */ "List all available certificates in a token\0"
/*  1214 */ "LIST_ALL_CERTS\0"
/*  1229 */ "list-all-certs\0"
/*  1244 */ "List all certificates that have an associated private key\0"
/*  1302 */ "LIST_CERTS\0"
/*  1313 */ "list-certs\0"
/*  1324 */ "List all available private keys in a token\0"
/*  1367 */ "LIST_ALL_PRIVKEYS\0"
/*  1385 */ "list-all-privkeys\0"
/*  1403 */ "List all available certificates marked as trusted\0"
/*  1453 */ "LIST_ALL_TRUSTED\0"
/*  1470 */ "list-all-trusted\0"
/*  1487 */ "Initializes a PKCS #11 token\0"
/*  1516 */ "INITIALIZE\0"
/*  1527 */ "initialize\0"
/*  1538 */ "Writes the loaded objects to a PKCS #11 token\0"
/*  1584 */ "WRITE\0"
/*  1590 */ "write\0"
/*  1596 */ "Deletes the objects matching the PKCS #11 URL\0"
/*  1642 */ "DELETE\0"
/*  1649 */ "delete\0"
/*  1656 */ "Generate an RSA private-public key pair\0"
/*  1696 */ "GENERATE_RSA\0"
/*  1709 */ "generate-rsa\0"
/*  1722 */ "GENERATE_DSA\0"
/*  1735 */ "generate-dsa\0"
/*  1748 */ "GENERATE_ECC\0"
/*  1761 */ "generate-ecc\0"
/*  1774 */ "Sets a label for the write operation\0"
/*  1811 */ "LABEL\0"
/*  1817 */ "label\0"
/*  1823 */ "Marks the object to be written as trusted\0"
/*  1865 */ "TRUSTED\0"
/*  1873 */ "no-trusted\0"
/*  1884 */ "no\0"
/*  1887 */ "Marks the object to be written as private\0"
/*  1929 */ "PRIVATE\0"
/*  1937 */ "no-private\0"
/*  1948 */ "Force login to token\0"
/*  1969 */ "LOGIN\0"
/*  1975 */ "no-login\0"
/*  1984 */ "Print detailed URLs\0"
/*  2004 */ "DETAILED_URL\0"
/*  2017 */ "no-detailed-url\0"
/*  2033 */ "Provide a hex encoded secret key\0"
/*  2066 */ "SECRET_KEY\0"
/*  2077 */ "secret-key\0"
/*  2088 */ "Private key file to use\0"
/*  2112 */ "LOAD_PRIVKEY\0"
/*  2125 */ "load-privkey\0"
/*  2138 */ "Public key file to use\0"
/*  2161 */ "LOAD_PUBKEY\0"
/*  2173 */ "load-pubkey\0"
/*  2185 */ "Certificate file to use\0"
/*  2209 */ "LOAD_CERTIFICATE\0"
/*  2226 */ "load-certificate\0"
/*  2243 */ "Use PKCS #8 format for private keys\0"
/*  2279 */ "PKCS8\0"
/*  2285 */ "pkcs8\0"
/*  2291 */ "Specify the number of bits for key generate\0"
/*  2335 */ "BITS\0"
/*  2340 */ "bits\0"
/*  2345 */ "Specify the security level\0"
/*  2372 */ "SEC_PARAM\0"
/*  2382 */ "sec-param\0"
/*  2392 */ "Use DER/RAW format for input\0"
/*  2421 */ "INDER\0"
/*  2427 */ "no-inder\0"
/*  2436 */ "This is an alias for 'inder'\0"
/*  2465 */ "inraw\0"
/*  2471 */ "Specify the PKCS #11 provider library\0"
/*  2509 */ "PROVIDER\0"
/*  2518 */ "provider\0"
/*  2527 */ "Display extended usage information and exit\0"
/*  2571 */ "help\0"
/*  2576 */ "Extended usage information passed thru pager\0"
/*  2621 */ "more-help\0"
/*  2631 */ "Output version information and exit\0"
/*  2667 */ "version\0"
/*  2675 */ "P11TOOL\0"
/*  2683 */ "p11tool - GnuTLS PKCS #11 tool - Ver. @VERSION@\n"
            "USAGE:  %s [ -<flag> [<val>] | --<name>[{=| }<val>] ]... [url]\n\0"
/*  2795 */ "bug-gnutls@gnu.org\0"
/*  2814 */ "\n\n\0"
/*  2817 */ "\n"
            "Program that allows handling data from PKCS #11 smart cards and security\n"
            "modules.\n\n"
            "To use PKCS #11 tokens with gnutls the configuration file\n"
            "/etc/gnutls/pkcs11.conf has to exist and contain a number of lines of the\n"
            "form 'load=/usr/lib/opensc-pkcs11.so'.\n\0"
/*  3073 */ "p11tool @VERSION@\0"
/*  3091 */ "p11tool [options] [url]\n"
            "p11tool --help for usage instructions.\n";

/*
 *  debug option description:
 */
#define DEBUG_DESC      (p11tool_opt_strs+881)
#define DEBUG_NAME      (p11tool_opt_strs+899)
#define DEBUG_name      (p11tool_opt_strs+905)
#define DEBUG_FLAGS     (OPTST_DISABLED \
        | OPTST_SET_ARGTYPE(OPARG_TYPE_NUMERIC))

/*
 *  outfile option description:
 */
#define OUTFILE_DESC      (p11tool_opt_strs+911)
#define OUTFILE_NAME      (p11tool_opt_strs+923)
#define OUTFILE_name      (p11tool_opt_strs+931)
#define OUTFILE_FLAGS     (OPTST_DISABLED \
        | OPTST_SET_ARGTYPE(OPARG_TYPE_STRING))

/*
 *  list-tokens option description:
 */
#define LIST_TOKENS_DESC      (p11tool_opt_strs+939)
#define LIST_TOKENS_NAME      (p11tool_opt_strs+965)
#define LIST_TOKENS_name      (p11tool_opt_strs+977)
#define LIST_TOKENS_FLAGS     (OPTST_DISABLED)

/*
 *  export option description:
 */
#define EXPORT_DESC      (p11tool_opt_strs+989)
#define EXPORT_NAME      (p11tool_opt_strs+1028)
#define EXPORT_name      (p11tool_opt_strs+1035)
#define EXPORT_FLAGS     (OPTST_DISABLED)

/*
 *  list-mechanisms option description:
 */
#define LIST_MECHANISMS_DESC      (p11tool_opt_strs+1042)
#define LIST_MECHANISMS_NAME      (p11tool_opt_strs+1083)
#define LIST_MECHANISMS_name      (p11tool_opt_strs+1099)
#define LIST_MECHANISMS_FLAGS     (OPTST_DISABLED)

/*
 *  list-all option description:
 */
#define LIST_ALL_DESC      (p11tool_opt_strs+1115)
#define LIST_ALL_NAME      (p11tool_opt_strs+1153)
#define LIST_ALL_name      (p11tool_opt_strs+1162)
#define LIST_ALL_FLAGS     (OPTST_DISABLED)

/*
 *  list-all-certs option description:
 */
#define LIST_ALL_CERTS_DESC      (p11tool_opt_strs+1171)
#define LIST_ALL_CERTS_NAME      (p11tool_opt_strs+1214)
#define LIST_ALL_CERTS_name      (p11tool_opt_strs+1229)
#define LIST_ALL_CERTS_FLAGS     (OPTST_DISABLED)

/*
 *  list-certs option description:
 */
#define LIST_CERTS_DESC      (p11tool_opt_strs+1244)
#define LIST_CERTS_NAME      (p11tool_opt_strs+1302)
#define LIST_CERTS_name      (p11tool_opt_strs+1313)
#define LIST_CERTS_FLAGS     (OPTST_DISABLED)

/*
 *  list-all-privkeys option description:
 */
#define LIST_ALL_PRIVKEYS_DESC      (p11tool_opt_strs+1324)
#define LIST_ALL_PRIVKEYS_NAME      (p11tool_opt_strs+1367)
#define LIST_ALL_PRIVKEYS_name      (p11tool_opt_strs+1385)
#define LIST_ALL_PRIVKEYS_FLAGS     (OPTST_DISABLED)

/*
 *  list-all-trusted option description:
 */
#define LIST_ALL_TRUSTED_DESC      (p11tool_opt_strs+1403)
#define LIST_ALL_TRUSTED_NAME      (p11tool_opt_strs+1453)
#define LIST_ALL_TRUSTED_name      (p11tool_opt_strs+1470)
#define LIST_ALL_TRUSTED_FLAGS     (OPTST_DISABLED)

/*
 *  initialize option description:
 */
#define INITIALIZE_DESC      (p11tool_opt_strs+1487)
#define INITIALIZE_NAME      (p11tool_opt_strs+1516)
#define INITIALIZE_name      (p11tool_opt_strs+1527)
#define INITIALIZE_FLAGS     (OPTST_DISABLED)

/*
 *  write option description:
 */
#define WRITE_DESC      (p11tool_opt_strs+1538)
#define WRITE_NAME      (p11tool_opt_strs+1584)
#define WRITE_name      (p11tool_opt_strs+1590)
#define WRITE_FLAGS     (OPTST_DISABLED)

/*
 *  delete option description:
 */
#define DELETE_DESC      (p11tool_opt_strs+1596)
#define DELETE_NAME      (p11tool_opt_strs+1642)
#define DELETE_name      (p11tool_opt_strs+1649)
#define DELETE_FLAGS     (OPTST_DISABLED)

/*
 *  generate-rsa option description:
 */
#define GENERATE_RSA_DESC      (p11tool_opt_strs+1656)
#define GENERATE_RSA_NAME      (p11tool_opt_strs+1696)
#define GENERATE_RSA_name      (p11tool_opt_strs+1709)
#define GENERATE_RSA_FLAGS     (OPTST_DISABLED)

/*
 *  generate-dsa option description:
 */
#define GENERATE_DSA_DESC      (p11tool_opt_strs+1656)
#define GENERATE_DSA_NAME      (p11tool_opt_strs+1722)
#define GENERATE_DSA_name      (p11tool_opt_strs+1735)
#define GENERATE_DSA_FLAGS     (OPTST_DISABLED)

/*
 *  generate-ecc option description:
 */
#define GENERATE_ECC_DESC      (p11tool_opt_strs+1656)
#define GENERATE_ECC_NAME      (p11tool_opt_strs+1748)
#define GENERATE_ECC_name      (p11tool_opt_strs+1761)
#define GENERATE_ECC_FLAGS     (OPTST_DISABLED)

/*
 *  label option description:
 */
#define LABEL_DESC      (p11tool_opt_strs+1774)
#define LABEL_NAME      (p11tool_opt_strs+1811)
#define LABEL_name      (p11tool_opt_strs+1817)
#define LABEL_FLAGS     (OPTST_DISABLED \
        | OPTST_SET_ARGTYPE(OPARG_TYPE_STRING))

/*
 *  trusted option description:
 */
#define TRUSTED_DESC      (p11tool_opt_strs+1823)
#define TRUSTED_NAME      (p11tool_opt_strs+1865)
#define NOT_TRUSTED_name  (p11tool_opt_strs+1873)
#define NOT_TRUSTED_PFX   (p11tool_opt_strs+1884)
#define TRUSTED_name      (NOT_TRUSTED_name + 3)
#define TRUSTED_FLAGS     (OPTST_DISABLED)

/*
 *  private option description:
 */
#define PRIVATE_DESC      (p11tool_opt_strs+1887)
#define PRIVATE_NAME      (p11tool_opt_strs+1929)
#define NOT_PRIVATE_name  (p11tool_opt_strs+1937)
#define NOT_PRIVATE_PFX   (p11tool_opt_strs+1884)
#define PRIVATE_name      (NOT_PRIVATE_name + 3)
#define PRIVATE_FLAGS     (OPTST_INITENABLED)

/*
 *  login option description:
 */
#define LOGIN_DESC      (p11tool_opt_strs+1948)
#define LOGIN_NAME      (p11tool_opt_strs+1969)
#define NOT_LOGIN_name  (p11tool_opt_strs+1975)
#define NOT_LOGIN_PFX   (p11tool_opt_strs+1884)
#define LOGIN_name      (NOT_LOGIN_name + 3)
#define LOGIN_FLAGS     (OPTST_DISABLED)

/*
 *  detailed-url option description:
 */
#define DETAILED_URL_DESC      (p11tool_opt_strs+1984)
#define DETAILED_URL_NAME      (p11tool_opt_strs+2004)
#define NOT_DETAILED_URL_name  (p11tool_opt_strs+2017)
#define NOT_DETAILED_URL_PFX   (p11tool_opt_strs+1884)
#define DETAILED_URL_name      (NOT_DETAILED_URL_name + 3)
#define DETAILED_URL_FLAGS     (OPTST_DISABLED)

/*
 *  secret-key option description:
 */
#define SECRET_KEY_DESC      (p11tool_opt_strs+2033)
#define SECRET_KEY_NAME      (p11tool_opt_strs+2066)
#define SECRET_KEY_name      (p11tool_opt_strs+2077)
#define SECRET_KEY_FLAGS     (OPTST_DISABLED \
        | OPTST_SET_ARGTYPE(OPARG_TYPE_STRING))

/*
 *  load-privkey option description:
 */
#define LOAD_PRIVKEY_DESC      (p11tool_opt_strs+2088)
#define LOAD_PRIVKEY_NAME      (p11tool_opt_strs+2112)
#define LOAD_PRIVKEY_name      (p11tool_opt_strs+2125)
#define LOAD_PRIVKEY_FLAGS     (OPTST_DISABLED \
        | OPTST_SET_ARGTYPE(OPARG_TYPE_FILE))

/*
 *  load-pubkey option description:
 */
#define LOAD_PUBKEY_DESC      (p11tool_opt_strs+2138)
#define LOAD_PUBKEY_NAME      (p11tool_opt_strs+2161)
#define LOAD_PUBKEY_name      (p11tool_opt_strs+2173)
#define LOAD_PUBKEY_FLAGS     (OPTST_DISABLED \
        | OPTST_SET_ARGTYPE(OPARG_TYPE_FILE))

/*
 *  load-certificate option description:
 */
#define LOAD_CERTIFICATE_DESC      (p11tool_opt_strs+2185)
#define LOAD_CERTIFICATE_NAME      (p11tool_opt_strs+2209)
#define LOAD_CERTIFICATE_name      (p11tool_opt_strs+2226)
#define LOAD_CERTIFICATE_FLAGS     (OPTST_DISABLED \
        | OPTST_SET_ARGTYPE(OPARG_TYPE_FILE))

/*
 *  pkcs8 option description:
 */
#define PKCS8_DESC      (p11tool_opt_strs+2243)
#define PKCS8_NAME      (p11tool_opt_strs+2279)
#define PKCS8_name      (p11tool_opt_strs+2285)
#define PKCS8_FLAGS     (OPTST_DISABLED)

/*
 *  bits option description:
 */
#define BITS_DESC      (p11tool_opt_strs+2291)
#define BITS_NAME      (p11tool_opt_strs+2335)
#define BITS_name      (p11tool_opt_strs+2340)
#define BITS_FLAGS     (OPTST_DISABLED \
        | OPTST_SET_ARGTYPE(OPARG_TYPE_NUMERIC))

/*
 *  sec-param option description:
 */
#define SEC_PARAM_DESC      (p11tool_opt_strs+2345)
#define SEC_PARAM_NAME      (p11tool_opt_strs+2372)
#define SEC_PARAM_name      (p11tool_opt_strs+2382)
#define SEC_PARAM_FLAGS     (OPTST_DISABLED \
        | OPTST_SET_ARGTYPE(OPARG_TYPE_STRING))

/*
 *  inder option description:
 */
#define INDER_DESC      (p11tool_opt_strs+2392)
#define INDER_NAME      (p11tool_opt_strs+2421)
#define NOT_INDER_name  (p11tool_opt_strs+2427)
#define NOT_INDER_PFX   (p11tool_opt_strs+1884)
#define INDER_name      (NOT_INDER_name + 3)
#define INDER_FLAGS     (OPTST_DISABLED)

/*
 *  inraw option description:
 */
#define INRAW_DESC    (p11tool_opt_strs+2436)
#define INRAW_NAME    NULL
#define INRAW_name    (p11tool_opt_strs+2465)
#define INRAW_FLAGS     (INDER_FLAGS | OPTST_ALIAS)

/*
 *  provider option description:
 */
#define PROVIDER_DESC      (p11tool_opt_strs+2471)
#define PROVIDER_NAME      (p11tool_opt_strs+2509)
#define PROVIDER_name      (p11tool_opt_strs+2518)
#define PROVIDER_FLAGS     (OPTST_DISABLED \
        | OPTST_SET_ARGTYPE(OPARG_TYPE_FILE))

/*
 *  Help/More_Help/Version option descriptions:
 */
#define HELP_DESC       (p11tool_opt_strs+2527)
#define HELP_name       (p11tool_opt_strs+2571)
#ifdef HAVE_WORKING_FORK
#define MORE_HELP_DESC  (p11tool_opt_strs+2576)
#define MORE_HELP_name  (p11tool_opt_strs+2621)
#define MORE_HELP_FLAGS (OPTST_IMM | OPTST_NO_INIT)
#else
#define MORE_HELP_DESC  NULL
#define MORE_HELP_name  NULL
#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        (p11tool_opt_strs+2631)
#define VER_name        (p11tool_opt_strs+2667)
/*
 *  Declare option callback procedures
 */
extern tOptProc
    optionBooleanVal,   optionNestedVal,    optionNumericVal,
    optionPagedUsage,   optionPrintVersion, optionResetOpt,
    optionStackArg,     optionTimeDate,     optionTimeVal,
    optionUnstackArg,   optionVendorOption;
static tOptProc
    doOptDebug,            doOptInraw,            doOptLoad_Certificate,
    doOptLoad_Privkey,     doOptLoad_Pubkey,      doOptProvider,
    doUsageOpt;
#define VER_PROC        optionPrintVersion

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/**
 *  Define the p11tool Option Descriptions.
 * This is an array of OPTION_CT entries, one for each
 * option that the p11tool 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_OUTFILE,
     /* equiv idx, value */ 1, 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 */ 2, VALUE_OPT_LIST_TOKENS,
     /* equiv idx, value */ 2, VALUE_OPT_LIST_TOKENS,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ LIST_TOKENS_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --list-tokens */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ LIST_TOKENS_DESC, LIST_TOKENS_NAME, LIST_TOKENS_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 3, VALUE_OPT_EXPORT,
     /* equiv idx, value */ 3, VALUE_OPT_EXPORT,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ EXPORT_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --export */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ EXPORT_DESC, EXPORT_NAME, EXPORT_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 4, VALUE_OPT_LIST_MECHANISMS,
     /* equiv idx, value */ 4, VALUE_OPT_LIST_MECHANISMS,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ LIST_MECHANISMS_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --list-mechanisms */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ LIST_MECHANISMS_DESC, LIST_MECHANISMS_NAME, LIST_MECHANISMS_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 5, VALUE_OPT_LIST_ALL,
     /* equiv idx, value */ 5, VALUE_OPT_LIST_ALL,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ LIST_ALL_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --list-all */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ LIST_ALL_DESC, LIST_ALL_NAME, LIST_ALL_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 6, VALUE_OPT_LIST_ALL_CERTS,
     /* equiv idx, value */ 6, VALUE_OPT_LIST_ALL_CERTS,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ LIST_ALL_CERTS_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --list-all-certs */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ LIST_ALL_CERTS_DESC, LIST_ALL_CERTS_NAME, LIST_ALL_CERTS_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 7, VALUE_OPT_LIST_CERTS,
     /* equiv idx, value */ 7, VALUE_OPT_LIST_CERTS,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ LIST_CERTS_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --list-certs */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ LIST_CERTS_DESC, LIST_CERTS_NAME, LIST_CERTS_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 8, VALUE_OPT_LIST_ALL_PRIVKEYS,
     /* equiv idx, value */ 8, VALUE_OPT_LIST_ALL_PRIVKEYS,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ LIST_ALL_PRIVKEYS_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --list-all-privkeys */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ LIST_ALL_PRIVKEYS_DESC, LIST_ALL_PRIVKEYS_NAME, LIST_ALL_PRIVKEYS_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 9, VALUE_OPT_LIST_ALL_TRUSTED,
     /* equiv idx, value */ 9, VALUE_OPT_LIST_ALL_TRUSTED,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ LIST_ALL_TRUSTED_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --list-all-trusted */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ LIST_ALL_TRUSTED_DESC, LIST_ALL_TRUSTED_NAME, LIST_ALL_TRUSTED_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 10, VALUE_OPT_INITIALIZE,
     /* equiv idx, value */ 10, VALUE_OPT_INITIALIZE,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ INITIALIZE_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --initialize */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ INITIALIZE_DESC, INITIALIZE_NAME, INITIALIZE_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 11, VALUE_OPT_WRITE,
     /* equiv idx, value */ 11, VALUE_OPT_WRITE,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ WRITE_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --write */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ WRITE_DESC, WRITE_NAME, WRITE_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 12, VALUE_OPT_DELETE,
     /* equiv idx, value */ 12, VALUE_OPT_DELETE,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ DELETE_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --delete */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ DELETE_DESC, DELETE_NAME, DELETE_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 13, VALUE_OPT_GENERATE_RSA,
     /* equiv idx, value */ 13, VALUE_OPT_GENERATE_RSA,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ GENERATE_RSA_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --generate-rsa */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ GENERATE_RSA_DESC, GENERATE_RSA_NAME, GENERATE_RSA_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 14, VALUE_OPT_GENERATE_DSA,
     /* equiv idx, value */ 14, VALUE_OPT_GENERATE_DSA,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ GENERATE_DSA_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --generate-dsa */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ GENERATE_DSA_DESC, GENERATE_DSA_NAME, GENERATE_DSA_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 15, VALUE_OPT_GENERATE_ECC,
     /* equiv idx, value */ 15, VALUE_OPT_GENERATE_ECC,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ GENERATE_ECC_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --generate-ecc */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ GENERATE_ECC_DESC, GENERATE_ECC_NAME, GENERATE_ECC_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 16, VALUE_OPT_LABEL,
     /* equiv idx, value */ 16, VALUE_OPT_LABEL,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ LABEL_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --label */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ LABEL_DESC, LABEL_NAME, LABEL_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 17, VALUE_OPT_TRUSTED,
     /* equiv idx, value */ 17, VALUE_OPT_TRUSTED,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ TRUSTED_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --trusted */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ TRUSTED_DESC, TRUSTED_NAME, TRUSTED_name,
     /* disablement strs */ NOT_TRUSTED_name, NOT_TRUSTED_PFX },

  {  /* entry idx, value */ 18, VALUE_OPT_PRIVATE,
     /* equiv idx, value */ 18, VALUE_OPT_PRIVATE,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ PRIVATE_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --private */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ PRIVATE_DESC, PRIVATE_NAME, PRIVATE_name,
     /* disablement strs */ NOT_PRIVATE_name, NOT_PRIVATE_PFX },

  {  /* entry idx, value */ 19, VALUE_OPT_LOGIN,
     /* equiv idx, value */ 19, VALUE_OPT_LOGIN,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ LOGIN_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --login */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ LOGIN_DESC, LOGIN_NAME, LOGIN_name,
     /* disablement strs */ NOT_LOGIN_name, NOT_LOGIN_PFX },

  {  /* entry idx, value */ 20, VALUE_OPT_DETAILED_URL,
     /* equiv idx, value */ 20, VALUE_OPT_DETAILED_URL,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ DETAILED_URL_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --detailed-url */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ DETAILED_URL_DESC, DETAILED_URL_NAME, DETAILED_URL_name,
     /* disablement strs */ NOT_DETAILED_URL_name, NOT_DETAILED_URL_PFX },

  {  /* entry idx, value */ 21, VALUE_OPT_SECRET_KEY,
     /* equiv idx, value */ 21, VALUE_OPT_SECRET_KEY,
     /* equivalenced to  */ NO_EQUIVALENT,
     /* min, max, act ct */ 0, 1, 0,
     /* opt state flags  */ SECRET_KEY_FLAGS, 0,
     /* last opt argumnt */ { NULL }, /* --secret-key */
     /* arg list/cookie  */ NULL,
     /* must/cannot opts */ NULL, NULL,
     /* option proc      */ NULL,
     /* desc, NAME, name */ SECRET_KEY_DESC, SECRET_KEY_NAME, SECRET_KEY_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 22, VALUE_OPT_LOAD_PRIVKEY,
     /* equiv idx, value */ 22, 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      */ doOptLoad_Privkey,
     /* desc, NAME, name */ LOAD_PRIVKEY_DESC, LOAD_PRIVKEY_NAME, LOAD_PRIVKEY_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 23, VALUE_OPT_LOAD_PUBKEY,
     /* equiv idx, value */ 23, 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      */ doOptLoad_Pubkey,
     /* desc, NAME, name */ LOAD_PUBKEY_DESC, LOAD_PUBKEY_NAME, LOAD_PUBKEY_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 24, VALUE_OPT_LOAD_CERTIFICATE,
     /* equiv idx, value */ 24, 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      */ doOptLoad_Certificate,
     /* desc, NAME, name */ LOAD_CERTIFICATE_DESC, LOAD_CERTIFICATE_NAME, LOAD_CERTIFICATE_name,
     /* disablement strs */ NULL, NULL },

  {  /* entry idx, value */ 25, VALUE_OPT_PKCS8,
     /* equiv idx, value */ 25, 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 */ 26, VALUE_OPT_BITS,
     /* equiv idx, value */ 26, 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 */ 27, VALUE_OPT_SEC_PARAM,
     /* equiv idx, value */ 27, 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 */ 28, VALUE_OPT_INDER,
     /* equiv idx, value */ 28, 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 */ 29, VALUE_OPT_INRAW,
     /* equiv idx, value */ 29, 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 */ 30, VALUE_OPT_PROVIDER,
     /* equiv idx, value */ 30, 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      */ doOptProvider,
     /* 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, 0,
     /* 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, 0,
     /* 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, 0,
     /* 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 }
};


/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 *
 *  Define the p11tool Option Environment
 */
#define zPROGNAME       (p11tool_opt_strs+2675)
#define zUsageTitle     (p11tool_opt_strs+2683)
#define zRcName         NULL
#define apzHomeList     NULL
#define zBugsAddr       (p11tool_opt_strs+2795)
#define zExplain        (p11tool_opt_strs+2814)
#define zDetail         (p11tool_opt_strs+2817)
#define zFullVersion    (p11tool_opt_strs+3073)
/* extracted from optcode.tlib near line 350 */

#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 p11tool_full_usage (NULL)

#define p11tool_short_usage (p11tool_opt_strs+3091)

#endif /* not defined __doxygen__ */

/*
 *  Create the static procedure(s) declared above.
 */
/**
 * The callout function that invokes the optionUsage function.
 *
 * @param pOptions the AutoOpts option description structure
 * @param pOptDesc the descriptor for the "help" (usage) option.
 * @noreturn
 */
static void
doUsageOpt(tOptions * pOptions, tOptDesc * pOptDesc)
{
    optionUsage(&p11toolOptions, P11TOOL_EXIT_SUCCESS);
    /* NOTREACHED */
    (void)pOptDesc;
    (void)pOptions;
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/**
 * Code to handle the debug option.
 *
 * @param pOptions the p11tool options data structure
 * @param 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, (void *)rng, 1);
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/**
 * Code to handle the load-privkey option.
 *
 * @param pOptions the p11tool options data structure
 * @param pOptDesc the option descriptor for this option.
 */
static void
doOptLoad_Privkey(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;

    optionFileCheck(pOptions, pOptDesc, type, mode);
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/**
 * Code to handle the load-pubkey option.
 *
 * @param pOptions the p11tool options data structure
 * @param pOptDesc the option descriptor for this option.
 */
static void
doOptLoad_Pubkey(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;

    optionFileCheck(pOptions, pOptDesc, type, mode);
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/**
 * Code to handle the load-certificate option.
 *
 * @param pOptions the p11tool options data structure
 * @param pOptDesc the option descriptor for this option.
 */
static void
doOptLoad_Certificate(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;

    optionFileCheck(pOptions, pOptDesc, type, mode);
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/**
 * Code to handle the inraw option.
 *
 * @param pOptions the p11tool options data structure
 * @param 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(P11TOOL_EXIT_FAILURE);

}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/**
 * Code to handle the provider option.
 *
 * @param pOptions the p11tool options data structure
 * @param pOptDesc the option descriptor for this option.
 */
static void
doOptProvider(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;

    optionFileCheck(pOptions, pOptDesc, type, mode);
}
/* extracted from optmain.tlib near line 1113 */

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

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

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

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

#endif /* __doxygen__ */
/**
 * The option definitions for p11tool.  The one structure that
 * binds them all.
 */
tOptions p11toolOptions = {
    OPTIONS_STRUCT_VERSION,
    0, NULL,                    /* original argc + argv    */
    ( OPTPROC_BASE
    + OPTPROC_ERRSTOP
    + OPTPROC_SHORTOPT
    + OPTPROC_LONGOPT
    + OPTPROC_NO_REQ_OPT
    + OPTPROC_NEGATIONS
    + OPTPROC_REORDER
    + 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 */
    },
    34 /* full option count */, 31 /* user option count */,
    p11tool_full_usage, p11tool_short_usage,
    NULL, NULL,
    PKGDATADIR, p11tool_packager_info
};

#if ENABLE_NLS
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#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.
 *
 * @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* pzRes;
    if (pz == NULL)
        return NULL;
    pzRes = _(pz);
    if (pzRes == pz)
        return pzRes;
    pzRes = strdup(pzRes);
    if (pzRes == NULL) {
        fputs(_("No memory for duping translated strings\n"), stderr);
        exit(P11TOOL_EXIT_FAILURE);
    }
    return pzRes;
}

static void coerce_it(void** s) { *s = AO_gettext(*s);
}

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

    /*
     *  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_usage_text.field_ct != 0) {
        /*
         *  Do the translations.  The first pointer follows the field count
         *  field.  The field count field is the size of a pointer.
         */
        tOptDesc * pOD = pOpt->pOptDesc;
        char **    ppz = (char**)(void*)&(option_usage_text);
        int        ix  = option_usage_text.field_ct;

        do {
            ppz++;
            *ppz = AO_gettext(*ppz);
        } while (--ix > 0);

        coerce_it((void*)&(pOpt->pzCopyright));
        coerce_it((void*)&(pOpt->pzCopyNotice));
        coerce_it((void*)&(pOpt->pzFullVersion));
        coerce_it((void*)&(pOpt->pzUsageTitle));
        coerce_it((void*)&(pOpt->pzExplain));
        coerce_it((void*)&(pOpt->pzDetail));
        coerce_it((void*)&(pOpt->pzPackager));
        coerce_it((void*)&(pOpt->pzShortUsage));
        option_usage_text.field_ct = 0;

        for (ix = pOpt->optCt; ix > 0; ix--, pOD++)
            coerce_it((void*)&(pOD->pzText));
    }

    if ((pOpt->fOptSet & OPTPROC_NXLAT_OPT_CFG) == 0) {
        tOptDesc * pOD = pOpt->pOptDesc;
        int        ix;

        for (ix = pOpt->optCt; ix > 0; ix--, pOD++) {
            coerce_it((void*)&(pOD->pz_Name));
            coerce_it((void*)&(pOD->pz_DisableName));
            coerce_it((void*)&(pOD->pz_DisablePfx));
        }
        /* prevent re-translation */
        p11toolOptions.fOptSet |= OPTPROC_NXLAT_OPT_CFG | OPTPROC_NXLAT_OPT;
    }
}

#endif /* ENABLE_NLS */

#ifdef  __cplusplus
}
#endif
/* p11tool-args.c ends here */