-
Notifications
You must be signed in to change notification settings - Fork 132
/
gen.rs
5468 lines (5468 loc) · 270 KB
/
gen.rs
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
#![doc = "!! DO NOT EDIT !!: This file is auto-generated by oiddbgen."]
pub mod bake {
pub const BAKE: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.66");
pub const BAKE_KDF: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.66.101");
pub const BAKE_BMQV: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.66.11");
pub const BAKE_BSTS: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.66.12");
pub const BAKE_KEYS: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.66.2");
pub const BAKE_PUBKEY: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.66.2.1");
pub const BAKE_SWU: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.66.201");
pub const BAKE_BPACE: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.66.21");
pub const BAKE_DH: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.66.31");
}
pub mod bash {
pub const BASH: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.77");
pub const BASH_F: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.77.101");
pub const BASH_256: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.77.11");
pub const BASH_384: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.77.12");
pub const BASH_512: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.77.13");
pub const BASH_PRG_HASH_2561: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.77.21");
pub const BASH_PRG_HASH_2562: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.77.22");
pub const BASH_PRG_HASH_3841: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.77.23");
pub const BASH_PRG_HASH_3842: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.77.24");
pub const BASH_PRG_HASH_5121: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.77.25");
pub const BASH_PRG_HASH_5122: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.77.26");
pub const BASH_PRG_AE_1281: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.77.31");
pub const BASH_PRG_AE_1282: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.77.32");
pub const BASH_PRG_AE_1921: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.77.33");
pub const BASH_PRG_AE_1922: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.77.34");
pub const BASH_PRG_AE_2561: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.77.35");
pub const BASH_PRG_AE_2562: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.77.36");
}
pub mod belt {
pub const BELT: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.31");
pub const BELT_KEYREP: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.31.101");
pub const BELT_ECB_128: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.31.11");
pub const BELT_BDE_128: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.31.111");
pub const BELT_BDE_192: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.31.112");
pub const BELT_BDE_256: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.31.113");
pub const BELT_ECB_192: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.31.12");
pub const BELT_SDE_128: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.31.121");
pub const BELT_SDE_192: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.31.122");
pub const BELT_SDE_256: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.31.123");
pub const BELT_ECB_256: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.31.13");
pub const BELT_FMT_128: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.31.131");
pub const BELT_FMT_192: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.31.132");
pub const BELT_FMT_256: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.31.133");
pub const BELT_CBC_128: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.31.21");
pub const BELT_CBC_192: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.31.22");
pub const BELT_CBC_256: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.31.23");
pub const BELT_BLOCK_128: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.31.3");
pub const BELT_CFB_128: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.31.31");
pub const BELT_CFB_192: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.31.32");
pub const BELT_CFB_256: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.31.33");
pub const BELT_BLOCK_192: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.31.4");
pub const BELT_CTR_128: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.31.41");
pub const BELT_CTR_192: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.31.42");
pub const BELT_CTR_256: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.31.43");
pub const BELT_BLOCK_256: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.31.5");
pub const BELT_MAC_128: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.31.51");
pub const BELT_MAC_192: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.31.52");
pub const BELT_MAC_256: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.31.53");
pub const BELT_WBLOCK_128: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.31.6");
pub const BELT_DWP_128: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.31.61");
pub const BELT_DWP_192: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.31.62");
pub const BELT_DWP_256: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.31.63");
pub const BELT_CHE_128: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.31.64");
pub const BELT_CHE_192: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.31.65");
pub const BELT_CHE_256: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.31.66");
pub const BELT_WBLOCK_192: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.31.7");
pub const BELT_KWP_128: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.31.71");
pub const BELT_KWP_192: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.31.72");
pub const BELT_KWP_256: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.31.73");
pub const BELT_WBLOCK_256: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.31.8");
pub const BELT_HASH: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.31.81");
pub const BELT_COMPRESS: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.31.9");
pub const BELT_KEYEXPAND: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.31.91");
}
pub mod bign {
pub const BIGN: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.45");
pub const BIGN_WITH_HSPEC: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.45.11");
pub const BIGN_WITH_HBELT: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.45.12");
pub const BIGN_KEYS: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.45.2");
pub const BIGN_PUBKEY: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.45.2.1");
pub const BIGN_GENEC: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.45.21");
pub const BIGN_VALEC: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.45.22");
pub const BIGN_CURVES: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.45.3");
pub const BIGN_CURVE_256_V_1: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.45.3.1");
pub const BIGN_CURVE_384_V_1: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.45.3.2");
pub const BIGN_CURVE_512_V_1: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.45.3.3");
pub const BIGN_GENKEYPAIR: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.45.31");
pub const BIGN_VALPUBKEY: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.45.32");
pub const BIGN_FIELDS: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.45.4");
pub const BIGN_PRIMEFIELD: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.45.4.1");
pub const BIGN_KEYTRANSPORT: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.45.41");
pub const BIGN_GENK: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.45.61");
pub const BIGN_IBS_WITH_HSPEC: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.45.71");
pub const BIGN_IBS_WITH_HBELT: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.45.72");
}
pub mod bpki {
pub const BPKI: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.78");
pub const BPKI_ROLE: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.78.2");
pub const BPKI_ROLE_CA_0: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.78.2.0");
pub const BPKI_ROLE_CA_1: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.78.2.1");
pub const BPKI_ROLE_AA: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.78.2.10");
pub const BPKI_ROLE_CA_2: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.78.2.2");
pub const BPKI_ROLE_RA: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.78.2.20");
pub const BPKI_ROLE_OCSP: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.78.2.30");
pub const BPKI_ROLE_TSA: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.78.2.31");
pub const BPKI_ROLE_DVCS: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.78.2.32");
pub const BPKI_ROLE_IDS: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.78.2.33");
pub const BPKI_ROLE_TLS: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.78.2.50");
pub const BPKI_ROLE_NP: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.78.2.60");
pub const BPKI_ROLE_FNP: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.78.2.61");
pub const BPKI_ROLE_LR: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.78.2.62");
pub const BPKI_ROLE_ACD: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.78.2.70");
pub const BPKI_EKU: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.78.3");
pub const BPKI_EKU_SERVER_TM: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.78.3.1");
pub const BPKI_EKU_CLIENT_TM: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.78.3.2");
pub const BPKI_AT: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.78.4");
pub const BPKI_AT_CERTIFICATE_VALIDITY: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.78.4.1");
pub const BPKI_CT: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.78.5");
pub const BPKI_CT_ENROLL_1_REQ: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.78.5.1");
pub const BPKI_CT_ENROLL_2_REQ: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.78.5.2");
pub const BPKI_CT_REENROLL_REQ: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.78.5.3");
pub const BPKI_CT_SPAWN_REQ: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.78.5.4");
pub const BPKI_CT_SETPWD_REQ: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.78.5.5");
pub const BPKI_CT_REVOKE_REQ: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.78.5.6");
pub const BPKI_CT_RESP: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.78.5.7");
}
pub mod brng {
pub const BRNG: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.47");
pub const HMAC_HSPEC: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.47.11");
pub const HOTP_HSPEC: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.47.111");
pub const HOTP_HBELT: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.47.112");
pub const HMAC_HBELT: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.47.12");
pub const TOTP_HSPEC: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.47.121");
pub const TOTP_HBELT: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.47.122");
pub const OCRA_HSPEC: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.47.131");
pub const OCRA_HBELT: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.47.132");
pub const BRNG_CTR_HSPEC: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.47.21");
pub const BRNG_CTR_HBELT: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.47.22");
pub const BRNG_CTR_STB_11761: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.47.23");
pub const BRNG_HMAC_HSPEC: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.47.31");
pub const BRNG_HMAC_HBELT: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.47.32");
}
pub mod btok {
pub const BTOK: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.79");
pub const BTOK_BAUTH: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.79.11");
pub const BTOK_BAUTH_1: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.79.12");
pub const BTOK_ATTRS: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.79.5");
pub const ID_DOCUMENT_VALIDITY: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.79.5.1");
pub const ID_AGE_VERIFICATION: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.79.5.2");
pub const ID_PLACE_VERIFICATION: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.79.5.3");
pub const BTOK_ACCESS: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.79.6");
pub const ID_E_ID_ACCESS: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.79.6.1");
pub const ID_E_SIGN_ACCESS: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.79.6.2");
pub const BTOK_APPS: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.79.7");
pub const ID_EID: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.79.7.1");
pub const ID_E_SIGN: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.79.7.2");
pub const BTOK_CVEXT: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.79.8");
pub const ID_SIGN_AUTH_EXT: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.112.0.2.0.34.101.79.8.1");
}
pub mod fips202 {
pub const NIST_ALGORITHMS: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.16.840.1.101.3.4");
pub const HASH_ALGS: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.16.840.1.101.3.4.2");
pub const ID_SHA_3_512: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.16.840.1.101.3.4.2.10");
pub const ID_SHAKE_128: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.16.840.1.101.3.4.2.11");
pub const ID_SHAKE_256: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.16.840.1.101.3.4.2.12");
pub const ID_SHA_3_224: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.16.840.1.101.3.4.2.7");
pub const ID_SHA_3_256: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.16.840.1.101.3.4.2.8");
pub const ID_SHA_3_384: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.16.840.1.101.3.4.2.9");
}
pub mod fips203 {
pub const NIST_ALGORITHMS: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.16.840.1.101.3.4");
pub const KEMS: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.16.840.1.101.3.4.4");
pub const ID_ALG_ML_KEM_512: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.16.840.1.101.3.4.4.1");
pub const ID_ALG_ML_KEM_768: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.16.840.1.101.3.4.4.2");
pub const ID_ALG_ML_KEM_1024: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.16.840.1.101.3.4.4.3");
}
pub mod fips204 {
pub const NIST_ALGORITHMS: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.16.840.1.101.3.4");
pub const SIG_ALGS: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.16.840.1.101.3.4.3");
pub const ID_ML_DSA_44: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.16.840.1.101.3.4.3.17");
pub const ID_ML_DSA_65: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.16.840.1.101.3.4.3.18");
pub const ID_ML_DSA_87: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.16.840.1.101.3.4.3.19");
pub const ID_HASH_ML_DSA_44_WITH_SHA_512: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.16.840.1.101.3.4.3.32");
pub const ID_HASH_ML_DSA_65_WITH_SHA_512: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.16.840.1.101.3.4.3.33");
pub const ID_HASH_ML_DSA_87_WITH_SHA_512: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.16.840.1.101.3.4.3.34");
}
pub mod fips205 {
pub const NIST_ALGORITHMS: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.16.840.1.101.3.4");
pub const SIG_ALGS: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.16.840.1.101.3.4.3");
pub const ID_SLH_DSA_SHA_2_128_S: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.16.840.1.101.3.4.3.20");
pub const ID_SLH_DSA_SHA_2_128_F: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.16.840.1.101.3.4.3.21");
pub const ID_SLH_DSA_SHA_2_192_S: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.16.840.1.101.3.4.3.22");
pub const ID_SLH_DSA_SHA_2_192_F: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.16.840.1.101.3.4.3.23");
pub const ID_SLH_DSA_SHA_2_256_S: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.16.840.1.101.3.4.3.24");
pub const ID_SLH_DSA_SHA_2_256_F: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.16.840.1.101.3.4.3.25");
pub const ID_SLH_DSA_SHAKE_128_S: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.16.840.1.101.3.4.3.26");
pub const ID_SLH_DSA_SHAKE_128_F: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.16.840.1.101.3.4.3.27");
pub const ID_SLH_DSA_SHAKE_192_S: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.16.840.1.101.3.4.3.28");
pub const ID_SLH_DSA_SHAKE_192_F: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.16.840.1.101.3.4.3.29");
pub const ID_SLH_DSA_SHAKE_256_S: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.16.840.1.101.3.4.3.30");
pub const ID_SLH_DSA_SHAKE_256_F: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.16.840.1.101.3.4.3.31");
pub const ID_HASH_SLH_DSA_SHA_2_128_S_WITH_SHA_256: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.16.840.1.101.3.4.3.35");
pub const ID_HASH_SLH_DSA_SHA_2_128_F_WITH_SHA_256: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.16.840.1.101.3.4.3.36");
pub const ID_HASH_SLH_DSA_SHA_2_192_S_WITH_SHA_512: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.16.840.1.101.3.4.3.37");
pub const ID_HASH_SLH_DSA_SHA_2_192_F_WITH_SHA_512: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.16.840.1.101.3.4.3.38");
pub const ID_HASH_SLH_DSA_SHA_2_256_S_WITH_SHA_512: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.16.840.1.101.3.4.3.39");
pub const ID_HASH_SLH_DSA_SHA_2_256_F_WITH_SHA_512: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.16.840.1.101.3.4.3.40");
pub const ID_HASH_SLH_DSA_SHAKE_128_S_WITH_SHAKE_128: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.16.840.1.101.3.4.3.41");
pub const ID_HASH_SLH_DSA_SHAKE_128_F_WITH_SHAKE_128: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.16.840.1.101.3.4.3.42");
pub const ID_HASH_SLH_DSA_SHAKE_192_S_WITH_SHAKE_256: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.16.840.1.101.3.4.3.43");
pub const ID_HASH_SLH_DSA_SHAKE_192_F_WITH_SHAKE_256: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.16.840.1.101.3.4.3.44");
pub const ID_HASH_SLH_DSA_SHAKE_256_S_WITH_SHAKE_256: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.16.840.1.101.3.4.3.45");
pub const ID_HASH_SLH_DSA_SHAKE_256_F_WITH_SHAKE_256: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.16.840.1.101.3.4.3.46");
}
pub mod rfc1274 {
pub const TEXT_ENCODED_OR_ADDRESS: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("0.9.2342.19200300.100.1.2");
pub const OTHER_MAILBOX: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("0.9.2342.19200300.100.1.22");
pub const LAST_MODIFIED_TIME: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("0.9.2342.19200300.100.1.23");
pub const LAST_MODIFIED_BY: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("0.9.2342.19200300.100.1.24");
pub const A_RECORD: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("0.9.2342.19200300.100.1.26");
pub const MD_RECORD: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("0.9.2342.19200300.100.1.27");
pub const MX_RECORD: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("0.9.2342.19200300.100.1.28");
pub const NS_RECORD: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("0.9.2342.19200300.100.1.29");
pub const SOA_RECORD: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("0.9.2342.19200300.100.1.30");
pub const CNAME_RECORD: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("0.9.2342.19200300.100.1.31");
pub const JANET_MAILBOX: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("0.9.2342.19200300.100.1.46");
pub const MAIL_PREFERENCE_OPTION: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("0.9.2342.19200300.100.1.47");
pub const DSA_QUALITY: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("0.9.2342.19200300.100.1.49");
pub const SUBTREE_MINIMUM_QUALITY: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("0.9.2342.19200300.100.1.51");
pub const SUBTREE_MAXIMUM_QUALITY: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("0.9.2342.19200300.100.1.52");
pub const PERSONAL_SIGNATURE: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("0.9.2342.19200300.100.1.53");
pub const DIT_REDIRECT: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("0.9.2342.19200300.100.1.54");
pub const AUDIO: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("0.9.2342.19200300.100.1.55");
pub const PHOTO: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("0.9.2342.19200300.100.1.7");
pub const DNS_DOMAIN: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("0.9.2342.19200300.100.4.15");
pub const PILOT_ORGANIZATION: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("0.9.2342.19200300.100.4.20");
pub const PILOT_DSA: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("0.9.2342.19200300.100.4.21");
pub const QUALITY_LABELLED_DATA: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("0.9.2342.19200300.100.4.22");
pub const PILOT_OBJECT: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("0.9.2342.19200300.100.4.3");
pub const PILOT_PERSON: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("0.9.2342.19200300.100.4.4");
}
pub mod rfc2079 {
pub const LABELED_URI: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.4.1.250.1.57");
pub const LABELED_URI_OBJECT: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.4.1.250.3.15");
}
pub mod rfc2164 {
pub const RFC_822_TO_X_400_MAPPING: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.4.1.453.7.1.1");
pub const X_400_TO_RFC_822_MAPPING: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.4.1.453.7.1.2");
pub const OMITTED_OR_ADDRESS_COMPONENT: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.4.1.453.7.1.3");
pub const MIXER_GATEWAY: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.4.1.453.7.1.4");
pub const ASSOCIATED_X_400_GATEWAY: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.4.1.453.7.2.3");
pub const ASSOCIATED_OR_ADDRESS: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.4.1.453.7.2.6");
pub const OR_ADDRESS_COMPONENT_TYPE: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.4.1.453.7.2.7");
pub const ASSOCIATED_INTERNET_GATEWAY: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.4.1.453.7.2.8");
pub const MCGAM_TABLES: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.4.1.453.7.2.9");
}
pub mod rfc2247 {
pub const DOMAIN_NAME_FORM: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.4.1.1466.345");
}
pub mod rfc2252 {
pub const PRESENTATION_ADDRESS_MATCH: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.5.13.22");
pub const PROTOCOL_INFORMATION_MATCH: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.5.13.24");
}
pub mod rfc2256 {
pub const KNOWLEDGE_INFORMATION: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.5.4.2");
pub const PRESENTATION_ADDRESS: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.5.4.29");
pub const SUPPORTED_APPLICATION_CONTEXT: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.5.4.30");
pub const PROTOCOL_INFORMATION: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.5.4.48");
pub const DMD_NAME: crate::ObjectIdentifier = crate::ObjectIdentifier::new_unwrap("2.5.4.54");
pub const STATE_OR_PROVINCE_NAME: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.5.4.8");
pub const STREET_ADDRESS: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.5.4.9");
pub const APPLICATION_ENTITY: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.5.6.12");
pub const DSA: crate::ObjectIdentifier = crate::ObjectIdentifier::new_unwrap("2.5.6.13");
pub const DMD: crate::ObjectIdentifier = crate::ObjectIdentifier::new_unwrap("2.5.6.20");
}
pub mod rfc2293 {
pub const SUBTREE: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.4.1.453.7.1.1");
pub const TABLE: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.4.1.453.7.1.2");
pub const TABLE_ENTRY: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.4.1.453.7.1.3");
pub const TEXT_TABLE_ENTRY: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.4.1.453.7.1.4");
pub const DISTINGUISHED_NAME_TABLE_ENTRY: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.4.1.453.7.1.5");
pub const TEXT_TABLE_KEY: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.4.1.453.7.2.1");
pub const TEXT_TABLE_VALUE: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.4.1.453.7.2.2");
pub const DISTINGUISHED_NAME_TABLE_KEY: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.4.1.453.7.2.3");
}
pub mod rfc2589 {
pub const DYNAMIC_OBJECT: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.4.1.1466.101.119.2");
pub const ENTRY_TTL: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.4.1.1466.101.119.3");
pub const DYNAMIC_SUBTREES: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.4.1.1466.101.119.4");
}
pub mod rfc2739 {
pub const CAL_CAL_URI: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.840.113556.1.4.478");
pub const CAL_FBURL: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.840.113556.1.4.479");
pub const CAL_CAPURI: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.840.113556.1.4.480");
pub const CAL_CAL_ADR_URI: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.840.113556.1.4.481");
pub const CAL_OTHER_CAL_UR_IS: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.840.113556.1.4.482");
pub const CAL_OTHER_FBUR_LS: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.840.113556.1.4.483");
pub const CAL_OTHER_CAPUR_IS: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.840.113556.1.4.484");
pub const CAL_OTHER_CAL_ADR_UR_IS: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.840.113556.1.4.485");
pub const CAL_ENTRY: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.840.113556.1.5.87");
}
pub mod rfc2798 {
pub const JPEG_PHOTO: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("0.9.2342.19200300.100.1.60");
pub const CAR_LICENSE: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.16.840.1.113730.3.1.1");
pub const DEPARTMENT_NUMBER: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.16.840.1.113730.3.1.2");
pub const USER_PKCS_12: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.16.840.1.113730.3.1.216");
pub const DISPLAY_NAME: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.16.840.1.113730.3.1.241");
pub const EMPLOYEE_NUMBER: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.16.840.1.113730.3.1.3");
pub const PREFERRED_LANGUAGE: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.16.840.1.113730.3.1.39");
pub const EMPLOYEE_TYPE: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.16.840.1.113730.3.1.4");
pub const USER_SMIME_CERTIFICATE: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.16.840.1.113730.3.1.40");
pub const INET_ORG_PERSON: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.16.840.1.113730.3.2.2");
}
pub mod rfc2985 {
pub const PKCS_9: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.840.113549.1.9");
pub const PKCS_9_MO: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.840.113549.1.9.0");
pub const PKCS_9_AT_EMAIL_ADDRESS: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.840.113549.1.9.1");
pub const PKCS_9_AT_ISSUER_AND_SERIAL_NUMBER: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.840.113549.1.9.10");
pub const PKCS_9_AT_PASSWORD_CHECK: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.840.113549.1.9.11");
pub const PKCS_9_AT_PUBLIC_KEY: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.840.113549.1.9.12");
pub const PKCS_9_AT_SIGNING_DESCRIPTION: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.840.113549.1.9.13");
pub const PKCS_9_AT_EXTENSION_REQUEST: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.840.113549.1.9.14");
pub const PKCS_9_AT_SMIME_CAPABILITIES: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.840.113549.1.9.15");
pub const SMIME: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.840.113549.1.9.16");
pub const PKCS_9_AT_UNSTRUCTURED_NAME: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.840.113549.1.9.2");
pub const PKCS_9_AT_FRIENDLY_NAME: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.840.113549.1.9.20");
pub const PKCS_9_AT_LOCAL_KEY_ID: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.840.113549.1.9.21");
pub const CERT_TYPES: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.840.113549.1.9.22");
pub const CRL_TYPES: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.840.113549.1.9.23");
pub const PKCS_9_OC: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.840.113549.1.9.24");
pub const PKCS_9_OC_PKCS_ENTITY: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.840.113549.1.9.24.1");
pub const PKCS_9_OC_NATURAL_PERSON: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.840.113549.1.9.24.2");
pub const PKCS_9_AT: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.840.113549.1.9.25");
pub const PKCS_9_AT_PKCS_15_TOKEN: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.840.113549.1.9.25.1");
pub const PKCS_9_AT_ENCRYPTED_PRIVATE_KEY_INFO: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.840.113549.1.9.25.2");
pub const PKCS_9_AT_RANDOM_NONCE: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.840.113549.1.9.25.3");
pub const PKCS_9_AT_SEQUENCE_NUMBER: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.840.113549.1.9.25.4");
pub const PKCS_9_AT_PKCS_7_PDU: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.840.113549.1.9.25.5");
pub const PKCS_9_SX: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.840.113549.1.9.26");
pub const PKCS_9_SX_PKCS_9_STRING: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.840.113549.1.9.26.1");
pub const PKCS_9_SX_SIGNING_TIME: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.840.113549.1.9.26.2");
pub const PKCS_9_MR: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.840.113549.1.9.27");
pub const PKCS_9_MR_CASE_IGNORE_MATCH: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.840.113549.1.9.27.1");
pub const PKCS_9_MR_SIGNING_TIME_MATCH: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.840.113549.1.9.27.2");
pub const PKCS_9_AT_CONTENT_TYPE: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.840.113549.1.9.3");
pub const PKCS_9_AT_MESSAGE_DIGEST: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.840.113549.1.9.4");
pub const PKCS_9_AT_SIGNING_TIME: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.840.113549.1.9.5");
pub const PKCS_9_AT_COUNTER_SIGNATURE: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.840.113549.1.9.6");
pub const PKCS_9_AT_CHALLENGE_PASSWORD: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.840.113549.1.9.7");
pub const PKCS_9_AT_UNSTRUCTURED_ADDRESS: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.840.113549.1.9.8");
pub const PKCS_9_AT_EXTENDED_CERTIFICATE_ATTRIBUTES: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.840.113549.1.9.9");
pub const IETF_AT: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.5.5.7.9");
pub const PKCS_9_AT_DATE_OF_BIRTH: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.5.5.7.9.1");
pub const PKCS_9_AT_PLACE_OF_BIRTH: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.5.5.7.9.2");
pub const PKCS_9_AT_GENDER: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.5.5.7.9.3");
pub const PKCS_9_AT_COUNTRY_OF_CITIZENSHIP: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.5.5.7.9.4");
pub const PKCS_9_AT_COUNTRY_OF_RESIDENCE: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.5.5.7.9.5");
pub const PKCS_9_AT_USER_PKCS_12: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.16.840.1.113730.3.1.216");
}
pub mod rfc3161 {
pub const ID_CT_TST_INFO: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.840.113549.1.9.16.1.4");
pub const ID_AA_TIME_STAMP_TOKEN: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.840.113549.1.9.16.2.14");
}
pub mod rfc3280 {
pub const EMAIL: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.840.113549.1.9.1");
pub const EMAIL_ADDRESS: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.840.113549.1.9.1");
pub const PSEUDONYM: crate::ObjectIdentifier = crate::ObjectIdentifier::new_unwrap("2.5.4.65");
}
pub mod rfc3296 {
pub const REF: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.16.840.1.113730.3.1.34");
pub const REFERRAL: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.16.840.1.113730.3.2.6");
}
pub mod rfc3671 {
pub const COLLECTIVE_ATTRIBUTE_SUBENTRIES: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.5.18.12");
pub const COLLECTIVE_EXCLUSIONS: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.5.18.7");
pub const COLLECTIVE_ATTRIBUTE_SUBENTRY: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.5.20.2");
pub const C_O: crate::ObjectIdentifier = crate::ObjectIdentifier::new_unwrap("2.5.4.10.1");
pub const C_OU: crate::ObjectIdentifier = crate::ObjectIdentifier::new_unwrap("2.5.4.11.1");
pub const C_POSTAL_ADDRESS: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.5.4.16.1");
pub const C_POSTAL_CODE: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.5.4.17.1");
pub const C_POST_OFFICE_BOX: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.5.4.18.1");
pub const C_PHYSICAL_DELIVERY_OFFICE: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.5.4.19.1");
pub const C_TELEPHONE_NUMBER: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.5.4.20.1");
pub const C_TELEX_NUMBER: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.5.4.21.1");
pub const C_FACSIMILE_TELEPHONE_NUMBER: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.5.4.23.1");
pub const C_INTERNATIONAL_ISDN_NUMBER: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.5.4.25.1");
pub const C_L: crate::ObjectIdentifier = crate::ObjectIdentifier::new_unwrap("2.5.4.7.1");
pub const C_ST: crate::ObjectIdentifier = crate::ObjectIdentifier::new_unwrap("2.5.4.8.1");
pub const C_STREET: crate::ObjectIdentifier = crate::ObjectIdentifier::new_unwrap("2.5.4.9.1");
}
pub mod rfc3672 {
pub const SUBENTRY: crate::ObjectIdentifier = crate::ObjectIdentifier::new_unwrap("2.5.17.0");
pub const ADMINISTRATIVE_ROLE: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.5.18.5");
pub const SUBTREE_SPECIFICATION: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.5.18.6");
pub const AUTONOMOUS_AREA: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.5.23.1");
pub const ACCESS_CONTROL_SPECIFIC_AREA: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.5.23.2");
pub const ACCESS_CONTROL_INNER_AREA: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.5.23.3");
pub const SUBSCHEMA_ADMIN_SPECIFIC_AREA: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.5.23.4");
pub const COLLECTIVE_ATTRIBUTE_SPECIFIC_AREA: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.5.23.5");
pub const COLLECTIVE_ATTRIBUTE_INNER_AREA: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.5.23.6");
}
pub mod rfc3687 {
pub const COMPONENT_FILTER_MATCH: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.36.79672281.1.13.2");
pub const RDN_MATCH: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.36.79672281.1.13.3");
pub const PRESENT_MATCH: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.36.79672281.1.13.5");
pub const ALL_COMPONENTS_MATCH: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.36.79672281.1.13.6");
pub const DIRECTORY_COMPONENTS_MATCH: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.2.36.79672281.1.13.7");
}
pub mod rfc3698 {
pub const STORED_PREFIX_MATCH: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("2.5.13.41");
}
pub mod rfc3703 {
pub const PCIM_POLICY: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.1.6.1.1");
pub const PCIM_RULE_ACTION_ASSOCIATION: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.1.6.1.10");
pub const PCIM_CONDITION_AUX_CLASS: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.1.6.1.11");
pub const PCIM_TPC_AUX_CLASS: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.1.6.1.12");
pub const PCIM_CONDITION_VENDOR_AUX_CLASS: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.1.6.1.13");
pub const PCIM_ACTION_AUX_CLASS: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.1.6.1.14");
pub const PCIM_ACTION_VENDOR_AUX_CLASS: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.1.6.1.15");
pub const PCIM_POLICY_INSTANCE: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.1.6.1.16");
pub const PCIM_ELEMENT_AUX_CLASS: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.1.6.1.17");
pub const PCIM_REPOSITORY: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.1.6.1.18");
pub const PCIM_REPOSITORY_AUX_CLASS: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.1.6.1.19");
pub const PCIM_GROUP: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.1.6.1.2");
pub const PCIM_REPOSITORY_INSTANCE: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.1.6.1.20");
pub const PCIM_SUBTREES_PTR_AUX_CLASS: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.1.6.1.21");
pub const PCIM_GROUP_CONTAINMENT_AUX_CLASS: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.1.6.1.22");
pub const PCIM_RULE_CONTAINMENT_AUX_CLASS: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.1.6.1.23");
pub const PCIM_GROUP_AUX_CLASS: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.1.6.1.3");
pub const PCIM_GROUP_INSTANCE: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.1.6.1.4");
pub const PCIM_RULE: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.1.6.1.5");
pub const PCIM_RULE_AUX_CLASS: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.1.6.1.6");
pub const PCIM_RULE_INSTANCE: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.1.6.1.7");
pub const PCIM_RULE_CONDITION_ASSOCIATION: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.1.6.1.8");
pub const PCIM_RULE_VALIDITY_ASSOCIATION: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.1.6.1.9");
pub const PCIM_RULE_VALIDITY_PERIOD_LIST: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.1.6.2.10");
pub const PCIM_RULE_USAGE: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.1.6.2.11");
pub const PCIM_RULE_PRIORITY: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.1.6.2.12");
pub const PCIM_RULE_MANDATORY: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.1.6.2.13");
pub const PCIM_RULE_SEQUENCED_ACTIONS: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.1.6.2.14");
pub const PCIM_ROLES: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.1.6.2.15");
pub const PCIM_CONDITION_GROUP_NUMBER: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.1.6.2.16");
pub const PCIM_CONDITION_NEGATED: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.1.6.2.17");
pub const PCIM_CONDITION_NAME: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.1.6.2.18");
pub const PCIM_CONDITION_DN: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.1.6.2.19");
pub const PCIM_VALIDITY_CONDITION_NAME: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.1.6.2.20");
pub const PCIM_TIME_PERIOD_CONDITION_DN: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.1.6.2.21");
pub const PCIM_ACTION_NAME: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.1.6.2.22");
pub const PCIM_ACTION_ORDER: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.1.6.2.23");
pub const PCIM_ACTION_DN: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.1.6.2.24");
pub const PCIM_TPC_TIME: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.1.6.2.25");
pub const PCIM_TPC_MONTH_OF_YEAR_MASK: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.1.6.2.26");
pub const PCIM_TPC_DAY_OF_MONTH_MASK: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.1.6.2.27");
pub const PCIM_TPC_DAY_OF_WEEK_MASK: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.1.6.2.28");
pub const PCIM_TPC_TIME_OF_DAY_MASK: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.1.6.2.29");
pub const PCIM_KEYWORDS: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.1.6.2.3");
pub const PCIM_TPC_LOCAL_OR_UTC_TIME: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.1.6.2.30");
pub const PCIM_VENDOR_CONSTRAINT_DATA: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.1.6.2.31");
pub const PCIM_VENDOR_CONSTRAINT_ENCODING: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.1.6.2.32");
pub const PCIM_VENDOR_ACTION_DATA: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.1.6.2.33");
pub const PCIM_VENDOR_ACTION_ENCODING: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.1.6.2.34");
pub const PCIM_POLICY_INSTANCE_NAME: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.1.6.2.35");
pub const PCIM_REPOSITORY_NAME: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.1.6.2.36");
pub const PCIM_SUBTREES_AUX_CONTAINED_SET: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.1.6.2.37");
pub const PCIM_GROUPS_AUX_CONTAINED_SET: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.1.6.2.38");
pub const PCIM_RULES_AUX_CONTAINED_SET: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.1.6.2.39");
pub const PCIM_GROUP_NAME: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.1.6.2.4");
pub const PCIM_RULE_NAME: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.1.6.2.5");
pub const PCIM_RULE_ENABLED: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.1.6.2.6");
pub const PCIM_RULE_CONDITION_LIST_TYPE: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.1.6.2.7");
pub const PCIM_RULE_CONDITION_LIST: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.1.6.2.8");
pub const PCIM_RULE_ACTION_LIST: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.1.6.2.9");
}
pub mod rfc3712 {
pub const PRINTER_XRI_SUPPORTED: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.18.0.2.4.1107");
pub const PRINTER_ALIASES: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.18.0.2.4.1108");
pub const PRINTER_CHARSET_CONFIGURED: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.18.0.2.4.1109");
pub const PRINTER_JOB_PRIORITY_SUPPORTED: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.18.0.2.4.1110");
pub const PRINTER_JOB_K_OCTETS_SUPPORTED: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.18.0.2.4.1111");
pub const PRINTER_CURRENT_OPERATOR: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.18.0.2.4.1112");
pub const PRINTER_SERVICE_PERSON: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.18.0.2.4.1113");
pub const PRINTER_DELIVERY_ORIENTATION_SUPPORTED: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.18.0.2.4.1114");
pub const PRINTER_STACKING_ORDER_SUPPORTED: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.18.0.2.4.1115");
pub const PRINTER_OUTPUT_FEATURES_SUPPORTED: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.18.0.2.4.1116");
pub const PRINTER_MEDIA_LOCAL_SUPPORTED: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.18.0.2.4.1117");
pub const PRINTER_COPIES_SUPPORTED: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.18.0.2.4.1118");
pub const PRINTER_NATURAL_LANGUAGE_CONFIGURED: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.18.0.2.4.1119");
pub const PRINTER_PRINT_QUALITY_SUPPORTED: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.18.0.2.4.1120");
pub const PRINTER_RESOLUTION_SUPPORTED: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.18.0.2.4.1121");
pub const PRINTER_MEDIA_SUPPORTED: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.18.0.2.4.1122");
pub const PRINTER_SIDES_SUPPORTED: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.18.0.2.4.1123");
pub const PRINTER_NUMBER_UP_SUPPORTED: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.18.0.2.4.1124");
pub const PRINTER_FINISHINGS_SUPPORTED: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.18.0.2.4.1125");
pub const PRINTER_PAGES_PER_MINUTE_COLOR: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.18.0.2.4.1126");
pub const PRINTER_PAGES_PER_MINUTE: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.18.0.2.4.1127");
pub const PRINTER_COMPRESSION_SUPPORTED: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.18.0.2.4.1128");
pub const PRINTER_COLOR_SUPPORTED: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.18.0.2.4.1129");
pub const PRINTER_DOCUMENT_FORMAT_SUPPORTED: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.18.0.2.4.1130");
pub const PRINTER_CHARSET_SUPPORTED: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.18.0.2.4.1131");
pub const PRINTER_MULTIPLE_DOCUMENT_JOBS_SUPPORTED: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.18.0.2.4.1132");
pub const PRINTER_IPP_VERSIONS_SUPPORTED: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.18.0.2.4.1133");
pub const PRINTER_MORE_INFO: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.18.0.2.4.1134");
pub const PRINTER_NAME: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.18.0.2.4.1135");
pub const PRINTER_LOCATION: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.18.0.2.4.1136");
pub const PRINTER_GENERATED_NATURAL_LANGUAGE_SUPPORTED: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.18.0.2.4.1137");
pub const PRINTER_MAKE_AND_MODEL: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.18.0.2.4.1138");
pub const PRINTER_INFO: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.18.0.2.4.1139");
pub const PRINTER_URI: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.18.0.2.4.1140");
pub const PRINTER_LPR: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.18.0.2.6.253");
pub const SLP_SERVICE_PRINTER: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.18.0.2.6.254");
pub const PRINTER_SERVICE: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.18.0.2.6.255");
pub const PRINTER_IPP: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.18.0.2.6.256");
pub const PRINTER_SERVICE_AUX_CLASS: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.18.0.2.6.257");
pub const PRINTER_ABSTRACT: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.18.0.2.6.258");
}
pub mod rfc4104 {
pub const PCELS_POLICY_SET: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.1.9.1.1");
pub const PCELS_ACTION_ASSOCIATION: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.1.9.1.10");
pub const PCELS_SIMPLE_CONDITION_AUX_CLASS: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.1.9.1.11");
pub const PCELS_COMPOUND_CONDITION_AUX_CLASS: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.1.9.1.12");
pub const PCELS_COMPOUND_FILTER_CONDITION_AUX_CLASS: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.1.9.1.13");
pub const PCELS_SIMPLE_ACTION_AUX_CLASS: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.1.9.1.14");
pub const PCELS_COMPOUND_ACTION_AUX_CLASS: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.1.9.1.15");
pub const PCELS_VARIABLE: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.1.9.1.16");
pub const PCELS_EXPLICIT_VARIABLE_AUX_CLASS: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.1.9.1.17");
pub const PCELS_IMPLICIT_VARIABLE_AUX_CLASS: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.1.9.1.18");
pub const PCELS_SOURCE_I_PV_4_VARIABLE_AUX_CLASS: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.1.9.1.19");
pub const PCELS_POLICY_SET_ASSOCIATION: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.1.9.1.2");
pub const PCELS_SOURCE_I_PV_6_VARIABLE_AUX_CLASS: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.1.9.1.20");
pub const PCELS_DESTINATION_I_PV_4_VARIABLE_AUX_CLASS: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.1.9.1.21");
pub const PCELS_DESTINATION_I_PV_6_VARIABLE_AUX_CLASS: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.1.9.1.22");
pub const PCELS_SOURCE_PORT_VARIABLE_AUX_CLASS: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.1.9.1.23");
pub const PCELS_DESTINATION_PORT_VARIABLE_AUX_CLASS: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.1.9.1.24");
pub const PCELS_IP_PROTOCOL_VARIABLE_AUX_CLASS: crate::ObjectIdentifier =
crate::ObjectIdentifier::new_unwrap("1.3.6.1.1.9.1.25");