forked from rdesktop/rdesktop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pkix_asn1_tab.c
920 lines (918 loc) · 34.3 KB
/
pkix_asn1_tab.c
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
#if HAVE_CONFIG_H
# include "config.h"
#endif
#include <libtasn1.h>
const asn1_static_node pkix_asn1_tab[] = {
{ "PKIX1Implicit88", 536875024, NULL },
{ NULL, 1610612748, NULL },
{ "iso", 1073741825, "1"},
{ "identified-organization", 1073741825, "3"},
{ "dod", 1073741825, "6"},
{ "internet", 1073741825, "1"},
{ "security", 1073741825, "5"},
{ "mechanisms", 1073741825, "5"},
{ "pkix", 1073741825, "7"},
{ "id-mod", 1073741825, "0"},
{ "id-pkix1-implicit-88", 1, "2"},
{ "id-ce", 1879048204, NULL },
{ "joint-iso-ccitt", 1073741825, "2"},
{ "ds", 1073741825, "5"},
{ NULL, 1, "29"},
{ "id-ce-authorityKeyIdentifier", 1879048204, NULL },
{ NULL, 1073741825, "id-ce"},
{ NULL, 1, "35"},
{ "AuthorityKeyIdentifier", 1610612741, NULL },
{ "keyIdentifier", 1610637314, "KeyIdentifier"},
{ NULL, 4104, "0"},
{ "authorityCertIssuer", 1610637314, "GeneralNames"},
{ NULL, 4104, "1"},
{ "authorityCertSerialNumber", 536895490, "CertificateSerialNumber"},
{ NULL, 4104, "2"},
{ "KeyIdentifier", 1073741831, NULL },
{ "id-ce-subjectKeyIdentifier", 1879048204, NULL },
{ NULL, 1073741825, "id-ce"},
{ NULL, 1, "14"},
{ "SubjectKeyIdentifier", 1073741826, "KeyIdentifier"},
{ "id-ce-keyUsage", 1879048204, NULL },
{ NULL, 1073741825, "id-ce"},
{ NULL, 1, "15"},
{ "KeyUsage", 1610874886, NULL },
{ "digitalSignature", 1073741825, "0"},
{ "nonRepudiation", 1073741825, "1"},
{ "keyEncipherment", 1073741825, "2"},
{ "dataEncipherment", 1073741825, "3"},
{ "keyAgreement", 1073741825, "4"},
{ "keyCertSign", 1073741825, "5"},
{ "cRLSign", 1073741825, "6"},
{ "encipherOnly", 1073741825, "7"},
{ "decipherOnly", 1, "8"},
{ "id-ce-privateKeyUsagePeriod", 1879048204, NULL },
{ NULL, 1073741825, "id-ce"},
{ NULL, 1, "16"},
{ "PrivateKeyUsagePeriod", 1610612741, NULL },
{ "notBefore", 1610637349, NULL },
{ NULL, 4104, "0"},
{ "notAfter", 536895525, NULL },
{ NULL, 4104, "1"},
{ "id-ce-certificatePolicies", 1879048204, NULL },
{ NULL, 1073741825, "id-ce"},
{ NULL, 1, "32"},
{ "CertificatePolicies", 1612709899, NULL },
{ "MAX", 1074266122, "1"},
{ NULL, 2, "PolicyInformation"},
{ "PolicyInformation", 1610612741, NULL },
{ "policyIdentifier", 1073741826, "CertPolicyId"},
{ "policyQualifiers", 538984459, NULL },
{ "MAX", 1074266122, "1"},
{ NULL, 2, "PolicyQualifierInfo"},
{ "CertPolicyId", 1073741836, NULL },
{ "PolicyQualifierInfo", 1610612741, NULL },
{ "policyQualifierId", 1073741826, "PolicyQualifierId"},
{ "qualifier", 541065229, NULL },
{ "policyQualifierId", 1, NULL },
{ "PolicyQualifierId", 1073741836, NULL },
{ "CPSuri", 1073741853, NULL },
{ "UserNotice", 1610612741, NULL },
{ "noticeRef", 1073758210, "NoticeReference"},
{ "explicitText", 16386, "DisplayText"},
{ "NoticeReference", 1610612741, NULL },
{ "organization", 1073741826, "DisplayText"},
{ "noticeNumbers", 536870923, NULL },
{ NULL, 3, NULL },
{ "DisplayText", 1610612754, NULL },
{ "visibleString", 1612709923, NULL },
{ "200", 524298, "1"},
{ "bmpString", 1612709921, NULL },
{ "200", 524298, "1"},
{ "utf8String", 538968098, NULL },
{ "200", 524298, "1"},
{ "id-ce-policyMappings", 1879048204, NULL },
{ NULL, 1073741825, "id-ce"},
{ NULL, 1, "33"},
{ "PolicyMappings", 1612709899, NULL },
{ "MAX", 1074266122, "1"},
{ NULL, 536870917, NULL },
{ "issuerDomainPolicy", 1073741826, "CertPolicyId"},
{ "subjectDomainPolicy", 2, "CertPolicyId"},
{ "id-ce-subjectAltName", 1879048204, NULL },
{ NULL, 1073741825, "id-ce"},
{ NULL, 1, "17"},
{ "SubjectAltName", 1073741826, "GeneralNames"},
{ "GeneralNames", 1612709899, NULL },
{ "MAX", 1074266122, "1"},
{ NULL, 2, "GeneralName"},
{ "GeneralName", 1610612754, NULL },
{ "otherName", 1610620930, "AnotherName"},
{ NULL, 4104, "0"},
{ "rfc822Name", 1610620957, NULL },
{ NULL, 4104, "1"},
{ "dNSName", 1610620957, NULL },
{ NULL, 4104, "2"},
{ "x400Address", 1610620930, "ORAddress"},
{ NULL, 4104, "3"},
{ "directoryName", 1610620930, "Name"},
{ NULL, 4104, "4"},
{ "ediPartyName", 1610620930, "EDIPartyName"},
{ NULL, 4104, "5"},
{ "uniformResourceIdentifier", 1610620957, NULL },
{ NULL, 4104, "6"},
{ "iPAddress", 1610620935, NULL },
{ NULL, 4104, "7"},
{ "registeredID", 536879116, NULL },
{ NULL, 4104, "8"},
{ "AnotherName", 1610612741, NULL },
{ "type-id", 1073741836, NULL },
{ "value", 541073421, NULL },
{ NULL, 1073743880, "0"},
{ "type-id", 1, NULL },
{ "EDIPartyName", 1610612741, NULL },
{ "nameAssigner", 1610637314, "DirectoryString"},
{ NULL, 4104, "0"},
{ "partyName", 536879106, "DirectoryString"},
{ NULL, 4104, "1"},
{ "id-ce-issuerAltName", 1879048204, NULL },
{ NULL, 1073741825, "id-ce"},
{ NULL, 1, "18"},
{ "IssuerAltName", 1073741826, "GeneralNames"},
{ "id-ce-subjectDirectoryAttributes", 1879048204, NULL },
{ NULL, 1073741825, "id-ce"},
{ NULL, 1, "9"},
{ "SubjectDirectoryAttributes", 1612709899, NULL },
{ "MAX", 1074266122, "1"},
{ NULL, 2, "Attribute"},
{ "id-ce-basicConstraints", 1879048204, NULL },
{ NULL, 1073741825, "id-ce"},
{ NULL, 1, "19"},
{ "BasicConstraints", 1610612741, NULL },
{ "cA", 1610645508, NULL },
{ NULL, 131081, NULL },
{ "pathLenConstraint", 537411587, NULL },
{ "0", 10, "MAX"},
{ "id-ce-nameConstraints", 1879048204, NULL },
{ NULL, 1073741825, "id-ce"},
{ NULL, 1, "30"},
{ "NameConstraints", 1610612741, NULL },
{ "permittedSubtrees", 1610637314, "GeneralSubtrees"},
{ NULL, 4104, "0"},
{ "excludedSubtrees", 536895490, "GeneralSubtrees"},
{ NULL, 4104, "1"},
{ "GeneralSubtrees", 1612709899, NULL },
{ "MAX", 1074266122, "1"},
{ NULL, 2, "GeneralSubtree"},
{ "GeneralSubtree", 1610612741, NULL },
{ "base", 1073741826, "GeneralName"},
{ "minimum", 1610653698, "BaseDistance"},
{ NULL, 1073741833, "0"},
{ NULL, 4104, "0"},
{ "maximum", 536895490, "BaseDistance"},
{ NULL, 4104, "1"},
{ "BaseDistance", 1611137027, NULL },
{ "0", 10, "MAX"},
{ "id-ce-policyConstraints", 1879048204, NULL },
{ NULL, 1073741825, "id-ce"},
{ NULL, 1, "36"},
{ "PolicyConstraints", 1610612741, NULL },
{ "requireExplicitPolicy", 1610637314, "SkipCerts"},
{ NULL, 4104, "0"},
{ "inhibitPolicyMapping", 536895490, "SkipCerts"},
{ NULL, 4104, "1"},
{ "SkipCerts", 1611137027, NULL },
{ "0", 10, "MAX"},
{ "id-ce-cRLDistributionPoints", 1879048204, NULL },
{ NULL, 1073741825, "id-ce"},
{ NULL, 1, "31"},
{ "CRLDistPointsSyntax", 1612709899, NULL },
{ "MAX", 1074266122, "1"},
{ NULL, 2, "DistributionPoint"},
{ "DistributionPoint", 1610612741, NULL },
{ "distributionPoint", 1610637314, "DistributionPointName"},
{ NULL, 4104, "0"},
{ "reasons", 1610637314, "ReasonFlags"},
{ NULL, 4104, "1"},
{ "cRLIssuer", 536895490, "GeneralNames"},
{ NULL, 4104, "2"},
{ "DistributionPointName", 1610612741, NULL },
{ "fullName", 1610637314, "GeneralNames"},
{ NULL, 4104, "0"},
{ "nameRelativeToCRLIssuer", 536895490, "RelativeDistinguishedName"},
{ NULL, 4104, "1"},
{ "ReasonFlags", 1610874886, NULL },
{ "unused", 1073741825, "0"},
{ "keyCompromise", 1073741825, "1"},
{ "cACompromise", 1073741825, "2"},
{ "affiliationChanged", 1073741825, "3"},
{ "superseded", 1073741825, "4"},
{ "cessationOfOperation", 1073741825, "5"},
{ "certificateHold", 1, "6"},
{ "id-ce-extKeyUsage", 1879048204, NULL },
{ NULL, 1073741825, "id-ce"},
{ NULL, 1, "37"},
{ "ExtKeyUsageSyntax", 1612709899, NULL },
{ "MAX", 1074266122, "1"},
{ NULL, 2, "KeyPurposeId"},
{ "KeyPurposeId", 1073741836, NULL },
{ "id-kp-serverAuth", 1879048204, NULL },
{ NULL, 1073741825, "id-kp"},
{ NULL, 1, "1"},
{ "id-kp-clientAuth", 1879048204, NULL },
{ NULL, 1073741825, "id-kp"},
{ NULL, 1, "2"},
{ "id-kp-codeSigning", 1879048204, NULL },
{ NULL, 1073741825, "id-kp"},
{ NULL, 1, "3"},
{ "id-kp-emailProtection", 1879048204, NULL },
{ NULL, 1073741825, "id-kp"},
{ NULL, 1, "4"},
{ "id-kp-ipsecEndSystem", 1879048204, NULL },
{ NULL, 1073741825, "id-kp"},
{ NULL, 1, "5"},
{ "id-kp-ipsecTunnel", 1879048204, NULL },
{ NULL, 1073741825, "id-kp"},
{ NULL, 1, "6"},
{ "id-kp-ipsecUser", 1879048204, NULL },
{ NULL, 1073741825, "id-kp"},
{ NULL, 1, "7"},
{ "id-kp-timeStamping", 1879048204, NULL },
{ NULL, 1073741825, "id-kp"},
{ NULL, 1, "8"},
{ "id-pe-authorityInfoAccess", 1879048204, NULL },
{ NULL, 1073741825, "id-pe"},
{ NULL, 1, "1"},
{ "AuthorityInfoAccessSyntax", 1612709899, NULL },
{ "MAX", 1074266122, "1"},
{ NULL, 2, "AccessDescription"},
{ "AccessDescription", 1610612741, NULL },
{ "accessMethod", 1073741836, NULL },
{ "accessLocation", 2, "GeneralName"},
{ "id-ce-cRLNumber", 1879048204, NULL },
{ NULL, 1073741825, "id-ce"},
{ NULL, 1, "20"},
{ "CRLNumber", 1611137027, NULL },
{ "0", 10, "MAX"},
{ "id-ce-issuingDistributionPoint", 1879048204, NULL },
{ NULL, 1073741825, "id-ce"},
{ NULL, 1, "28"},
{ "IssuingDistributionPoint", 1610612741, NULL },
{ "distributionPoint", 1610637314, "DistributionPointName"},
{ NULL, 4104, "0"},
{ "onlyContainsUserCerts", 1610653700, NULL },
{ NULL, 1073872905, NULL },
{ NULL, 4104, "1"},
{ "onlyContainsCACerts", 1610653700, NULL },
{ NULL, 1073872905, NULL },
{ NULL, 4104, "2"},
{ "onlySomeReasons", 1610637314, "ReasonFlags"},
{ NULL, 4104, "3"},
{ "indirectCRL", 536911876, NULL },
{ NULL, 1073872905, NULL },
{ NULL, 4104, "4"},
{ "id-ce-deltaCRLIndicator", 1879048204, NULL },
{ NULL, 1073741825, "id-ce"},
{ NULL, 1, "27"},
{ "BaseCRLNumber", 1073741826, "CRLNumber"},
{ "id-ce-cRLReasons", 1879048204, NULL },
{ NULL, 1073741825, "id-ce"},
{ NULL, 1, "21"},
{ "CRLReason", 1610874901, NULL },
{ "unspecified", 1073741825, "0"},
{ "keyCompromise", 1073741825, "1"},
{ "cACompromise", 1073741825, "2"},
{ "affiliationChanged", 1073741825, "3"},
{ "superseded", 1073741825, "4"},
{ "cessationOfOperation", 1073741825, "5"},
{ "certificateHold", 1073741825, "6"},
{ "removeFromCRL", 1, "8"},
{ "id-ce-certificateIssuer", 1879048204, NULL },
{ NULL, 1073741825, "id-ce"},
{ NULL, 1, "29"},
{ "CertificateIssuer", 1073741826, "GeneralNames"},
{ "id-ce-holdInstructionCode", 1879048204, NULL },
{ NULL, 1073741825, "id-ce"},
{ NULL, 1, "23"},
{ "HoldInstructionCode", 1073741836, NULL },
{ "holdInstruction", 1879048204, NULL },
{ "joint-iso-itu-t", 1073741825, "2"},
{ "member-body", 1073741825, "2"},
{ "us", 1073741825, "840"},
{ "x9cm", 1073741825, "10040"},
{ NULL, 1, "2"},
{ "id-holdinstruction-none", 1879048204, NULL },
{ NULL, 1073741825, "holdInstruction"},
{ NULL, 1, "1"},
{ "id-holdinstruction-callissuer", 1879048204, NULL },
{ NULL, 1073741825, "holdInstruction"},
{ NULL, 1, "2"},
{ "id-holdinstruction-reject", 1879048204, NULL },
{ NULL, 1073741825, "holdInstruction"},
{ NULL, 1, "3"},
{ "id-ce-invalidityDate", 1879048204, NULL },
{ NULL, 1073741825, "id-ce"},
{ NULL, 1, "24"},
{ "InvalidityDate", 1073741861, NULL },
{ "id-netscape", 1879048204, NULL },
{ "joint-iso-itu-t", 1073741825, "2"},
{ "country", 1073741825, "16"},
{ "us", 1073741825, "840"},
{ "organization", 1073741825, "1"},
{ "netscape", 1, "113730"},
{ "id-netscape-certExtension", 1879048204, NULL },
{ NULL, 1073741825, "id-netscape"},
{ NULL, 1, "1"},
{ "id-netscape-certType", 1879048204, NULL },
{ NULL, 1073741825, "id-netscape-certExtension"},
{ NULL, 1, "1"},
{ "CertType", 1610874886, NULL },
{ "sslClient", 1073741825, "0"},
{ "sslServer", 1073741825, "1"},
{ "smime", 1073741825, "2"},
{ "objectSigning", 1073741825, "3"},
{ "reserved", 1073741825, "4"},
{ "sslCA", 1073741825, "5"},
{ "smimeCA", 1073741825, "6"},
{ "objectSigningCA", 1, "7"},
{ "VisibleString", 1610620935, NULL },
{ NULL, 4360, "26"},
{ "NumericString", 1610620935, NULL },
{ NULL, 4360, "18"},
{ "IA5String", 1610620935, NULL },
{ NULL, 4360, "22"},
{ "TeletexString", 1610620935, NULL },
{ NULL, 4360, "20"},
{ "PrintableString", 1610620935, NULL },
{ NULL, 4360, "19"},
{ "UniversalString", 1610620935, NULL },
{ NULL, 4360, "28"},
{ "BMPString", 1610620935, NULL },
{ NULL, 4360, "30"},
{ "UTF8String", 1610620935, NULL },
{ NULL, 4360, "12"},
{ "id-pkix", 1879048204, NULL },
{ "iso", 1073741825, "1"},
{ "identified-organization", 1073741825, "3"},
{ "dod", 1073741825, "6"},
{ "internet", 1073741825, "1"},
{ "security", 1073741825, "5"},
{ "mechanisms", 1073741825, "5"},
{ "pkix", 1, "7"},
{ "id-pe", 1879048204, NULL },
{ NULL, 1073741825, "id-pkix"},
{ NULL, 1, "1"},
{ "id-qt", 1879048204, NULL },
{ NULL, 1073741825, "id-pkix"},
{ NULL, 1, "2"},
{ "id-kp", 1879048204, NULL },
{ NULL, 1073741825, "id-pkix"},
{ NULL, 1, "3"},
{ "id-ad", 1879048204, NULL },
{ NULL, 1073741825, "id-pkix"},
{ NULL, 1, "48"},
{ "id-qt-cps", 1879048204, NULL },
{ NULL, 1073741825, "id-qt"},
{ NULL, 1, "1"},
{ "id-qt-unotice", 1879048204, NULL },
{ NULL, 1073741825, "id-qt"},
{ NULL, 1, "2"},
{ "id-ad-ocsp", 1879048204, NULL },
{ NULL, 1073741825, "id-ad"},
{ NULL, 1, "1"},
{ "id-ad-caIssuers", 1879048204, NULL },
{ NULL, 1073741825, "id-ad"},
{ NULL, 1, "2"},
{ "Attribute", 1610612741, NULL },
{ "type", 1073741826, "AttributeType"},
{ "values", 536870927, NULL },
{ NULL, 2, "AttributeValue"},
{ "AttributeType", 1073741836, NULL },
{ "AttributeValue", 1073741837, NULL },
{ "AttributeTypeAndValue", 1610612741, NULL },
{ "type", 1073741826, "AttributeType"},
{ "value", 2, "AttributeValue"},
{ "id-at", 1879048204, NULL },
{ "joint-iso-ccitt", 1073741825, "2"},
{ "ds", 1073741825, "5"},
{ NULL, 1, "4"},
{ "id-at-name", 1880096780, "AttributeType"},
{ NULL, 1073741825, "id-at"},
{ NULL, 1, "41"},
{ "id-at-surname", 1880096780, "AttributeType"},
{ NULL, 1073741825, "id-at"},
{ NULL, 1, "4"},
{ "id-at-givenName", 1880096780, "AttributeType"},
{ NULL, 1073741825, "id-at"},
{ NULL, 1, "42"},
{ "id-at-initials", 1880096780, "AttributeType"},
{ NULL, 1073741825, "id-at"},
{ NULL, 1, "43"},
{ "id-at-generationQualifier", 1880096780, "AttributeType"},
{ NULL, 1073741825, "id-at"},
{ NULL, 1, "44"},
{ "X520name", 1610612754, NULL },
{ "teletexString", 1612709918, NULL },
{ "ub-name", 524298, "1"},
{ "printableString", 1612709919, NULL },
{ "ub-name", 524298, "1"},
{ "universalString", 1612709920, NULL },
{ "ub-name", 524298, "1"},
{ "utf8String", 1612709922, NULL },
{ "ub-name", 524298, "1"},
{ "bmpString", 538968097, NULL },
{ "ub-name", 524298, "1"},
{ "id-at-commonName", 1880096780, "AttributeType"},
{ NULL, 1073741825, "id-at"},
{ NULL, 1, "3"},
{ "X520CommonName", 1610612754, NULL },
{ "teletexString", 1612709918, NULL },
{ "ub-common-name", 524298, "1"},
{ "printableString", 1612709919, NULL },
{ "ub-common-name", 524298, "1"},
{ "universalString", 1612709920, NULL },
{ "ub-common-name", 524298, "1"},
{ "utf8String", 1612709922, NULL },
{ "ub-common-name", 524298, "1"},
{ "bmpString", 538968097, NULL },
{ "ub-common-name", 524298, "1"},
{ "id-at-localityName", 1880096780, "AttributeType"},
{ NULL, 1073741825, "id-at"},
{ NULL, 1, "7"},
{ "X520LocalityName", 1610612754, NULL },
{ "teletexString", 1612709918, NULL },
{ "ub-locality-name", 524298, "1"},
{ "printableString", 1612709919, NULL },
{ "ub-locality-name", 524298, "1"},
{ "universalString", 1612709920, NULL },
{ "ub-locality-name", 524298, "1"},
{ "utf8String", 1612709922, NULL },
{ "ub-locality-name", 524298, "1"},
{ "bmpString", 538968097, NULL },
{ "ub-locality-name", 524298, "1"},
{ "id-at-stateOrProvinceName", 1880096780, "AttributeType"},
{ NULL, 1073741825, "id-at"},
{ NULL, 1, "8"},
{ "X520StateOrProvinceName", 1610612754, NULL },
{ "teletexString", 1612709918, NULL },
{ "ub-state-name", 524298, "1"},
{ "printableString", 1612709919, NULL },
{ "ub-state-name", 524298, "1"},
{ "universalString", 1612709920, NULL },
{ "ub-state-name", 524298, "1"},
{ "utf8String", 1612709922, NULL },
{ "ub-state-name", 524298, "1"},
{ "bmpString", 538968097, NULL },
{ "ub-state-name", 524298, "1"},
{ "id-at-organizationName", 1880096780, "AttributeType"},
{ NULL, 1073741825, "id-at"},
{ NULL, 1, "10"},
{ "X520OrganizationName", 1610612754, NULL },
{ "teletexString", 1612709918, NULL },
{ "ub-organization-name", 524298, "1"},
{ "printableString", 1612709919, NULL },
{ "ub-organization-name", 524298, "1"},
{ "universalString", 1612709920, NULL },
{ "ub-organization-name", 524298, "1"},
{ "utf8String", 1612709922, NULL },
{ "ub-organization-name", 524298, "1"},
{ "bmpString", 538968097, NULL },
{ "ub-organization-name", 524298, "1"},
{ "id-at-organizationalUnitName", 1880096780, "AttributeType"},
{ NULL, 1073741825, "id-at"},
{ NULL, 1, "11"},
{ "X520OrganizationalUnitName", 1610612754, NULL },
{ "teletexString", 1612709918, NULL },
{ "ub-organizational-unit-name", 524298, "1"},
{ "printableString", 1612709919, NULL },
{ "ub-organizational-unit-name", 524298, "1"},
{ "universalString", 1612709920, NULL },
{ "ub-organizational-unit-name", 524298, "1"},
{ "utf8String", 1612709922, NULL },
{ "ub-organizational-unit-name", 524298, "1"},
{ "bmpString", 538968097, NULL },
{ "ub-organizational-unit-name", 524298, "1"},
{ "id-at-title", 1880096780, "AttributeType"},
{ NULL, 1073741825, "id-at"},
{ NULL, 1, "12"},
{ "X520Title", 1610612754, NULL },
{ "teletexString", 1612709918, NULL },
{ "ub-title", 524298, "1"},
{ "printableString", 1612709919, NULL },
{ "ub-title", 524298, "1"},
{ "universalString", 1612709920, NULL },
{ "ub-title", 524298, "1"},
{ "utf8String", 1612709922, NULL },
{ "ub-title", 524298, "1"},
{ "bmpString", 538968097, NULL },
{ "ub-title", 524298, "1"},
{ "id-at-dnQualifier", 1880096780, "AttributeType"},
{ NULL, 1073741825, "id-at"},
{ NULL, 1, "46"},
{ "X520dnQualifier", 1073741855, NULL },
{ "id-at-countryName", 1880096780, "AttributeType"},
{ NULL, 1073741825, "id-at"},
{ NULL, 1, "6"},
{ "X520countryName", 1612709919, NULL },
{ NULL, 1048586, "2"},
{ "pkcs-9", 1879048204, NULL },
{ "iso", 1073741825, "1"},
{ "member-body", 1073741825, "2"},
{ "us", 1073741825, "840"},
{ "rsadsi", 1073741825, "113549"},
{ "pkcs", 1073741825, "1"},
{ NULL, 1, "9"},
{ "emailAddress", 1880096780, "AttributeType"},
{ NULL, 1073741825, "pkcs-9"},
{ NULL, 1, "1"},
{ "Pkcs9email", 1612709917, NULL },
{ "ub-emailaddress-length", 524298, "1"},
{ "Name", 1610612754, NULL },
{ "rdnSequence", 2, "RDNSequence"},
{ "RDNSequence", 1610612747, NULL },
{ NULL, 2, "RelativeDistinguishedName"},
{ "DistinguishedName", 1073741826, "RDNSequence"},
{ "RelativeDistinguishedName", 1612709903, NULL },
{ "MAX", 1074266122, "1"},
{ NULL, 2, "AttributeTypeAndValue"},
{ "DirectoryString", 1610612754, NULL },
{ "teletexString", 1612709918, NULL },
{ "MAX", 524298, "1"},
{ "printableString", 1612709919, NULL },
{ "MAX", 524298, "1"},
{ "universalString", 1612709920, NULL },
{ "MAX", 524298, "1"},
{ "utf8String", 1612709922, NULL },
{ "MAX", 524298, "1"},
{ "bmpString", 538968097, NULL },
{ "MAX", 524298, "1"},
{ "Certificate", 1610612741, NULL },
{ "tbsCertificate", 1073741826, "TBSCertificate"},
{ "signatureAlgorithm", 1073741826, "AlgorithmIdentifier"},
{ "signature", 6, NULL },
{ "TBSCertificate", 1610612741, NULL },
{ "version", 1610653698, "Version"},
{ NULL, 1073741833, "v1"},
{ NULL, 2056, "0"},
{ "serialNumber", 1073741826, "CertificateSerialNumber"},
{ "signature", 1073741826, "AlgorithmIdentifier"},
{ "issuer", 1073741826, "Name"},
{ "validity", 1073741826, "Validity"},
{ "subject", 1073741826, "Name"},
{ "subjectPublicKeyInfo", 1073741826, "SubjectPublicKeyInfo"},
{ "issuerUniqueID", 1610637314, "UniqueIdentifier"},
{ NULL, 4104, "1"},
{ "subjectUniqueID", 1610637314, "UniqueIdentifier"},
{ NULL, 4104, "2"},
{ "extensions", 536895490, "Extensions"},
{ NULL, 2056, "3"},
{ "Version", 1610874883, NULL },
{ "v1", 1073741825, "0"},
{ "v2", 1073741825, "1"},
{ "v3", 1, "2"},
{ "CertificateSerialNumber", 1073741827, NULL },
{ "Validity", 1610612741, NULL },
{ "notBefore", 1073741826, "Time"},
{ "notAfter", 2, "Time"},
{ "Time", 1610612754, NULL },
{ "utcTime", 1073741860, NULL },
{ "generalTime", 37, NULL },
{ "UniqueIdentifier", 1073741830, NULL },
{ "SubjectPublicKeyInfo", 1610612741, NULL },
{ "algorithm", 1073741826, "AlgorithmIdentifier"},
{ "subjectPublicKey", 6, NULL },
{ "Extensions", 1612709899, NULL },
{ "MAX", 1074266122, "1"},
{ NULL, 2, "Extension"},
{ "Extension", 1610612741, NULL },
{ "extnID", 1073741836, NULL },
{ "critical", 1610645508, NULL },
{ NULL, 131081, NULL },
{ "extnValue", 7, NULL },
{ "CertificateList", 1610612741, NULL },
{ "tbsCertList", 1073741826, "TBSCertList"},
{ "signatureAlgorithm", 1073741826, "AlgorithmIdentifier"},
{ "signature", 6, NULL },
{ "TBSCertList", 1610612741, NULL },
{ "version", 1073758210, "Version"},
{ "signature", 1073741826, "AlgorithmIdentifier"},
{ "issuer", 1073741826, "Name"},
{ "thisUpdate", 1073741826, "Time"},
{ "nextUpdate", 1073758210, "Time"},
{ "revokedCertificates", 1610629131, NULL },
{ NULL, 536870917, NULL },
{ "userCertificate", 1073741826, "CertificateSerialNumber"},
{ "revocationDate", 1073741826, "Time"},
{ "crlEntryExtensions", 16386, "Extensions"},
{ "crlExtensions", 536895490, "Extensions"},
{ NULL, 2056, "0"},
{ "AlgorithmIdentifier", 1610612741, NULL },
{ "algorithm", 1073741836, NULL },
{ "parameters", 541081613, NULL },
{ "algorithm", 1, NULL },
{ "pkcs-1", 1879048204, NULL },
{ "iso", 1073741825, "1"},
{ "member-body", 1073741825, "2"},
{ "us", 1073741825, "840"},
{ "rsadsi", 1073741825, "113549"},
{ "pkcs", 1073741825, "1"},
{ NULL, 1, "1"},
{ "rsaEncryption", 1879048204, NULL },
{ NULL, 1073741825, "pkcs-1"},
{ NULL, 1, "1"},
{ "md2WithRSAEncryption", 1879048204, NULL },
{ NULL, 1073741825, "pkcs-1"},
{ NULL, 1, "2"},
{ "md5WithRSAEncryption", 1879048204, NULL },
{ NULL, 1073741825, "pkcs-1"},
{ NULL, 1, "4"},
{ "sha1WithRSAEncryption", 1879048204, NULL },
{ NULL, 1073741825, "pkcs-1"},
{ NULL, 1, "5"},
{ "sha256WithRSAEncryption", 1879048204, NULL },
{ NULL, 1073741825, "pkcs-1"},
{ NULL, 1, "11"},
{ "sha384WithRSAEncryption", 1879048204, NULL },
{ NULL, 1073741825, "pkcs-1"},
{ NULL, 1, "12"},
{ "sha512WithRSAEncryption", 1879048204, NULL },
{ NULL, 1073741825, "pkcs-1"},
{ NULL, 1, "13"},
{ "RSAPublicKey", 1610612741, NULL },
{ "modulus", 1073741827, NULL },
{ "publicExponent", 3, NULL },
{ "RSAPrivateKey", 1610612741, NULL },
{ "version", 1073741826, "Version"},
{ "modulus", 1073741827, NULL },
{ "publicExponent", 1073741827, NULL },
{ "privateExponent", 1073741827, NULL },
{ "prime1", 1073741827, NULL },
{ "prime2", 1073741827, NULL },
{ "exponent1", 1073741827, NULL },
{ "exponent2", 1073741827, NULL },
{ "coefficient", 3, NULL },
{ "id-dsa-with-sha1", 1879048204, NULL },
{ "iso", 1073741825, "1"},
{ "member-body", 1073741825, "2"},
{ "us", 1073741825, "840"},
{ "x9-57", 1073741825, "10040"},
{ "x9algorithm", 1073741825, "4"},
{ NULL, 1, "3"},
{ "Dss-Sig-Value", 1610612741, NULL },
{ "r", 1073741827, NULL },
{ "s", 3, NULL },
{ "dhpublicnumber", 1879048204, NULL },
{ "iso", 1073741825, "1"},
{ "member-body", 1073741825, "2"},
{ "us", 1073741825, "840"},
{ "ansi-x942", 1073741825, "10046"},
{ "number-type", 1073741825, "2"},
{ NULL, 1, "1"},
{ "DomainParameters", 1610612741, NULL },
{ "p", 1073741827, NULL },
{ "g", 1073741827, NULL },
{ "q", 1073741827, NULL },
{ "j", 1073758211, NULL },
{ "validationParms", 16386, "ValidationParms"},
{ "ValidationParms", 1610612741, NULL },
{ "seed", 1073741830, NULL },
{ "pgenCounter", 3, NULL },
{ "id-dsa", 1879048204, NULL },
{ "iso", 1073741825, "1"},
{ "member-body", 1073741825, "2"},
{ "us", 1073741825, "840"},
{ "x9-57", 1073741825, "10040"},
{ "x9algorithm", 1073741825, "4"},
{ NULL, 1, "1"},
{ "Dss-Parms", 1610612741, NULL },
{ "p", 1073741827, NULL },
{ "q", 1073741827, NULL },
{ "g", 3, NULL },
{ "ORAddress", 1610612741, NULL },
{ "built-in-standard-attributes", 1073741826, "BuiltInStandardAttributes"},
{ "built-in-domain-defined-attributes", 1073758210, "BuiltInDomainDefinedAttributes"},
{ "extension-attributes", 16386, "ExtensionAttributes"},
{ "BuiltInStandardAttributes", 1610612741, NULL },
{ "country-name", 1073758210, "CountryName"},
{ "administration-domain-name", 1073758210, "AdministrationDomainName"},
{ "network-address", 1610637314, "NetworkAddress"},
{ NULL, 2056, "0"},
{ "terminal-identifier", 1610637314, "TerminalIdentifier"},
{ NULL, 2056, "1"},
{ "private-domain-name", 1610637314, "PrivateDomainName"},
{ NULL, 2056, "2"},
{ "organization-name", 1610637314, "OrganizationName"},
{ NULL, 2056, "3"},
{ "numeric-user-identifier", 1610637314, "NumericUserIdentifier"},
{ NULL, 2056, "4"},
{ "personal-name", 1610637314, "PersonalName"},
{ NULL, 2056, "5"},
{ "organizational-unit-names", 536895490, "OrganizationalUnitNames"},
{ NULL, 2056, "6"},
{ "CountryName", 1610620946, NULL },
{ NULL, 1073746952, "1"},
{ "x121-dcc-code", 1612709916, NULL },
{ NULL, 1048586, "ub-country-name-numeric-length"},
{ "iso-3166-alpha2-code", 538968095, NULL },
{ NULL, 1048586, "ub-country-name-alpha-length"},
{ "AdministrationDomainName", 1610620946, NULL },
{ NULL, 1073744904, "2"},
{ "numeric", 1612709916, NULL },
{ "ub-domain-name-length", 524298, "0"},
{ "printable", 538968095, NULL },
{ "ub-domain-name-length", 524298, "0"},
{ "NetworkAddress", 1073741826, "X121Address"},
{ "X121Address", 1612709916, NULL },
{ "ub-x121-address-length", 524298, "1"},
{ "TerminalIdentifier", 1612709919, NULL },
{ "ub-terminal-id-length", 524298, "1"},
{ "PrivateDomainName", 1610612754, NULL },
{ "numeric", 1612709916, NULL },
{ "ub-domain-name-length", 524298, "1"},
{ "printable", 538968095, NULL },
{ "ub-domain-name-length", 524298, "1"},
{ "OrganizationName", 1612709919, NULL },
{ "ub-organization-name-length", 524298, "1"},
{ "NumericUserIdentifier", 1612709916, NULL },
{ "ub-numeric-user-id-length", 524298, "1"},
{ "PersonalName", 1610612750, NULL },
{ "surname", 1814044703, NULL },
{ NULL, 1073745928, "0"},
{ "ub-surname-length", 524298, "1"},
{ "given-name", 1814061087, NULL },
{ NULL, 1073745928, "1"},
{ "ub-given-name-length", 524298, "1"},
{ "initials", 1814061087, NULL },
{ NULL, 1073745928, "2"},
{ "ub-initials-length", 524298, "1"},
{ "generation-qualifier", 740319263, NULL },
{ NULL, 1073745928, "3"},
{ "ub-generation-qualifier-length", 524298, "1"},
{ "OrganizationalUnitNames", 1612709899, NULL },
{ "ub-organizational-units", 1074266122, "1"},
{ NULL, 2, "OrganizationalUnitName"},
{ "OrganizationalUnitName", 1612709919, NULL },
{ "ub-organizational-unit-name-length", 524298, "1"},
{ "BuiltInDomainDefinedAttributes", 1612709899, NULL },
{ "ub-domain-defined-attributes", 1074266122, "1"},
{ NULL, 2, "BuiltInDomainDefinedAttribute"},
{ "BuiltInDomainDefinedAttribute", 1610612741, NULL },
{ "type", 1612709919, NULL },
{ "ub-domain-defined-attribute-type-length", 524298, "1"},
{ "value", 538968095, NULL },
{ "ub-domain-defined-attribute-value-length", 524298, "1"},
{ "ExtensionAttributes", 1612709903, NULL },
{ "ub-extension-attributes", 1074266122, "1"},
{ NULL, 2, "ExtensionAttribute"},
{ "ExtensionAttribute", 1610612741, NULL },
{ "extension-attribute-type", 1611145219, NULL },
{ NULL, 1073743880, "0"},
{ "0", 10, "ub-extension-attributes"},
{ "extension-attribute-value", 541073421, NULL },
{ NULL, 1073743880, "1"},
{ "extension-attribute-type", 1, NULL },
{ "common-name", 1342177283, "1"},
{ "CommonName", 1612709919, NULL },
{ "ub-common-name-length", 524298, "1"},
{ "teletex-common-name", 1342177283, "2"},
{ "TeletexCommonName", 1612709918, NULL },
{ "ub-common-name-length", 524298, "1"},
{ "teletex-organization-name", 1342177283, "3"},
{ "TeletexOrganizationName", 1612709918, NULL },
{ "ub-organization-name-length", 524298, "1"},
{ "teletex-personal-name", 1342177283, "4"},
{ "TeletexPersonalName", 1610612750, NULL },
{ "surname", 1814044702, NULL },
{ NULL, 1073743880, "0"},
{ "ub-surname-length", 524298, "1"},
{ "given-name", 1814061086, NULL },
{ NULL, 1073743880, "1"},
{ "ub-given-name-length", 524298, "1"},
{ "initials", 1814061086, NULL },
{ NULL, 1073743880, "2"},
{ "ub-initials-length", 524298, "1"},
{ "generation-qualifier", 740319262, NULL },
{ NULL, 1073743880, "3"},
{ "ub-generation-qualifier-length", 524298, "1"},
{ "teletex-organizational-unit-names", 1342177283, "5"},
{ "TeletexOrganizationalUnitNames", 1612709899, NULL },
{ "ub-organizational-units", 1074266122, "1"},
{ NULL, 2, "TeletexOrganizationalUnitName"},
{ "TeletexOrganizationalUnitName", 1612709918, NULL },
{ "ub-organizational-unit-name-length", 524298, "1"},
{ "pds-name", 1342177283, "7"},
{ "PDSName", 1612709919, NULL },
{ "ub-pds-name-length", 524298, "1"},
{ "physical-delivery-country-name", 1342177283, "8"},
{ "PhysicalDeliveryCountryName", 1610612754, NULL },
{ "x121-dcc-code", 1612709916, NULL },
{ NULL, 1048586, "ub-country-name-numeric-length"},
{ "iso-3166-alpha2-code", 538968095, NULL },
{ NULL, 1048586, "ub-country-name-alpha-length"},
{ "postal-code", 1342177283, "9"},
{ "PostalCode", 1610612754, NULL },
{ "numeric-code", 1612709916, NULL },
{ "ub-postal-code-length", 524298, "1"},
{ "printable-code", 538968095, NULL },
{ "ub-postal-code-length", 524298, "1"},
{ "physical-delivery-office-name", 1342177283, "10"},
{ "PhysicalDeliveryOfficeName", 1073741826, "PDSParameter"},
{ "physical-delivery-office-number", 1342177283, "11"},
{ "PhysicalDeliveryOfficeNumber", 1073741826, "PDSParameter"},
{ "extension-OR-address-components", 1342177283, "12"},
{ "ExtensionORAddressComponents", 1073741826, "PDSParameter"},
{ "physical-delivery-personal-name", 1342177283, "13"},
{ "PhysicalDeliveryPersonalName", 1073741826, "PDSParameter"},
{ "physical-delivery-organization-name", 1342177283, "14"},
{ "PhysicalDeliveryOrganizationName", 1073741826, "PDSParameter"},
{ "extension-physical-delivery-address-components", 1342177283, "15"},
{ "ExtensionPhysicalDeliveryAddressComponents", 1073741826, "PDSParameter"},
{ "unformatted-postal-address", 1342177283, "16"},
{ "UnformattedPostalAddress", 1610612750, NULL },
{ "printable-address", 1814052875, NULL },
{ "ub-pds-physical-address-lines", 1074266122, "1"},
{ NULL, 538968095, NULL },
{ "ub-pds-parameter-length", 524298, "1"},
{ "teletex-string", 740311070, NULL },
{ "ub-unformatted-address-length", 524298, "1"},
{ "street-address", 1342177283, "17"},
{ "StreetAddress", 1073741826, "PDSParameter"},
{ "post-office-box-address", 1342177283, "18"},
{ "PostOfficeBoxAddress", 1073741826, "PDSParameter"},
{ "poste-restante-address", 1342177283, "19"},
{ "PosteRestanteAddress", 1073741826, "PDSParameter"},
{ "unique-postal-name", 1342177283, "20"},
{ "UniquePostalName", 1073741826, "PDSParameter"},
{ "local-postal-attributes", 1342177283, "21"},
{ "LocalPostalAttributes", 1073741826, "PDSParameter"},
{ "PDSParameter", 1610612750, NULL },
{ "printable-string", 1814052895, NULL },
{ "ub-pds-parameter-length", 524298, "1"},
{ "teletex-string", 740311070, NULL },
{ "ub-pds-parameter-length", 524298, "1"},
{ "extended-network-address", 1342177283, "22"},
{ "ExtendedNetworkAddress", 1610612754, NULL },
{ "e163-4-address", 1610612741, NULL },
{ "number", 1612718108, NULL },
{ NULL, 1073743880, "0"},
{ "ub-e163-4-number-length", 524298, "1"},
{ "sub-address", 538992668, NULL },
{ NULL, 1073743880, "1"},
{ "ub-e163-4-sub-address-length", 524298, "1"},
{ "psap-address", 536879106, "PresentationAddress"},
{ NULL, 2056, "0"},
{ "PresentationAddress", 1610612741, NULL },
{ "pSelector", 1610637319, NULL },
{ NULL, 2056, "0"},
{ "sSelector", 1610637319, NULL },
{ NULL, 2056, "1"},
{ "tSelector", 1610637319, NULL },
{ NULL, 2056, "2"},
{ "nAddresses", 538976271, NULL },
{ NULL, 1073743880, "3"},
{ "MAX", 1074266122, "1"},
{ NULL, 7, NULL },
{ "terminal-type", 1342177283, "23"},
{ "TerminalType", 1611137027, NULL },
{ "0", 10, "ub-integer-options"},
{ "teletex-domain-defined-attributes", 1342177283, "6"},
{ "TeletexDomainDefinedAttributes", 1612709899, NULL },
{ "ub-domain-defined-attributes", 1074266122, "1"},
{ NULL, 2, "TeletexDomainDefinedAttribute"},
{ "TeletexDomainDefinedAttribute", 1610612741, NULL },
{ "type", 1612709918, NULL },
{ "ub-domain-defined-attribute-type-length", 524298, "1"},
{ "value", 538968094, NULL },
{ "ub-domain-defined-attribute-value-length", 524298, "1"},
{ "ub-name", 1342177283, "32768"},
{ "ub-common-name", 1342177283, "64"},
{ "ub-locality-name", 1342177283, "128"},
{ "ub-state-name", 1342177283, "128"},
{ "ub-organization-name", 1342177283, "64"},
{ "ub-organizational-unit-name", 1342177283, "64"},
{ "ub-title", 1342177283, "64"},
{ "ub-match", 1342177283, "128"},
{ "ub-emailaddress-length", 1342177283, "128"},
{ "ub-common-name-length", 1342177283, "64"},
{ "ub-country-name-alpha-length", 1342177283, "2"},
{ "ub-country-name-numeric-length", 1342177283, "3"},
{ "ub-domain-defined-attributes", 1342177283, "4"},
{ "ub-domain-defined-attribute-type-length", 1342177283, "8"},
{ "ub-domain-defined-attribute-value-length", 1342177283, "128"},
{ "ub-domain-name-length", 1342177283, "16"},
{ "ub-extension-attributes", 1342177283, "256"},
{ "ub-e163-4-number-length", 1342177283, "15"},
{ "ub-e163-4-sub-address-length", 1342177283, "40"},
{ "ub-generation-qualifier-length", 1342177283, "3"},
{ "ub-given-name-length", 1342177283, "16"},
{ "ub-initials-length", 1342177283, "5"},
{ "ub-integer-options", 1342177283, "256"},
{ "ub-numeric-user-id-length", 1342177283, "32"},
{ "ub-organization-name-length", 1342177283, "64"},
{ "ub-organizational-unit-name-length", 1342177283, "32"},
{ "ub-organizational-units", 1342177283, "4"},
{ "ub-pds-name-length", 1342177283, "16"},
{ "ub-pds-parameter-length", 1342177283, "30"},
{ "ub-pds-physical-address-lines", 1342177283, "6"},
{ "ub-postal-code-length", 1342177283, "16"},
{ "ub-surname-length", 1342177283, "40"},
{ "ub-terminal-id-length", 1342177283, "24"},
{ "ub-unformatted-address-length", 1342177283, "180"},
{ "ub-x121-address-length", 268435459, "16"},
{ NULL, 0, NULL }
};