-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdumpasn1.cfg
8006 lines (6055 loc) · 180 KB
/
dumpasn1.cfg
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
# dumpasn1 Object Identifier configuration file, available from
# http://www.cs.auckland.ac.nz/~pgut001/dumpasn1.cfg. This is read by
# dumpasn1.c and is used to display information on Object Identifiers found in
# ASN.1 objects. This is merely a list of things that you might conceivably
# find in use somewhere, and should in no way be taken as a guide to which OIDs
# to use - many of these will never been seen in the wild, or should be shot on
# sight if encountered.
#
# The format of this file is as follows:
#
# - All blank lines and lines beginning with a '#' are ignored.
# - OIDs are described by a set of attributes, of which at least the 'OID' and
# 'Description' must be present. Optional attributes are a 'Comment' and a
# 'Warning' (to indicate that dumpasn1 will display a warning if this OID is
# encountered).
# - Attributes are listed one per line. The first attribute should be an 'OID'
# attribute since this is used to denote the start of a new OID description.
# The other attributes may be given in any order.
# - Offical attribute names vary widely depending on who's creating them. In
# an attempt at avoiding a confusing mass of naming styles, this file aims
# for consistency by normalising the naming for attributes, however this
# means that the name used here may not entirely match the actual name.
#
# See the rest of this file for examples of what an OID description should look
# like.
# Deutsche Telekom/Telesec
OID = 0 2 262 1 10
Comment = Deutsche Telekom
Description = Telesec
OID = 0 2 262 1 10 0
Comment = Telesec
Description = extension
OID = 0 2 262 1 10 1
Comment = Telesec
Description = mechanism
OID = 0 2 262 1 10 1 0
Comment = Telesec mechanism
Description = authentication
OID = 0 2 262 1 10 1 0 1
Comment = Telesec authentication
Description = passwordAuthentication
OID = 0 2 262 1 10 1 0 2
Comment = Telesec authentication
Description = protectedPasswordAuthentication
OID = 0 2 262 1 10 1 0 3
Comment = Telesec authentication
Description = oneWayX509Authentication
OID = 0 2 262 1 10 1 0 4
Comment = Telesec authentication
Description = twoWayX509Authentication
OID = 0 2 262 1 10 1 0 5
Comment = Telesec authentication
Description = threeWayX509Authentication
OID = 0 2 262 1 10 1 0 6
Comment = Telesec authentication
Description = oneWayISO9798Authentication
OID = 0 2 262 1 10 1 0 7
Comment = Telesec authentication
Description = twoWayISO9798Authentication
OID = 0 2 262 1 10 1 0 8
Comment = Telesec authentication
Description = telekomAuthentication
OID = 0 2 262 1 10 1 1
Comment = Telesec mechanism
Description = signature
OID = 0 2 262 1 10 1 1 1
Comment = Telesec mechanism
Description = md4WithRSAAndISO9697
OID = 0 2 262 1 10 1 1 2
Comment = Telesec mechanism
Description = md4WithRSAAndTelesecSignatureStandard
OID = 0 2 262 1 10 1 1 3
Comment = Telesec mechanism
Description = md5WithRSAAndISO9697
OID = 0 2 262 1 10 1 1 4
Comment = Telesec mechanism
Description = md5WithRSAAndTelesecSignatureStandard
# PKCS #1 signature with RIPEMD-160
OID = 0 2 262 1 10 1 1 5
Comment = Telesec mechanism
Description = ripemd160WithRSAAndTelekomSignatureStandard
# RIPEMD-160 with raw RSA (ie no padding, just 160 bytes encrypted) signature
OID = 0 2 262 1 10 1 1 9
Comment = Telesec signature
Description = hbciRsaSignature
OID = 0 2 262 1 10 1 2
Comment = Telesec mechanism
Description = encryption
# Specially recommended by the NSA for German use
OID = 0 2 262 1 10 1 2 0
Comment = Telesec encryption
Description = none
OID = 0 2 262 1 10 1 2 1
Comment = Telesec encryption
Description = rsaTelesec
OID = 0 2 262 1 10 1 2 2
Comment = Telesec encryption
Description = des
OID = 0 2 262 1 10 1 2 2 1
Comment = Telesec encryption
Description = desECB
OID = 0 2 262 1 10 1 2 2 2
Comment = Telesec encryption
Description = desCBC
OID = 0 2 262 1 10 1 2 2 3
Comment = Telesec encryption
Description = desOFB
OID = 0 2 262 1 10 1 2 2 4
Comment = Telesec encryption
Description = desCFB8
OID = 0 2 262 1 10 1 2 2 5
Comment = Telesec encryption
Description = desCFB64
OID = 0 2 262 1 10 1 2 3
Comment = Telesec encryption
Description = des3
OID = 0 2 262 1 10 1 2 3 1
Comment = Telesec encryption
Description = des3ECB
OID = 0 2 262 1 10 1 2 3 2
Comment = Telesec encryption
Description = des3CBC
OID = 0 2 262 1 10 1 2 3 3
Comment = Telesec encryption
Description = des3OFB
OID = 0 2 262 1 10 1 2 3 4
Comment = Telesec encryption
Description = des3CFB8
OID = 0 2 262 1 10 1 2 3 5
Comment = Telesec encryption
Description = des3CFB64
OID = 0 2 262 1 10 1 2 4
Comment = Telesec encryption
Description = magenta
OID = 0 2 262 1 10 1 2 5
Comment = Telesec encryption
Description = idea
OID = 0 2 262 1 10 1 2 5 1
Comment = Telesec encryption
Description = ideaECB
OID = 0 2 262 1 10 1 2 5 2
Comment = Telesec encryption
Description = ideaCBC
OID = 0 2 262 1 10 1 2 5 3
Comment = Telesec encryption
Description = ideaOFB
OID = 0 2 262 1 10 1 2 5 4
Comment = Telesec encryption
Description = ideaCFB8
OID = 0 2 262 1 10 1 2 5 5
Comment = Telesec encryption
Description = ideaCFB64
OID = 0 2 262 1 10 1 3
Comment = Telesec mechanism
Description = oneWayFunction
OID = 0 2 262 1 10 1 3 1
Comment = Telesec one-way function
Description = md4
OID = 0 2 262 1 10 1 3 2
Comment = Telesec one-way function
Description = md5
OID = 0 2 262 1 10 1 3 3
Comment = Telesec one-way function
Description = sqModNX509
OID = 0 2 262 1 10 1 3 4
Comment = Telesec one-way function
Description = sqModNISO
OID = 0 2 262 1 10 1 3 5
Comment = Telesec one-way function
Description = ripemd128
OID = 0 2 262 1 10 1 3 6
Comment = Telesec one-way function
Description = hashUsingBlockCipher
OID = 0 2 262 1 10 1 3 7
Comment = Telesec one-way function
Description = mac
OID = 0 2 262 1 10 1 3 8
Comment = Telesec one-way function
Description = ripemd160
OID = 0 2 262 1 10 1 4
Comment = Telesec mechanism
Description = fecFunction
OID = 0 2 262 1 10 1 4 1
Comment = Telesec mechanism
Description = reedSolomon
OID = 0 2 262 1 10 2
Comment = Telesec
Description = module
OID = 0 2 262 1 10 2 0
Comment = Telesec module
Description = algorithms
OID = 0 2 262 1 10 2 1
Comment = Telesec module
Description = attributeTypes
OID = 0 2 262 1 10 2 2
Comment = Telesec module
Description = certificateTypes
OID = 0 2 262 1 10 2 3
Comment = Telesec module
Description = messageTypes
OID = 0 2 262 1 10 2 4
Comment = Telesec module
Description = plProtocol
OID = 0 2 262 1 10 2 5
Comment = Telesec module
Description = smeAndComponentsOfSme
OID = 0 2 262 1 10 2 6
Comment = Telesec module
Description = fec
OID = 0 2 262 1 10 2 7
Comment = Telesec module
Description = usefulDefinitions
OID = 0 2 262 1 10 2 8
Comment = Telesec module
Description = stefiles
OID = 0 2 262 1 10 2 9
Comment = Telesec module
Description = sadmib
OID = 0 2 262 1 10 2 10
Comment = Telesec module
Description = electronicOrder
OID = 0 2 262 1 10 2 11
Comment = Telesec module
Description = telesecTtpAsymmetricApplication
OID = 0 2 262 1 10 2 12
Comment = Telesec module
Description = telesecTtpBasisApplication
OID = 0 2 262 1 10 2 13
Comment = Telesec module
Description = telesecTtpMessages
OID = 0 2 262 1 10 2 14
Comment = Telesec module
Description = telesecTtpTimeStampApplication
OID = 0 2 262 1 10 3
Comment = Telesec
Description = objectClass
OID = 0 2 262 1 10 3 0
Comment = Telesec object class
Description = telesecOtherName
OID = 0 2 262 1 10 3 1
Comment = Telesec object class
Description = directory
OID = 0 2 262 1 10 3 2
Comment = Telesec object class
Description = directoryType
OID = 0 2 262 1 10 3 3
Comment = Telesec object class
Description = directoryGroup
OID = 0 2 262 1 10 3 4
Comment = Telesec object class
Description = directoryUser
OID = 0 2 262 1 10 3 5
Comment = Telesec object class
Description = symmetricKeyEntry
OID = 0 2 262 1 10 4
Comment = Telesec
Description = package
OID = 0 2 262 1 10 5
Comment = Telesec
Description = parameter
OID = 0 2 262 1 10 6
Comment = Telesec
Description = nameBinding
OID = 0 2 262 1 10 7
Comment = Telesec
Description = attribute
OID = 0 2 262 1 10 7 0
Comment = Telesec attribute
Description = applicationGroupIdentifier
OID = 0 2 262 1 10 7 1
Comment = Telesec attribute
Description = certificateType
OID = 0 2 262 1 10 7 2
Comment = Telesec attribute
Description = telesecCertificate
OID = 0 2 262 1 10 7 3
Comment = Telesec attribute
Description = certificateNumber
OID = 0 2 262 1 10 7 4
Comment = Telesec attribute
Description = certificateRevocationList
OID = 0 2 262 1 10 7 5
Comment = Telesec attribute
Description = creationDate
OID = 0 2 262 1 10 7 6
Comment = Telesec attribute
Description = issuer
OID = 0 2 262 1 10 7 7
Comment = Telesec attribute
Description = namingAuthority
OID = 0 2 262 1 10 7 8
Comment = Telesec attribute
Description = publicKeyDirectory
OID = 0 2 262 1 10 7 9
Comment = Telesec attribute
Description = securityDomain
OID = 0 2 262 1 10 7 10
Comment = Telesec attribute
Description = subject
OID = 0 2 262 1 10 7 11
Comment = Telesec attribute
Description = timeOfRevocation
OID = 0 2 262 1 10 7 12
Comment = Telesec attribute
Description = userGroupReference
OID = 0 2 262 1 10 7 13
Comment = Telesec attribute
Description = validity
OID = 0 2 262 1 10 7 14
Comment = Telesec attribute
Description = zert93
# It really is called that
OID = 0 2 262 1 10 7 15
Comment = Telesec attribute
Description = securityMessEnv
OID = 0 2 262 1 10 7 16
Comment = Telesec attribute
Description = anonymizedPublicKeyDirectory
OID = 0 2 262 1 10 7 17
Comment = Telesec attribute
Description = telesecGivenName
OID = 0 2 262 1 10 7 18
Comment = Telesec attribute
Description = nameAdditions
OID = 0 2 262 1 10 7 19
Comment = Telesec attribute
Description = telesecPostalCode
OID = 0 2 262 1 10 7 20
Comment = Telesec attribute
Description = nameDistinguisher
OID = 0 2 262 1 10 7 21
Comment = Telesec attribute
Description = telesecCertificateList
OID = 0 2 262 1 10 7 22
Comment = Telesec attribute
Description = teletrustCertificateList
OID = 0 2 262 1 10 7 23
Comment = Telesec attribute
Description = x509CertificateList
OID = 0 2 262 1 10 7 24
Comment = Telesec attribute
Description = timeOfIssue
OID = 0 2 262 1 10 7 25
Comment = Telesec attribute
Description = physicalCardNumber
OID = 0 2 262 1 10 7 26
Comment = Telesec attribute
Description = fileType
OID = 0 2 262 1 10 7 27
Comment = Telesec attribute
Description = ctlFileIsArchive
OID = 0 2 262 1 10 7 28
Comment = Telesec attribute
Description = emailAddress
OID = 0 2 262 1 10 7 29
Comment = Telesec attribute
Description = certificateTemplateList
OID = 0 2 262 1 10 7 30
Comment = Telesec attribute
Description = directoryName
OID = 0 2 262 1 10 7 31
Comment = Telesec attribute
Description = directoryTypeName
OID = 0 2 262 1 10 7 32
Comment = Telesec attribute
Description = directoryGroupName
OID = 0 2 262 1 10 7 33
Comment = Telesec attribute
Description = directoryUserName
OID = 0 2 262 1 10 7 34
Comment = Telesec attribute
Description = revocationFlag
OID = 0 2 262 1 10 7 35
Comment = Telesec attribute
Description = symmetricKeyEntryName
OID = 0 2 262 1 10 7 36
Comment = Telesec attribute
Description = glNumber
OID = 0 2 262 1 10 7 37
Comment = Telesec attribute
Description = goNumber
OID = 0 2 262 1 10 7 38
Comment = Telesec attribute
Description = gKeyData
OID = 0 2 262 1 10 7 39
Comment = Telesec attribute
Description = zKeyData
OID = 0 2 262 1 10 7 40
Comment = Telesec attribute
Description = ktKeyData
OID = 0 2 262 1 10 7 41
Comment = Telesec attribute
Description = ktKeyNumber
OID = 0 2 262 1 10 7 51
Comment = Telesec attribute
Description = timeOfRevocationGen
OID = 0 2 262 1 10 7 52
Comment = Telesec attribute
Description = liabilityText
OID = 0 2 262 1 10 8
Comment = Telesec
Description = attributeGroup
OID = 0 2 262 1 10 9
Comment = Telesec
Description = action
OID = 0 2 262 1 10 10
Comment = Telesec
Description = notification
OID = 0 2 262 1 10 11
Comment = Telesec
Description = snmp-mibs
OID = 0 2 262 1 10 11 1
Comment = Telesec SNMP MIBs
Description = securityApplication
OID = 0 2 262 1 10 12
Comment = Telesec
Description = certAndCrlExtensionDefinitions
# ISIS-MTT SigG-Profile: Indicates that an attribute certificate
# exists, which limits the usability of this public key certificate.
OID = 0 2 262 1 10 12 0
Comment = Telesec cert/CRL extension
Description = liabilityLimitationFlag
OID = 0 2 262 1 10 12 1
Comment = Telesec cert/CRL extension
Description = telesecCertIdExt
OID = 0 2 262 1 10 12 2
Comment = Telesec cert/CRL extension
Description = Telesec policyIdentifier
OID = 0 2 262 1 10 12 3
Comment = Telesec cert/CRL extension
Description = telesecPolicyQualifierID
OID = 0 2 262 1 10 12 4
Comment = Telesec cert/CRL extension
Description = telesecCRLFilteredExt
OID = 0 2 262 1 10 12 5
Comment = Telesec cert/CRL extension
Description = telesecCRLFilterExt
OID = 0 2 262 1 10 12 6
Comment = Telesec cert/CRL extension
Description = telesecNamingAuthorityExt
# BSI e-Pass (TR-03110/TR-03111). TA = Terminal Authentication (Passport
# PKI with monthly global cert updates), CA = Chip Authentication
# (Auth using static [EC]DH).
OID = 0 4 0 127 0 7
Comment = BSI TR-03110/TR-03111
Description = bsi
OID = 0 4 0 127 0 7 1
Comment = BSI TR-03111
Description = bsiEcc
OID = 0 4 0 127 0 7 1 1
Comment = BSI TR-03111
Description = bsifieldType
OID = 0 4 0 127 0 7 1 1 1
Comment = BSI TR-03111
Description = bsiPrimeField
OID = 0 4 0 127 0 7 1 1 2
Comment = BSI TR-03111
Description = bsiCharacteristicTwoField
OID = 0 4 0 127 0 7 1 1 2 3
Comment = BSI TR-03111
Description = bsiCharacteristicTwoBasis
OID = 0 4 0 127 0 7 1 1 2 3 1
Comment = BSI TR-03111
Description = bsiGnBasis
OID = 0 4 0 127 0 7 1 1 2 3 2
Comment = BSI TR-03111
Description = bsiTpBasis
OID = 0 4 0 127 0 7 1 1 2 3 3
Comment = BSI TR-03111
Description = bsiPpBasis
OID = 0 4 0 127 0 7 1 1 4 1
Comment = BSI TR-03111
Description = bsiEcdsaSignatures
OID = 0 4 0 127 0 7 1 1 4 1 1
Comment = BSI TR-03111
Description = bsiEcdsaWithSHA1
OID = 0 4 0 127 0 7 1 1 4 1 2
Comment = BSI TR-03111
Description = bsiEcdsaWithSHA224
OID = 0 4 0 127 0 7 1 1 4 1 3
Comment = BSI TR-03111
Description = bsiEcdsaWithSHA256
OID = 0 4 0 127 0 7 1 1 4 1 4
Comment = BSI TR-03111
Description = bsiEcdsaWithSHA384
OID = 0 4 0 127 0 7 1 1 4 1 5
Comment = BSI TR-03111
Description = bsiEcdsaWithSHA512
OID = 0 4 0 127 0 7 1 1 4 1 6
Comment = BSI TR-03111
Description = bsiEcdsaWithRIPEMD160
OID = 0 4 0 127 0 7 1 2
Comment = BSI TR-03111
Description = bsiEcKeyType
OID = 0 4 0 127 0 7 1 2 1
Comment = BSI TR-03111
Description = bsiEcPublicKey
OID = 0 4 0 127 0 7 1 5 1
Comment = BSI TR-03111
Description = bsiKaeg
OID = 0 4 0 127 0 7 1 5 1 1
Comment = BSI TR-03111
Description = bsiKaegWithX963KDF
OID = 0 4 0 127 0 7 1 5 1 2
Comment = BSI TR-03111
Description = bsiKaegWith3DESKDF
OID = 0 4 0 127 0 7 2 2 1
Comment = BSI TR-03110. Formerly known as bsiCA, now moved to ...2.2.3.x
Description = bsiPK
OID = 0 4 0 127 0 7 2 2 1 1
Comment = BSI TR-03110. Formerly known as bsiCA_DH, now moved to ...2.2.3.x
Description = bsiPK_DH
OID = 0 4 0 127 0 7 2 2 1 2
Comment = BSI TR-03110. Formerly known as bsiCA_ECDH, now moved to ...2.2.3.x
Description = bsiPK_ECDH
OID = 0 4 0 127 0 7 2 2 2
Comment = BSI TR-03110
Description = bsiTA
OID = 0 4 0 127 0 7 2 2 2 1
Comment = BSI TR-03110
Description = bsiTA_RSA
OID = 0 4 0 127 0 7 2 2 2 1 1
Comment = BSI TR-03110
Description = bsiTA_RSAv1_5_SHA1
OID = 0 4 0 127 0 7 2 2 2 1 2
Comment = BSI TR-03110
Description = bsiTA_RSAv1_5_SHA256
OID = 0 4 0 127 0 7 2 2 2 1 3
Comment = BSI TR-03110
Description = bsiTA_RSAPSS_SHA1
OID = 0 4 0 127 0 7 2 2 2 1 4
Comment = BSI TR-03110
Description = bsiTA_RSAPSS_SHA256
OID = 0 4 0 127 0 7 2 2 2 2
Comment = BSI TR-03110
Description = bsiTA_ECDSA
OID = 0 4 0 127 0 7 2 2 2 2 1
Comment = BSI TR-03110
Description = bsiTA_ECDSA_SHA1
OID = 0 4 0 127 0 7 2 2 2 2 2
Comment = BSI TR-03110
Description = bsiTA_ECDSA_SHA224
OID = 0 4 0 127 0 7 2 2 2 2 3
Comment = BSI TR-03110
Description = bsiTA_ECDSA_SHA256
OID = 0 4 0 127 0 7 2 2 3
Comment = BSI TR-03110
Description = bsiCA
OID = 0 4 0 127 0 7 2 2 3 1
Comment = BSI TR-03110
Description = bsiCA_DH
OID = 0 4 0 127 0 7 2 2 3 2
Comment = BSI TR-03110
Description = bsiCA_ECDH
OID = 0 4 0 127 0 7 3 1 2 1
Comment = BSI TR-03110
Description = bsiRoleEAC
# ETSI TS 101 862 V1.3.3 (2006-01), Qualified certificate profile
OID = 0 4 0 1862
Comment = ETSI TS 101 862 qualified certificates
Description = etsiQcsProfile
OID = 0 4 0 1862 1
Comment = ETSI TS 101 862 qualified certificates
Description = etsiQcs
OID = 0 4 0 1862 1 1
Comment = ETSI TS 101 862 qualified certificates
Description = etsiQcsCompliance
OID = 0 4 0 1862 1 2
Comment = ETSI TS 101 862 qualified certificates
Description = etsiQcsLimitValue
OID = 0 4 0 1862 1 3
Comment = ETSI TS 101 862 qualified certificates
Description = etsiQcsRetentionPeriod
OID = 0 4 0 1862 1 4
Comment = ETSI TS 101 862 qualified certificates
Description = etsiQcsQcSSCD
# RFC 1274 (X.500 attribute collection from the UK, thus the weird OID).
OID = 0 9 2342 19200300 100 1 1
Comment = Some oddball X.500 attribute collection
Description = userID
OID = 0 9 2342 19200300 100 1 3
Comment = Some oddball X.500 attribute collection
Description = rfc822Mailbox
# RFC 2247, How to Kludge an FQDN as a DN (or words to that effect), another
# fine product of the UK (also present in the above mentioned RFC 1274).
OID = 0 9 2342 19200300 100 1 25
Comment = Men are from Mars, this OID is from Pluto
Description = domainComponent
# ISO standards
OID = 1 0 10118 3 0 49
Comment = ISO 10118-3 hash function
Description = ripemd160
OID = 1 0 10118 3 0 50
Comment = ISO 10118-3 hash function
Description = ripemd128
OID = 1 0 10118 3 0 55
Comment = ISO 10118-3 hash function
Description = whirlpool
# Queensland Government PKI
OID = 1 2 36 1 3 1 1 1
Comment = Queensland Government PKI
Description = qgpki
OID = 1 2 36 1 3 1 1 1 1
Comment = QGPKI policies
Description = qgpkiPolicies
OID = 1 2 36 1 3 1 1 1 1 1
Comment = QGPKI policy
Description = qgpkiMedIntermedCA
OID = 1 2 36 1 3 1 1 1 1 1 1
Comment = QGPKI policy
Description = qgpkiMedIntermedIndividual
OID = 1 2 36 1 3 1 1 1 1 1 2
Comment = QGPKI policy
Description = qgpkiMedIntermedDeviceControl
OID = 1 2 36 1 3 1 1 1 1 1 3
Comment = QGPKI policy
Description = qgpkiMedIntermedDevice
OID = 1 2 36 1 3 1 1 1 1 1 4
Comment = QGPKI policy
Description = qgpkiMedIntermedAuthorisedParty
OID = 1 2 36 1 3 1 1 1 1 1 5
Comment = QGPKI policy
Description = qgpkiMedIntermedDeviceSystem
OID = 1 2 36 1 3 1 1 1 1 1 2
Comment = QGPKI policy
Description = qgpkiMedIntermedDeviceControl
OID = 1 2 36 1 3 1 1 1 1 1 2
Comment = QGPKI policy
Description = qgpkiMedIntermedDeviceControl
OID = 1 2 36 1 3 1 1 1 1 2
Comment = QGPKI policy
Description = qgpkiMedIssuingCA
OID = 1 2 36 1 3 1 1 1 1 2 1
Comment = QGPKI policy
Description = qgpkiMedIssuingIndividual
OID = 1 2 36 1 3 1 1 1 1 2 2
Comment = QGPKI policy
Description = qgpkiMedIssuingDeviceControl
OID = 1 2 36 1 3 1 1 1 1 2 3
Comment = QGPKI policy
Description = qgpkiMedIssuingDevice
OID = 1 2 36 1 3 1 1 1 1 2 4
Comment = QGPKI policy
Description = qgpkiMedIssuingAuthorisedParty
OID = 1 2 36 1 3 1 1 1 1 2 5
Comment = QGPKI policy
Description = qgpkiMedIssuingClientAuth
OID = 1 2 36 1 3 1 1 1 1 2 6
Comment = QGPKI policy
Description = qgpkiMedIssuingServerAuth
OID = 1 2 36 1 3 1 1 1 1 2 7
Comment = QGPKI policy
Description = qgpkiMedIssuingDataProt
OID = 1 2 36 1 3 1 1 1 1 2 8
Comment = QGPKI policy
Description = qgpkiMedIssuingTokenAuth
OID = 1 2 36 1 3 1 1 1 1 3
Comment = QGPKI policy
Description = qgpkiBasicIntermedCA
OID = 1 2 36 1 3 1 1 1 1 3 1
Comment = QGPKI policy
Description = qgpkiBasicIntermedDeviceSystem
OID = 1 2 36 1 3 1 1 1 1 4
Comment = QGPKI policy
Description = qgpkiBasicIssuingCA
OID = 1 2 36 1 3 1 1 1 1 4 1
Comment = QGPKI policy
Description = qgpkiBasicIssuingClientAuth
OID = 1 2 36 1 3 1 1 1 1 4 2
Comment = QGPKI policy
Description = qgpkiBasicIssuingServerAuth
OID = 1 2 36 1 3 1 1 1 1 4 3
Comment = QGPKI policy
Description = qgpkiBasicIssuingDataSigning
OID = 1 2 36 1 3 1 1 1 2
Comment = QGPKI assurance level
Description = qgpkiAssuranceLevel
OID = 1 2 36 1 3 1 1 1 2 1
Comment = QGPKI assurance level
Description = qgpkiAssuranceRudimentary
OID = 1 2 36 1 3 1 1 1 2 2
Comment = QGPKI assurance level
Description = qgpkiAssuranceBasic
OID = 1 2 36 1 3 1 1 1 2 3
Comment = QGPKI assurance level
Description = qgpkiAssuranceMedium
OID = 1 2 36 1 3 1 1 1 2 4
Comment = QGPKI assurance level
Description = qgpkiAssuranceHigh
OID = 1 2 36 1 3 1 1 1 3
Comment = QGPKI policies
Description = qgpkiCertFunction
OID = 1 2 36 1 3 1 1 1 3 1
Comment = QGPKI policies
Description = qgpkiFunctionIndividual
OID = 1 2 36 1 3 1 1 1 3 2
Comment = QGPKI policies
Description = qgpkiFunctionDevice
OID = 1 2 36 1 3 1 1 1 3 3
Comment = QGPKI policies
Description = qgpkiFunctionAuthorisedParty
OID = 1 2 36 1 3 1 1 1 3 4
Comment = QGPKI policies
Description = qgpkiFunctionDeviceControl
OID = 1 2 36 1 3 1 2
Comment = Queensland Police PKI
Description = qpspki
OID = 1 2 36 1 3 1 2 1
Comment = Queensland Police PKI
Description = qpspkiPolicies
OID = 1 2 36 1 3 1 2 1 2
Comment = Queensland Police PKI
Description = qpspkiPolicyBasic
OID = 1 2 36 1 3 1 2 1 3
Comment = Queensland Police PKI
Description = qpspkiPolicyMedium
OID = 1 2 36 1 3 1 2 1 4
Comment = Queensland Police PKI
Description = qpspkiPolicyHigh
OID = 1 2 36 1 3 1 3 2
Comment = Queensland Transport PKI
Description = qtmrpki
OID = 1 2 36 1 3 1 3 2 1
Comment = Queensland Transport PKI
Description = qtmrpkiPolicies
OID = 1 2 36 1 3 1 3 2 2
Comment = Queensland Transport PKI
Description = qtmrpkiPurpose
OID = 1 2 36 1 3 1 3 2 2 1
Comment = Queensland Transport PKI purpose
Description = qtmrpkiIndividual
OID = 1 2 36 1 3 1 3 2 2 2
Comment = Queensland Transport PKI purpose
Description = qtmrpkiDeviceControl
OID = 1 2 36 1 3 1 3 2 2 3
Comment = Queensland Transport PKI purpose
Description = qtmrpkiDevice
OID = 1 2 36 1 3 1 3 2 2 4
Comment = Queensland Transport PKI purpose
Description = qtmrpkiAuthorisedParty
OID = 1 2 36 1 3 1 3 2 2 5
Comment = Queensland Transport PKI purpose
Description = qtmrpkiDeviceSystem
OID = 1 2 36 1 3 1 3 2 3
Comment = Queensland Transport PKI
Description = qtmrpkiDevice
OID = 1 2 36 1 3 1 3 2 3 1
Comment = Queensland Transport PKI device
Description = qtmrpkiDriverLicense
OID = 1 2 36 1 3 1 3 2 3 2
Comment = Queensland Transport PKI device
Description = qtmrpkiIndustryAuthority
OID = 1 2 36 1 3 1 3 2 3 3
Comment = Queensland Transport PKI device
Description = qtmrpkiMarineLicense