-
Notifications
You must be signed in to change notification settings - Fork 2k
Expand file tree
/
Copy pathobj_mac.h
More file actions
3751 lines (3749 loc) · 158 KB
/
obj_mac.h
File metadata and controls
3751 lines (3749 loc) · 158 KB
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
/*
* Generated by crypto/objects/objects.pl
*
* Copyright 2000-2025 The OpenSSL Project Authors. All Rights Reserved.
* Licensed under the Apache License 2.0 (the "License"). You may not use
* this file except in compliance with the License. You can obtain a copy
* in the file LICENSE in the source distribution or at
* https://www.openssl.org/source/license.html
*/
# define EVP_PKEY_NONE NID_undef
# define EVP_PKEY_RSA NID_rsaEncryption
# define EVP_PKEY_RSA2 NID_rsa
# define EVP_PKEY_RSA_PSS NID_rsassaPss
# define EVP_PKEY_DSA NID_dsa
# define EVP_PKEY_DSA1 NID_dsa_2
# define EVP_PKEY_DSA2 NID_dsaWithSHA
# define EVP_PKEY_DSA3 NID_dsaWithSHA1
# define EVP_PKEY_DSA4 NID_dsaWithSHA1_2
# define EVP_PKEY_DH NID_dhKeyAgreement
# define EVP_PKEY_DHX NID_dhpublicnumber
# define EVP_PKEY_EC NID_X9_62_id_ecPublicKey
# define EVP_PKEY_SM2 NID_sm2
# define EVP_PKEY_HMAC NID_hmac
# define EVP_PKEY_CMAC NID_cmac
# define EVP_PKEY_SCRYPT NID_id_scrypt
# define EVP_PKEY_TLS1_PRF NID_tls1_prf
# define EVP_PKEY_HKDF NID_hkdf
# define EVP_PKEY_POLY1305 NID_poly1305
# define EVP_PKEY_SIPHASH NID_siphash
# define EVP_PKEY_X25519 NID_X25519
# define EVP_PKEY_ED25519 NID_ED25519
# define EVP_PKEY_X448 NID_X448
# define EVP_PKEY_ED448 NID_ED448
#define NID_crl_reason 141
#define NID_invalidity_date 142
#define NID_hold_instruction_code 430
#define NID_undef 0
#define NID_pkcs9_emailAddress 48
#define NID_crl_number 88
#define SN_aes_256_cbc "AES-256-CBC"
#define NID_id_it_caCerts 1223
#define NID_id_it_rootCaCert 1254
#define NID_id_it_crlStatusList 1256
#define NID_id_it_certReqTemplate 1225
#define NID_id_regCtrl_algId 1259
#define NID_id_regCtrl_rsaKeyLen 1260
#define NID_pkcs7_signed 22
#define NID_pkcs7_data 21
#define NID_ED25519 1087
#define NID_ED448 1088
#define SN_sha256 "SHA256"
#define NID_hmac 855
#define SN_X9_62_prime192v1 "prime192v1"
#define SN_X9_62_prime256v1 "prime256v1"
#define NID_grasshopper_mac NID_kuznyechik_mac
#define SN_grasshopper_mac SN_kuznyechik_mac
#define NID_grasshopper_cfb NID_kuznyechik_cfb
#define SN_grasshopper_cfb SN_kuznyechik_cfb
#define NID_grasshopper_cbc NID_kuznyechik_cbc
#define SN_grasshopper_cbc SN_kuznyechik_cbc
#define NID_grasshopper_ofb NID_kuznyechik_ofb
#define SN_grasshopper_ofb SN_kuznyechik_ofb
#define NID_grasshopper_ctr NID_kuznyechik_ctr
#define SN_grasshopper_ctr SN_kuznyechik_ctr
#define NID_grasshopper_ecb NID_kuznyechik_ecb
#define SN_grasshopper_ecb SN_kuznyechik_ecb
#define NID_id_tc26_wrap_gostr3412_2015_kuznyechik_kexp15 NID_kuznyechik_kexp15
#define SN_id_tc26_wrap_gostr3412_2015_kuznyechik_kexp15 SN_kuznyechik_kexp15
#define NID_id_tc26_wrap_gostr3412_2015_magma_kexp15 NID_magma_kexp15
#define SN_id_tc26_wrap_gostr3412_2015_magma_kexp15 SN_magma_kexp15
#define NID_id_tc26_cipher_gostr3412_2015_kuznyechik_ctracpkm_omac NID_kuznyechik_ctr_acpkm_omac
#define SN_id_tc26_cipher_gostr3412_2015_kuznyechik_ctracpkm_omac SN_kuznyechik_ctr_acpkm_omac
#define NID_id_tc26_cipher_gostr3412_2015_kuznyechik_ctracpkm NID_kuznyechik_ctr_acpkm
#define SN_id_tc26_cipher_gostr3412_2015_kuznyechik_ctracpkm SN_kuznyechik_ctr_acpkm
#define NID_id_tc26_cipher_gostr3412_2015_magma_ctracpkm_omac NID_magma_ctr_acpkm_omac
#define SN_id_tc26_cipher_gostr3412_2015_magma_ctracpkm_omac SN_magma_ctr_acpkm_omac
#define NID_id_tc26_cipher_gostr3412_2015_magma_ctracpkm NID_magma_ctr_acpkm
#define SN_id_tc26_cipher_gostr3412_2015_magma_ctracpkm SN_magma_ctr_acpkm
#define NID_ML_KEM_1024 1456
#define LN_ML_KEM_1024 "ML-KEM-1024"
#define SN_ML_KEM_1024 "id-alg-ml-kem-1024"
#define NID_ML_KEM_768 1455
#define LN_ML_KEM_768 "ML-KEM-768"
#define SN_ML_KEM_768 "id-alg-ml-kem-768"
#define NID_ML_KEM_512 1454
#define LN_ML_KEM_512 "ML-KEM-512"
#define SN_ML_KEM_512 "id-alg-ml-kem-512"
#define NID_tcg_tr_cat_PublicKey 1453
#define LN_tcg_tr_cat_PublicKey "Public Key Trait Category"
#define SN_tcg_tr_cat_PublicKey "tcg-tr-cat-PublicKey"
#define NID_tcg_tr_cat_RTM 1452
#define LN_tcg_tr_cat_RTM "Root of Trust of Measurement Trait Category"
#define SN_tcg_tr_cat_RTM "tcg-tr-cat-RTM"
#define NID_tcg_tr_cat_platformFirmwareUpdateCompliance 1451
#define LN_tcg_tr_cat_platformFirmwareUpdateCompliance "Platform Firmware Update Compliance Trait Category"
#define SN_tcg_tr_cat_platformFirmwareUpdateCompliance "tcg-tr-cat-platformFirmwareUpdateCompliance"
#define NID_tcg_tr_cat_platformFirmwareSignatureVerification 1450
#define LN_tcg_tr_cat_platformFirmwareSignatureVerification "Platform Firmware Signature Verification Trait Category"
#define SN_tcg_tr_cat_platformFirmwareSignatureVerification "tcg-tr-cat-platformFirmwareSignatureVerification"
#define NID_tcg_tr_cat_platformHardwareCapabilities 1449
#define LN_tcg_tr_cat_platformHardwareCapabilities "Platform Hardware Capabilities Trait Category"
#define SN_tcg_tr_cat_platformHardwareCapabilities "tcg-tr-cat-platformHardwareCapabilities"
#define NID_tcg_tr_cat_platformFirmwareCapabilities 1448
#define LN_tcg_tr_cat_platformFirmwareCapabilities "Platform Firmware Capabilities Trait Category"
#define SN_tcg_tr_cat_platformFirmwareCapabilities "tcg-tr-cat-platformFirmwareCapabilities"
#define NID_tcg_tr_cat_PEN 1447
#define LN_tcg_tr_cat_PEN "Private Enterprise Number Trait Category"
#define SN_tcg_tr_cat_PEN "tcg-tr-cat-PEN"
#define NID_tcg_tr_cat_attestationProtocol 1446
#define LN_tcg_tr_cat_attestationProtocol "Attestation Protocol Trait Category"
#define SN_tcg_tr_cat_attestationProtocol "tcg-tr-cat-attestationProtocol"
#define NID_tcg_tr_cat_networkMAC 1445
#define LN_tcg_tr_cat_networkMAC "Network MAC Trait Category"
#define SN_tcg_tr_cat_networkMAC "tcg-tr-cat-networkMAC"
#define NID_tcg_tr_cat_ISO9000 1444
#define LN_tcg_tr_cat_ISO9000 "ISO 9000 Trait Category"
#define SN_tcg_tr_cat_ISO9000 "tcg-tr-cat-ISO9000"
#define NID_tcg_tr_cat_FIPSLevel 1443
#define LN_tcg_tr_cat_FIPSLevel "FIPS Level Trait Category"
#define SN_tcg_tr_cat_FIPSLevel "tcg-tr-cat-FIPSLevel"
#define NID_tcg_tr_cat_componentIdentifierV11 1442
#define LN_tcg_tr_cat_componentIdentifierV11 "Component Identifier V1.1 Trait Category"
#define SN_tcg_tr_cat_componentIdentifierV11 "tcg-tr-cat-componentIdentifierV11"
#define NID_tcg_tr_cat_CommonCriteria 1441
#define LN_tcg_tr_cat_CommonCriteria "Common Criteria Trait Category"
#define SN_tcg_tr_cat_CommonCriteria "tcg-tr-cat-CommonCriteria"
#define NID_tcg_tr_cat_genericCertificate 1440
#define LN_tcg_tr_cat_genericCertificate "Generic Certificate Trait Category"
#define SN_tcg_tr_cat_genericCertificate "tcg-tr-cat-genericCertificate"
#define NID_tcg_tr_cat_RebasePlatformCertificate 1439
#define LN_tcg_tr_cat_RebasePlatformCertificate "Rebase Platform Certificate Trait Category"
#define SN_tcg_tr_cat_RebasePlatformCertificate "tcg-tr-cat-RebasePlatformCertificate"
#define NID_tcg_tr_cat_DeltaPlatformCertificate 1438
#define LN_tcg_tr_cat_DeltaPlatformCertificate "Delta Platform Certificate Trait Category"
#define SN_tcg_tr_cat_DeltaPlatformCertificate "tcg-tr-cat-DeltaPlatformCertificate"
#define NID_tcg_tr_cat_PlatformCertificate 1437
#define LN_tcg_tr_cat_PlatformCertificate "Platform Certificate Trait Category"
#define SN_tcg_tr_cat_PlatformCertificate "tcg-tr-cat-PlatformCertificate"
#define NID_tcg_tr_cat_PEMCertificate 1436
#define LN_tcg_tr_cat_PEMCertificate "PEM Certificate Trait Category"
#define SN_tcg_tr_cat_PEMCertificate "tcg-tr-cat-PEMCertificate"
#define NID_tcg_tr_cat_SPDMCertificate 1435
#define LN_tcg_tr_cat_SPDMCertificate "SPDM Certificate Trait Category"
#define SN_tcg_tr_cat_SPDMCertificate "tcg-tr-cat-SPDMCertificate"
#define NID_tcg_tr_cat_DICECertificate 1434
#define LN_tcg_tr_cat_DICECertificate "DICE Certificate Trait Category"
#define SN_tcg_tr_cat_DICECertificate "tcg-tr-cat-DICECertificate"
#define NID_tcg_tr_cat_IDevIDCertificate 1433
#define LN_tcg_tr_cat_IDevIDCertificate "IDevID Certificate Trait Category"
#define SN_tcg_tr_cat_IDevIDCertificate "tcg-tr-cat-IDevIDCertificate"
#define NID_tcg_tr_cat_IAKCertificate 1432
#define LN_tcg_tr_cat_IAKCertificate "IAK Certificate Trait Category"
#define SN_tcg_tr_cat_IAKCertificate "tcg-tr-cat-IAKCertificate"
#define NID_tcg_tr_cat_EKCertificate 1431
#define LN_tcg_tr_cat_EKCertificate "EK Certificate Trait Category"
#define SN_tcg_tr_cat_EKCertificate "tcg-tr-cat-EKCertificate"
#define NID_tcg_tr_cat_componentFieldReplaceable 1430
#define LN_tcg_tr_cat_componentFieldReplaceable "Component Field Replaceable Trait Category"
#define SN_tcg_tr_cat_componentFieldReplaceable "tcg-tr-cat-componentFieldReplaceable"
#define NID_tcg_tr_cat_componentRevision 1429
#define LN_tcg_tr_cat_componentRevision "Component Revision Trait Category"
#define SN_tcg_tr_cat_componentRevision "tcg-tr-cat-componentRevision"
#define NID_tcg_tr_cat_componentLocation 1428
#define LN_tcg_tr_cat_componentLocation "Component Location Trait Category"
#define SN_tcg_tr_cat_componentLocation "tcg-tr-cat-componentLocation"
#define NID_tcg_tr_cat_componentStatus 1427
#define LN_tcg_tr_cat_componentStatus "Component Status Trait Category"
#define SN_tcg_tr_cat_componentStatus "tcg-tr-cat-componentStatus"
#define NID_tcg_tr_cat_componentSerial 1426
#define LN_tcg_tr_cat_componentSerial "Component Serial Trait Category"
#define SN_tcg_tr_cat_componentSerial "tcg-tr-cat-componentSerial"
#define NID_tcg_tr_cat_componentModel 1425
#define LN_tcg_tr_cat_componentModel "Component Model Trait Category"
#define SN_tcg_tr_cat_componentModel "tcg-tr-cat-componentModel"
#define NID_tcg_tr_cat_componentManufacturer 1424
#define LN_tcg_tr_cat_componentManufacturer "Component Manufacturer Trait Category"
#define SN_tcg_tr_cat_componentManufacturer "tcg-tr-cat-componentManufacturer"
#define NID_tcg_tr_cat_componentClass 1423
#define LN_tcg_tr_cat_componentClass "Component Class Trait Category"
#define SN_tcg_tr_cat_componentClass "tcg-tr-cat-componentClass"
#define NID_tcg_tr_cat_platformOwnership 1422
#define LN_tcg_tr_cat_platformOwnership "Platform Ownership Trait Category"
#define SN_tcg_tr_cat_platformOwnership "tcg-tr-cat-platformOwnership"
#define NID_tcg_tr_cat_platformManufacturerIdentifier 1421
#define LN_tcg_tr_cat_platformManufacturerIdentifier "Platform Manufacturer Identifier Trait Category"
#define SN_tcg_tr_cat_platformManufacturerIdentifier "tcg-tr-cat-platformManufacturerIdentifier"
#define NID_tcg_tr_cat_platformSerial 1420
#define LN_tcg_tr_cat_platformSerial "Platform Serial Trait Category"
#define SN_tcg_tr_cat_platformSerial "tcg-tr-cat-platformSerial"
#define NID_tcg_tr_cat_platformVersion 1419
#define LN_tcg_tr_cat_platformVersion "Platform Version Trait Category"
#define SN_tcg_tr_cat_platformVersion "tcg-tr-cat-platformVersion"
#define NID_tcg_tr_cat_platformModel 1418
#define LN_tcg_tr_cat_platformModel "Platform Model Trait Category"
#define SN_tcg_tr_cat_platformModel "tcg-tr-cat-platformModel"
#define NID_tcg_tr_cat_platformManufacturer 1417
#define LN_tcg_tr_cat_platformManufacturer "Platform Manufacturer Trait Category"
#define SN_tcg_tr_cat_platformManufacturer "tcg-tr-cat-platformManufacturer"
#define NID_tcg_tr_ID_PublicKey 1416
#define LN_tcg_tr_ID_PublicKey "Public Key Trait"
#define SN_tcg_tr_ID_PublicKey "tcg-tr-ID-PublicKey"
#define NID_tcg_tr_ID_PEMCertString 1415
#define LN_tcg_tr_ID_PEMCertString "PEM-Encoded Certificate String Trait"
#define SN_tcg_tr_ID_PEMCertString "tcg-tr-ID-PEMCertString"
#define NID_tcg_tr_ID_IA5String 1414
#define LN_tcg_tr_ID_IA5String "IA5String Trait"
#define SN_tcg_tr_ID_IA5String "tcg-tr-ID-IA5String"
#define NID_tcg_tr_ID_UTF8String 1413
#define LN_tcg_tr_ID_UTF8String "UTF8String Trait"
#define SN_tcg_tr_ID_UTF8String "tcg-tr-ID-UTF8String"
#define NID_tcg_tr_ID_URI 1412
#define LN_tcg_tr_ID_URI "Uniform Resource Identifier Trait"
#define SN_tcg_tr_ID_URI "tcg-tr-ID-URI"
#define NID_tcg_tr_ID_status 1411
#define LN_tcg_tr_ID_status "Attribute Status Trait"
#define SN_tcg_tr_ID_status "tcg-tr-ID-status"
#define NID_tcg_tr_ID_RTM 1410
#define LN_tcg_tr_ID_RTM "Root of Trust for Measurement Trait"
#define SN_tcg_tr_ID_RTM "tcg-tr-ID-RTM"
#define NID_tcg_tr_ID_platformHardwareCapabilities 1409
#define LN_tcg_tr_ID_platformHardwareCapabilities "Platform Hardware Capabilities Trait"
#define SN_tcg_tr_ID_platformHardwareCapabilities "tcg-tr-ID-platformHardwareCapabilities"
#define NID_tcg_tr_ID_platformFirmwareUpdateCompliance 1408
#define LN_tcg_tr_ID_platformFirmwareUpdateCompliance "Platform Firmware Update Compliance Trait"
#define SN_tcg_tr_ID_platformFirmwareUpdateCompliance "tcg-tr-ID-platformFirmwareUpdateCompliance"
#define NID_tcg_tr_ID_platformFirmwareSignatureVerification 1407
#define LN_tcg_tr_ID_platformFirmwareSignatureVerification "Platform Firmware Signature Verification Trait"
#define SN_tcg_tr_ID_platformFirmwareSignatureVerification "tcg-tr-ID-platformFirmwareSignatureVerification"
#define NID_tcg_tr_ID_platformFirmwareCapabilities 1406
#define LN_tcg_tr_ID_platformFirmwareCapabilities "Platform Firmware Capabilities Trait"
#define SN_tcg_tr_ID_platformFirmwareCapabilities "tcg-tr-ID-platformFirmwareCapabilities"
#define NID_tcg_tr_ID_PEN 1405
#define LN_tcg_tr_ID_PEN "Private Enterprise Number Trait"
#define SN_tcg_tr_ID_PEN "tcg-tr-ID-PEN"
#define NID_tcg_tr_ID_OID 1404
#define LN_tcg_tr_ID_OID "Object Identifier Trait"
#define SN_tcg_tr_ID_OID "tcg-tr-ID-OID"
#define NID_tcg_tr_ID_networkMAC 1403
#define LN_tcg_tr_ID_networkMAC "Network MAC Trait"
#define SN_tcg_tr_ID_networkMAC "tcg-tr-ID-networkMAC"
#define NID_tcg_tr_ID_ISO9000Level 1402
#define LN_tcg_tr_ID_ISO9000Level "ISO 9000 Level Trait"
#define SN_tcg_tr_ID_ISO9000Level "tcg-tr-ID-ISO9000Level"
#define NID_tcg_tr_ID_FIPSLevel 1401
#define LN_tcg_tr_ID_FIPSLevel "FIPS Level Trait"
#define SN_tcg_tr_ID_FIPSLevel "tcg-tr-ID-FIPSLevel"
#define NID_tcg_tr_ID_componentIdentifierV11 1400
#define LN_tcg_tr_ID_componentIdentifierV11 "Component Identifier V1.1 Trait"
#define SN_tcg_tr_ID_componentIdentifierV11 "tcg-tr-ID-componentIdentifierV11"
#define NID_tcg_tr_ID_componentClass 1399
#define LN_tcg_tr_ID_componentClass "Component Class Trait"
#define SN_tcg_tr_ID_componentClass "tcg-tr-ID-componentClass"
#define NID_tcg_tr_ID_CommonCriteria 1398
#define LN_tcg_tr_ID_CommonCriteria "Common Criteria Trait"
#define SN_tcg_tr_ID_CommonCriteria "tcg-tr-ID-CommonCriteria"
#define NID_tcg_tr_ID_CertificateIdentifier 1397
#define LN_tcg_tr_ID_CertificateIdentifier "Certificate Identifier Trait"
#define SN_tcg_tr_ID_CertificateIdentifier "tcg-tr-ID-CertificateIdentifier"
#define NID_tcg_tr_ID_Boolean 1396
#define LN_tcg_tr_ID_Boolean "Boolean Trait"
#define SN_tcg_tr_ID_Boolean "tcg-tr-ID-Boolean"
#define NID_tcg_tr_registry 1395
#define LN_tcg_tr_registry "TCG Trait Registries"
#define SN_tcg_tr_registry "tcg-tr-registry"
#define NID_tcg_tr_category 1394
#define LN_tcg_tr_category "TCG Trait Categories"
#define SN_tcg_tr_category "tcg-tr-category"
#define NID_tcg_tr_ID 1393
#define LN_tcg_tr_ID "TCG Trait Identifiers"
#define SN_tcg_tr_ID "tcg-tr-ID"
#define NID_tcg_cap_verifiedPlatformCertificate 1392
#define LN_tcg_cap_verifiedPlatformCertificate "TCG Verified Platform Certificate CA Policy"
#define SN_tcg_cap_verifiedPlatformCertificate "tcg-cap-verifiedPlatformCertificate"
#define NID_tcg_registry_componentClass_disk 1391
#define LN_tcg_registry_componentClass_disk "Disk Component Class"
#define SN_tcg_registry_componentClass_disk "tcg-registry-componentClass-disk"
#define NID_tcg_registry_componentClass_pcie 1390
#define LN_tcg_registry_componentClass_pcie "PCIE Component Class"
#define SN_tcg_registry_componentClass_pcie "tcg-registry-componentClass-pcie"
#define NID_tcg_registry_componentClass_dmtf 1389
#define LN_tcg_registry_componentClass_dmtf "Distributed Management Task Force Registry"
#define SN_tcg_registry_componentClass_dmtf "tcg-registry-componentClass-dmtf"
#define NID_tcg_registry_componentClass_ietf 1388
#define LN_tcg_registry_componentClass_ietf "Internet Engineering Task Force Registry"
#define SN_tcg_registry_componentClass_ietf "tcg-registry-componentClass-ietf"
#define NID_tcg_registry_componentClass_tcg 1387
#define LN_tcg_registry_componentClass_tcg "Trusted Computed Group Registry"
#define SN_tcg_registry_componentClass_tcg "tcg-registry-componentClass-tcg"
#define NID_tcg_registry_componentClass 1386
#define LN_tcg_registry_componentClass "TCG Component Class"
#define SN_tcg_registry_componentClass "tcg-registry-componentClass"
#define NID_tcg_address_bluetoothmac 1385
#define LN_tcg_address_bluetoothmac "Bluetooth MAC Address"
#define SN_tcg_address_bluetoothmac "tcg-address-bluetoothmac"
#define NID_tcg_address_wlanmac 1384
#define LN_tcg_address_wlanmac "WLAN MAC Address"
#define SN_tcg_address_wlanmac "tcg-address-wlanmac"
#define NID_tcg_address_ethernetmac 1383
#define LN_tcg_address_ethernetmac "Ethernet MAC Address"
#define SN_tcg_address_ethernetmac "tcg-address-ethernetmac"
#define NID_tcg_prt_tpmIdProtocol 1382
#define LN_tcg_prt_tpmIdProtocol "TCG TPM Protocol"
#define SN_tcg_prt_tpmIdProtocol "tcg-prt-tpmIdProtocol"
#define NID_tcg_ce_virtualPlatformBackupService 1381
#define LN_tcg_ce_virtualPlatformBackupService "Virtual Platform Backup Service"
#define SN_tcg_ce_virtualPlatformBackupService "tcg-ce-virtualPlatformBackupService"
#define NID_tcg_ce_migrationControllerRegistrationService 1380
#define LN_tcg_ce_migrationControllerRegistrationService "Migration Controller Registration Service"
#define SN_tcg_ce_migrationControllerRegistrationService "tcg-ce-migrationControllerRegistrationService"
#define NID_tcg_ce_migrationControllerAttestationService 1379
#define LN_tcg_ce_migrationControllerAttestationService "Migration Controller Attestation Service"
#define SN_tcg_ce_migrationControllerAttestationService "tcg-ce-migrationControllerAttestationService"
#define NID_tcg_ce_virtualPlatformAttestationService 1378
#define LN_tcg_ce_virtualPlatformAttestationService "Virtual Platform Attestation Service"
#define SN_tcg_ce_virtualPlatformAttestationService "tcg-ce-virtualPlatformAttestationService"
#define NID_tcg_ce_relevantManifests 1377
#define LN_tcg_ce_relevantManifests "Relevant Manifests"
#define SN_tcg_ce_relevantManifests "tcg-ce-relevantManifests"
#define NID_tcg_ce_relevantCredentials 1376
#define LN_tcg_ce_relevantCredentials "Relevant Credentials"
#define SN_tcg_ce_relevantCredentials "tcg-ce-relevantCredentials"
#define NID_tcg_kp_AdditionalPlatformKeyCertificate 1375
#define LN_tcg_kp_AdditionalPlatformKeyCertificate "Additional Platform Key Certificate"
#define SN_tcg_kp_AdditionalPlatformKeyCertificate "tcg-kp-AdditionalPlatformKeyCertificate"
#define NID_tcg_kp_AdditionalPlatformAttributeCertificate 1374
#define LN_tcg_kp_AdditionalPlatformAttributeCertificate "Additional Platform Attribute Certificate"
#define SN_tcg_kp_AdditionalPlatformAttributeCertificate "tcg-kp-AdditionalPlatformAttributeCertificate"
#define NID_tcg_kp_DeltaPlatformKeyCertificate 1373
#define LN_tcg_kp_DeltaPlatformKeyCertificate "Delta Platform Key Certificate"
#define SN_tcg_kp_DeltaPlatformKeyCertificate "tcg-kp-DeltaPlatformKeyCertificate"
#define NID_tcg_kp_DeltaPlatformAttributeCertificate 1372
#define LN_tcg_kp_DeltaPlatformAttributeCertificate "Delta Platform Attribute Certificate"
#define SN_tcg_kp_DeltaPlatformAttributeCertificate "tcg-kp-DeltaPlatformAttributeCertificate"
#define NID_tcg_kp_PlatformKeyCertificate 1371
#define LN_tcg_kp_PlatformKeyCertificate "Platform Key Certificate"
#define SN_tcg_kp_PlatformKeyCertificate "tcg-kp-PlatformKeyCertificate"
#define NID_tcg_kp_AIKCertificate 1370
#define LN_tcg_kp_AIKCertificate "Attestation Identity Key Certificate"
#define SN_tcg_kp_AIKCertificate "tcg-kp-AIKCertificate"
#define NID_tcg_kp_PlatformAttributeCertificate 1369
#define LN_tcg_kp_PlatformAttributeCertificate "Platform Attribute Certificate"
#define SN_tcg_kp_PlatformAttributeCertificate "tcg-kp-PlatformAttributeCertificate"
#define NID_tcg_kp_EKCertificate 1368
#define LN_tcg_kp_EKCertificate "Endorsement Key Certificate"
#define SN_tcg_kp_EKCertificate "tcg-kp-EKCertificate"
#define NID_tcg_algorithm_null 1367
#define LN_tcg_algorithm_null "TCG NULL Algorithm"
#define SN_tcg_algorithm_null "tcg-algorithm-null"
#define NID_tcg_at_platformConfigUri_v3 1366
#define LN_tcg_at_platformConfigUri_v3 "Platform Configuration URI Version 3"
#define SN_tcg_at_platformConfigUri_v3 "tcg-at-platformConfigUri-v3"
#define NID_tcg_at_platformConfiguration_v3 1365
#define LN_tcg_at_platformConfiguration_v3 "Platform Configuration Version 3"
#define SN_tcg_at_platformConfiguration_v3 "tcg-at-platformConfiguration-v3"
#define NID_tcg_at_platformConfiguration_v2 1364
#define LN_tcg_at_platformConfiguration_v2 "Platform Configuration Version 2"
#define SN_tcg_at_platformConfiguration_v2 "tcg-at-platformConfiguration-v2"
#define NID_tcg_at_platformConfiguration_v1 1363
#define LN_tcg_at_platformConfiguration_v1 "Platform Configuration Version 1"
#define SN_tcg_at_platformConfiguration_v1 "tcg-at-platformConfiguration-v1"
#define NID_tcg_at_cryptographicAnchors 1362
#define LN_tcg_at_cryptographicAnchors "TCG Cryptographic Anchors"
#define SN_tcg_at_cryptographicAnchors "tcg-at-cryptographicAnchors"
#define NID_tcg_at_tbbSecurityAssertions_v3 1361
#define LN_tcg_at_tbbSecurityAssertions_v3 "TCG TBB Security Assertions V3"
#define SN_tcg_at_tbbSecurityAssertions_v3 "tcg-at-tbbSecurityAssertions-v3"
#define NID_tcg_at_previousPlatformCertificates 1360
#define LN_tcg_at_previousPlatformCertificates "TCG Previous Platform Certificates"
#define SN_tcg_at_previousPlatformCertificates "tcg-at-previousPlatformCertificates"
#define NID_tcg_at_tcgCredentialType 1359
#define LN_tcg_at_tcgCredentialType "TCG Credential Type"
#define SN_tcg_at_tcgCredentialType "tcg-at-tcgCredentialType"
#define NID_tcg_at_tcgCredentialSpecification 1358
#define LN_tcg_at_tcgCredentialSpecification "TCG Credential Specification"
#define SN_tcg_at_tcgCredentialSpecification "tcg-at-tcgCredentialSpecification"
#define NID_tcg_at_tbbSecurityAssertions 1357
#define LN_tcg_at_tbbSecurityAssertions "TBB Security Assertions"
#define SN_tcg_at_tbbSecurityAssertions "tcg-at-tbbSecurityAssertions"
#define NID_tcg_at_tpmSecurityAssertions 1356
#define LN_tcg_at_tpmSecurityAssertions "TPM Security Assertions"
#define SN_tcg_at_tpmSecurityAssertions "tcg-at-tpmSecurityAssertions"
#define NID_tcg_at_tcgPlatformSpecification 1355
#define LN_tcg_at_tcgPlatformSpecification "TPM Platform Specification"
#define SN_tcg_at_tcgPlatformSpecification "tcg-at-tcgPlatformSpecification"
#define NID_tcg_at_tpmSpecification 1354
#define LN_tcg_at_tpmSpecification "TPM Specification"
#define SN_tcg_at_tpmSpecification "tcg-at-tpmSpecification"
#define NID_tcg_at_tpmIdLabel 1353
#define LN_tcg_at_tpmIdLabel "TPM ID Label"
#define SN_tcg_at_tpmIdLabel "tcg-at-tpmIdLabel"
#define NID_tcg_at_tbbSecurityTarget 1352
#define LN_tcg_at_tbbSecurityTarget "TBB Security Target"
#define SN_tcg_at_tbbSecurityTarget "tcg-at-tbbSecurityTarget"
#define NID_tcg_at_tbbProtectionProfile 1351
#define LN_tcg_at_tbbProtectionProfile "TBB Protection Profile"
#define SN_tcg_at_tbbProtectionProfile "tcg-at-tbbProtectionProfile"
#define NID_tcg_at_tpmSecurityTarget 1350
#define LN_tcg_at_tpmSecurityTarget "TPM Security Target"
#define SN_tcg_at_tpmSecurityTarget "tcg-at-tpmSecurityTarget"
#define NID_tcg_at_tpmProtectionProfile 1349
#define LN_tcg_at_tpmProtectionProfile "TPM Protection Profile"
#define SN_tcg_at_tpmProtectionProfile "tcg-at-tpmProtectionProfile"
#define NID_tcg_at_securityQualities 1348
#define LN_tcg_at_securityQualities "Security Qualities"
#define SN_tcg_at_securityQualities "tcg-at-securityQualities"
#define NID_tcg_at_tpmVersion 1347
#define LN_tcg_at_tpmVersion "TPM Version"
#define SN_tcg_at_tpmVersion "tcg-at-tpmVersion"
#define NID_tcg_at_tpmModel 1346
#define LN_tcg_at_tpmModel "TPM Model"
#define SN_tcg_at_tpmModel "tcg-at-tpmModel"
#define NID_tcg_at_tpmManufacturer 1345
#define LN_tcg_at_tpmManufacturer "TPM Manufacturer"
#define SN_tcg_at_tpmManufacturer "tcg-at-tpmManufacturer"
#define NID_tcg_at_platformIdentifier 1344
#define LN_tcg_at_platformIdentifier "TCG Platform Identifier"
#define SN_tcg_at_platformIdentifier "tcg-at-platformIdentifier"
#define NID_tcg_at_platformConfiguration 1343
#define LN_tcg_at_platformConfiguration "TCG Platform Configuration"
#define SN_tcg_at_platformConfiguration "tcg-at-platformConfiguration"
#define NID_tcg_at_platformSerial 1342
#define LN_tcg_at_platformSerial "TCG Platform Serial Number"
#define SN_tcg_at_platformSerial "tcg-at-platformSerial"
#define NID_tcg_at_platformVersion 1341
#define LN_tcg_at_platformVersion "TCG Platform Version"
#define SN_tcg_at_platformVersion "tcg-at-platformVersion"
#define NID_tcg_at_platformModel 1340
#define LN_tcg_at_platformModel "TCG Platform Model"
#define SN_tcg_at_platformModel "tcg-at-platformModel"
#define NID_tcg_at_platformConfigUri 1339
#define LN_tcg_at_platformConfigUri "TCG Platform Configuration URI"
#define SN_tcg_at_platformConfigUri "tcg-at-platformConfigUri"
#define NID_tcg_at_platformManufacturerId 1338
#define LN_tcg_at_platformManufacturerId "TCG Platform Manufacturer ID"
#define SN_tcg_at_platformManufacturerId "tcg-at-platformManufacturerId"
#define NID_tcg_at_platformManufacturerStr 1337
#define LN_tcg_at_platformManufacturerStr "TCG Platform Manufacturer String"
#define SN_tcg_at_platformManufacturerStr "tcg-at-platformManufacturerStr"
#define NID_tcg_common 1336
#define LN_tcg_common "Trusted Computing Group Common"
#define SN_tcg_common "tcg-common"
#define NID_tcg_traits 1335
#define LN_tcg_traits "Trusted Computing Group Traits"
#define SN_tcg_traits "tcg-traits"
#define NID_tcg_registry 1334
#define LN_tcg_registry "Trusted Computing Group Registry"
#define SN_tcg_registry "tcg-registry"
#define NID_tcg_address 1333
#define LN_tcg_address "Trusted Computing Group Address Formats"
#define SN_tcg_address "tcg-address"
#define NID_tcg_ca 1332
#define LN_tcg_ca "Trusted Computing Group Certificate Policies"
#define SN_tcg_ca "tcg-ca"
#define NID_tcg_kp 1331
#define LN_tcg_kp "Trusted Computing Group Key Purposes"
#define SN_tcg_kp "tcg-kp"
#define NID_tcg_ce 1330
#define LN_tcg_ce "Trusted Computing Group Certificate Extensions"
#define SN_tcg_ce "tcg-ce"
#define NID_tcg_platformClass 1329
#define LN_tcg_platformClass "Trusted Computing Group Platform Classes"
#define SN_tcg_platformClass "tcg-platformClass"
#define NID_tcg_algorithm 1328
#define LN_tcg_algorithm "Trusted Computing Group Algorithms"
#define SN_tcg_algorithm "tcg-algorithm"
#define NID_tcg_protocol 1327
#define LN_tcg_protocol "Trusted Computing Group Protocols"
#define SN_tcg_protocol "tcg-protocol"
#define NID_tcg_attribute 1326
#define LN_tcg_attribute "Trusted Computing Group Attributes"
#define SN_tcg_attribute "tcg-attribute"
#define NID_tcg_tcpaSpecVersion 1325
#define SN_tcg_tcpaSpecVersion "tcg-tcpaSpecVersion"
#define NID_tcg 1324
#define LN_tcg "Trusted Computing Group"
#define SN_tcg "tcg"
#define NID_zstd 1289
#define LN_zstd "Zstandard compression"
#define SN_zstd "zstd"
#define NID_brotli 1288
#define LN_brotli "Brotli compression"
#define SN_brotli "brotli"
#define NID_oracle_jdk_trustedkeyusage 1283
#define LN_oracle_jdk_trustedkeyusage "Trusted key usage (Oracle)"
#define SN_oracle_jdk_trustedkeyusage "oracle-jdk-trustedkeyusage"
#define NID_oracle 1282
#define LN_oracle "Oracle organization"
#define SN_oracle "oracle-organization"
#define NID_aes_256_siv 1200
#define LN_aes_256_siv "aes-256-siv"
#define SN_aes_256_siv "AES-256-SIV"
#define NID_aes_192_siv 1199
#define LN_aes_192_siv "aes-192-siv"
#define SN_aes_192_siv "AES-192-SIV"
#define NID_aes_128_siv 1198
#define LN_aes_128_siv "aes-128-siv"
#define SN_aes_128_siv "AES-128-SIV"
#define NID_uacurve9 1169
#define LN_uacurve9 "DSTU curve 9"
#define SN_uacurve9 "uacurve9"
#define NID_uacurve8 1168
#define LN_uacurve8 "DSTU curve 8"
#define SN_uacurve8 "uacurve8"
#define NID_uacurve7 1167
#define LN_uacurve7 "DSTU curve 7"
#define SN_uacurve7 "uacurve7"
#define NID_uacurve6 1166
#define LN_uacurve6 "DSTU curve 6"
#define SN_uacurve6 "uacurve6"
#define NID_uacurve5 1165
#define LN_uacurve5 "DSTU curve 5"
#define SN_uacurve5 "uacurve5"
#define NID_uacurve4 1164
#define LN_uacurve4 "DSTU curve 4"
#define SN_uacurve4 "uacurve4"
#define NID_uacurve3 1163
#define LN_uacurve3 "DSTU curve 3"
#define SN_uacurve3 "uacurve3"
#define NID_uacurve2 1162
#define LN_uacurve2 "DSTU curve 2"
#define SN_uacurve2 "uacurve2"
#define NID_uacurve1 1161
#define LN_uacurve1 "DSTU curve 1"
#define SN_uacurve1 "uacurve1"
#define NID_uacurve0 1160
#define LN_uacurve0 "DSTU curve 0"
#define SN_uacurve0 "uacurve0"
#define NID_dstu4145be 1159
#define LN_dstu4145be "DSTU 4145-2002 big endian"
#define SN_dstu4145be "dstu4145be"
#define NID_dstu4145le 1158
#define LN_dstu4145le "DSTU 4145-2002 little endian"
#define SN_dstu4145le "dstu4145le"
#define NID_dstu34311 1157
#define LN_dstu34311 "DSTU Gost 34311-95"
#define SN_dstu34311 "dstu34311"
#define NID_hmacWithDstu34311 1156
#define LN_hmacWithDstu34311 "HMAC DSTU Gost 34311-95"
#define SN_hmacWithDstu34311 "hmacWithDstu34311"
#define NID_dstu28147_wrap 1155
#define LN_dstu28147_wrap "DSTU Gost 28147-2009 key wrap"
#define SN_dstu28147_wrap "dstu28147-wrap"
#define NID_dstu28147_cfb 1154
#define LN_dstu28147_cfb "DSTU Gost 28147-2009 CFB mode"
#define SN_dstu28147_cfb "dstu28147-cfb"
#define NID_dstu28147_ofb 1153
#define LN_dstu28147_ofb "DSTU Gost 28147-2009 OFB mode"
#define SN_dstu28147_ofb "dstu28147-ofb"
#define NID_dstu28147 1152
#define LN_dstu28147 "DSTU Gost 28147-2009"
#define SN_dstu28147 "dstu28147"
#define NID_ua_pki 1151
#define SN_ua_pki "ua-pki"
#define NID_ISO_UA 1150
#define SN_ISO_UA "ISO-UA"
#define NID_modp_8192 1217
#define SN_modp_8192 "modp_8192"
#define NID_modp_6144 1216
#define SN_modp_6144 "modp_6144"
#define NID_modp_4096 1215
#define SN_modp_4096 "modp_4096"
#define NID_modp_3072 1214
#define SN_modp_3072 "modp_3072"
#define NID_modp_2048 1213
#define SN_modp_2048 "modp_2048"
#define NID_modp_1536 1212
#define SN_modp_1536 "modp_1536"
#define NID_ffdhe8192 1130
#define SN_ffdhe8192 "ffdhe8192"
#define NID_ffdhe6144 1129
#define SN_ffdhe6144 "ffdhe6144"
#define NID_ffdhe4096 1128
#define SN_ffdhe4096 "ffdhe4096"
#define NID_ffdhe3072 1127
#define SN_ffdhe3072 "ffdhe3072"
#define NID_ffdhe2048 1126
#define SN_ffdhe2048 "ffdhe2048"
#define NID_siphash 1062
#define LN_siphash "siphash"
#define SN_siphash "SipHash"
#define NID_poly1305 1061
#define LN_poly1305 "poly1305"
#define SN_poly1305 "Poly1305"
#define NID_auth_any 1064
#define LN_auth_any "auth-any"
#define SN_auth_any "AuthANY"
#define NID_auth_null 1053
#define LN_auth_null "auth-null"
#define SN_auth_null "AuthNULL"
#define NID_auth_srp 1052
#define LN_auth_srp "auth-srp"
#define SN_auth_srp "AuthSRP"
#define NID_auth_gost12 1051
#define LN_auth_gost12 "auth-gost12"
#define SN_auth_gost12 "AuthGOST12"
#define NID_auth_gost01 1050
#define LN_auth_gost01 "auth-gost01"
#define SN_auth_gost01 "AuthGOST01"
#define NID_auth_dss 1049
#define LN_auth_dss "auth-dss"
#define SN_auth_dss "AuthDSS"
#define NID_auth_psk 1048
#define LN_auth_psk "auth-psk"
#define SN_auth_psk "AuthPSK"
#define NID_auth_ecdsa 1047
#define LN_auth_ecdsa "auth-ecdsa"
#define SN_auth_ecdsa "AuthECDSA"
#define NID_auth_rsa 1046
#define LN_auth_rsa "auth-rsa"
#define SN_auth_rsa "AuthRSA"
#define NID_kx_any 1063
#define LN_kx_any "kx-any"
#define SN_kx_any "KxANY"
#define NID_kx_gost18 1218
#define LN_kx_gost18 "kx-gost18"
#define SN_kx_gost18 "KxGOST18"
#define NID_kx_gost 1045
#define LN_kx_gost "kx-gost"
#define SN_kx_gost "KxGOST"
#define NID_kx_srp 1044
#define LN_kx_srp "kx-srp"
#define SN_kx_srp "KxSRP"
#define NID_kx_psk 1043
#define LN_kx_psk "kx-psk"
#define SN_kx_psk "KxPSK"
#define NID_kx_rsa_psk 1042
#define LN_kx_rsa_psk "kx-rsa-psk"
#define SN_kx_rsa_psk "KxRSA_PSK"
#define NID_kx_dhe_psk 1041
#define LN_kx_dhe_psk "kx-dhe-psk"
#define SN_kx_dhe_psk "KxDHE-PSK"
#define NID_kx_ecdhe_psk 1040
#define LN_kx_ecdhe_psk "kx-ecdhe-psk"
#define SN_kx_ecdhe_psk "KxECDHE-PSK"
#define NID_kx_dhe 1039
#define LN_kx_dhe "kx-dhe"
#define SN_kx_dhe "KxDHE"
#define NID_kx_ecdhe 1038
#define LN_kx_ecdhe "kx-ecdhe"
#define SN_kx_ecdhe "KxECDHE"
#define NID_kx_rsa 1037
#define LN_kx_rsa "kx-rsa"
#define SN_kx_rsa "KxRSA"
#define SN_ED448 "ED448"
#define SN_ED25519 "ED25519"
#define NID_X448 1035
#define SN_X448 "X448"
#define NID_X25519 1034
#define SN_X25519 "X25519"
#define NID_pkInitKDC 1033
#define LN_pkInitKDC "Signing KDC Response"
#define SN_pkInitKDC "pkInitKDC"
#define NID_pkInitClientAuth 1032
#define LN_pkInitClientAuth "PKINIT Client Auth"
#define SN_pkInitClientAuth "pkInitClientAuth"
#define NID_id_pkinit 1031
#define SN_id_pkinit "id-pkinit"
#define NID_x963kdf 1206
#define LN_x963kdf "x963kdf"
#define SN_x963kdf "X963KDF"
#define NID_x942kdf 1207
#define LN_x942kdf "x942kdf"
#define SN_x942kdf "X942KDF"
#define NID_sskdf 1205
#define LN_sskdf "sskdf"
#define SN_sskdf "SSKDF"
#define NID_sshkdf 1203
#define LN_sshkdf "sshkdf"
#define SN_sshkdf "SSHKDF"
#define NID_hkdf 1036
#define LN_hkdf "hkdf"
#define SN_hkdf "HKDF"
#define NID_tls1_prf 1021
#define LN_tls1_prf "tls1-prf"
#define SN_tls1_prf "TLS1-PRF"
#define NID_id_scrypt 973
#define LN_id_scrypt "scrypt"
#define SN_id_scrypt "id-scrypt"
#define NID_jurisdictionCountryName 957
#define LN_jurisdictionCountryName "jurisdictionCountryName"
#define SN_jurisdictionCountryName "jurisdictionC"
#define NID_jurisdictionStateOrProvinceName 956
#define LN_jurisdictionStateOrProvinceName "jurisdictionStateOrProvinceName"
#define SN_jurisdictionStateOrProvinceName "jurisdictionST"
#define NID_jurisdictionLocalityName 955
#define LN_jurisdictionLocalityName "jurisdictionLocalityName"
#define SN_jurisdictionLocalityName "jurisdictionL"
#define NID_ct_cert_scts 954
#define LN_ct_cert_scts "CT Certificate SCTs"
#define SN_ct_cert_scts "ct_cert_scts"
#define NID_ct_precert_signer 953
#define LN_ct_precert_signer "CT Precertificate Signer"
#define SN_ct_precert_signer "ct_precert_signer"
#define NID_ct_precert_poison 952
#define LN_ct_precert_poison "CT Precertificate Poison"
#define SN_ct_precert_poison "ct_precert_poison"
#define NID_ct_precert_scts 951
#define LN_ct_precert_scts "CT Precertificate SCTs"
#define SN_ct_precert_scts "ct_precert_scts"
#define NID_dh_cofactor_kdf 947
#define SN_dh_cofactor_kdf "dh-cofactor-kdf"
#define NID_dh_std_kdf 946
#define SN_dh_std_kdf "dh-std-kdf"
#define NID_dhSinglePass_cofactorDH_sha512kdf_scheme 945
#define SN_dhSinglePass_cofactorDH_sha512kdf_scheme "dhSinglePass-cofactorDH-sha512kdf-scheme"
#define NID_dhSinglePass_cofactorDH_sha384kdf_scheme 944
#define SN_dhSinglePass_cofactorDH_sha384kdf_scheme "dhSinglePass-cofactorDH-sha384kdf-scheme"
#define NID_dhSinglePass_cofactorDH_sha256kdf_scheme 943
#define SN_dhSinglePass_cofactorDH_sha256kdf_scheme "dhSinglePass-cofactorDH-sha256kdf-scheme"
#define NID_dhSinglePass_cofactorDH_sha224kdf_scheme 942
#define SN_dhSinglePass_cofactorDH_sha224kdf_scheme "dhSinglePass-cofactorDH-sha224kdf-scheme"
#define NID_dhSinglePass_cofactorDH_sha1kdf_scheme 941
#define SN_dhSinglePass_cofactorDH_sha1kdf_scheme "dhSinglePass-cofactorDH-sha1kdf-scheme"
#define NID_dhSinglePass_stdDH_sha512kdf_scheme 940
#define SN_dhSinglePass_stdDH_sha512kdf_scheme "dhSinglePass-stdDH-sha512kdf-scheme"
#define NID_dhSinglePass_stdDH_sha384kdf_scheme 939
#define SN_dhSinglePass_stdDH_sha384kdf_scheme "dhSinglePass-stdDH-sha384kdf-scheme"
#define NID_dhSinglePass_stdDH_sha256kdf_scheme 938
#define SN_dhSinglePass_stdDH_sha256kdf_scheme "dhSinglePass-stdDH-sha256kdf-scheme"
#define NID_dhSinglePass_stdDH_sha224kdf_scheme 937
#define SN_dhSinglePass_stdDH_sha224kdf_scheme "dhSinglePass-stdDH-sha224kdf-scheme"
#define NID_dhSinglePass_stdDH_sha1kdf_scheme 936
#define SN_dhSinglePass_stdDH_sha1kdf_scheme "dhSinglePass-stdDH-sha1kdf-scheme"
#define NID_brainpoolP512t1 934
#define SN_brainpoolP512t1 "brainpoolP512t1"
#define NID_brainpoolP512r1tls13 1287
#define SN_brainpoolP512r1tls13 "brainpoolP512r1tls13"
#define NID_brainpoolP512r1 933
#define SN_brainpoolP512r1 "brainpoolP512r1"
#define NID_brainpoolP384t1 932
#define SN_brainpoolP384t1 "brainpoolP384t1"
#define NID_brainpoolP384r1tls13 1286
#define SN_brainpoolP384r1tls13 "brainpoolP384r1tls13"
#define NID_brainpoolP384r1 931
#define SN_brainpoolP384r1 "brainpoolP384r1"
#define NID_brainpoolP320t1 930
#define SN_brainpoolP320t1 "brainpoolP320t1"
#define NID_brainpoolP320r1 929
#define SN_brainpoolP320r1 "brainpoolP320r1"
#define NID_brainpoolP256t1 928
#define SN_brainpoolP256t1 "brainpoolP256t1"
#define NID_brainpoolP256r1tls13 1285
#define SN_brainpoolP256r1tls13 "brainpoolP256r1tls13"
#define NID_brainpoolP256r1 927
#define SN_brainpoolP256r1 "brainpoolP256r1"
#define NID_brainpoolP224t1 926
#define SN_brainpoolP224t1 "brainpoolP224t1"
#define NID_brainpoolP224r1 925
#define SN_brainpoolP224r1 "brainpoolP224r1"
#define NID_brainpoolP192t1 924
#define SN_brainpoolP192t1 "brainpoolP192t1"
#define NID_brainpoolP192r1 923
#define SN_brainpoolP192r1 "brainpoolP192r1"
#define NID_brainpoolP160t1 922
#define SN_brainpoolP160t1 "brainpoolP160t1"
#define NID_brainpoolP160r1 921
#define SN_brainpoolP160r1 "brainpoolP160r1"
#define NID_dhpublicnumber 920
#define LN_dhpublicnumber "X9.42 DH"
#define SN_dhpublicnumber "dhpublicnumber"
#define NID_chacha20 1019
#define LN_chacha20 "chacha20"
#define SN_chacha20 "ChaCha20"
#define NID_chacha20_poly1305 1018
#define LN_chacha20_poly1305 "chacha20-poly1305"
#define SN_chacha20_poly1305 "ChaCha20-Poly1305"
#define NID_aes_256_cbc_hmac_sha256 950
#define LN_aes_256_cbc_hmac_sha256 "aes-256-cbc-hmac-sha256"
#define SN_aes_256_cbc_hmac_sha256 "AES-256-CBC-HMAC-SHA256"
#define NID_aes_192_cbc_hmac_sha256 949
#define LN_aes_192_cbc_hmac_sha256 "aes-192-cbc-hmac-sha256"
#define SN_aes_192_cbc_hmac_sha256 "AES-192-CBC-HMAC-SHA256"
#define NID_aes_128_cbc_hmac_sha256 948
#define LN_aes_128_cbc_hmac_sha256 "aes-128-cbc-hmac-sha256"
#define SN_aes_128_cbc_hmac_sha256 "AES-128-CBC-HMAC-SHA256"
#define NID_aes_256_cbc_hmac_sha1 918
#define LN_aes_256_cbc_hmac_sha1 "aes-256-cbc-hmac-sha1"
#define SN_aes_256_cbc_hmac_sha1 "AES-256-CBC-HMAC-SHA1"
#define NID_aes_192_cbc_hmac_sha1 917
#define LN_aes_192_cbc_hmac_sha1 "aes-192-cbc-hmac-sha1"
#define SN_aes_192_cbc_hmac_sha1 "AES-192-CBC-HMAC-SHA1"
#define NID_aes_128_cbc_hmac_sha1 916
#define LN_aes_128_cbc_hmac_sha1 "aes-128-cbc-hmac-sha1"
#define SN_aes_128_cbc_hmac_sha1 "AES-128-CBC-HMAC-SHA1"
#define NID_rc4_hmac_md5 915
#define LN_rc4_hmac_md5 "rc4-hmac-md5"
#define SN_rc4_hmac_md5 "RC4-HMAC-MD5"
#define NID_cmac 894
#define LN_cmac "cmac"
#define SN_cmac "CMAC"
#define LN_hmac "hmac"
#define SN_hmac "HMAC"
#define NID_sm4_xts 1290
#define LN_sm4_xts "sm4-xts"
#define SN_sm4_xts "SM4-XTS"
#define NID_sm4_ccm 1249
#define LN_sm4_ccm "sm4-ccm"
#define SN_sm4_ccm "SM4-CCM"
#define NID_sm4_gcm 1248
#define LN_sm4_gcm "sm4-gcm"
#define SN_sm4_gcm "SM4-GCM"
#define NID_sm4_ctr 1139
#define LN_sm4_ctr "sm4-ctr"
#define SN_sm4_ctr "SM4-CTR"
#define NID_sm4_cfb8 1138
#define LN_sm4_cfb8 "sm4-cfb8"
#define SN_sm4_cfb8 "SM4-CFB8"
#define NID_sm4_cfb1 1136
#define LN_sm4_cfb1 "sm4-cfb1"
#define SN_sm4_cfb1 "SM4-CFB1"
#define NID_sm4_cfb128 1137
#define LN_sm4_cfb128 "sm4-cfb"
#define SN_sm4_cfb128 "SM4-CFB"
#define NID_sm4_ofb128 1135
#define LN_sm4_ofb128 "sm4-ofb"
#define SN_sm4_ofb128 "SM4-OFB"
#define NID_sm4_cbc 1134
#define LN_sm4_cbc "sm4-cbc"
#define SN_sm4_cbc "SM4-CBC"
#define NID_sm4_ecb 1133
#define LN_sm4_ecb "sm4-ecb"
#define SN_sm4_ecb "SM4-ECB"
#define NID_seed_ofb128 778
#define LN_seed_ofb128 "seed-ofb"
#define SN_seed_ofb128 "SEED-OFB"
#define NID_seed_cfb128 779
#define LN_seed_cfb128 "seed-cfb"
#define SN_seed_cfb128 "SEED-CFB"
#define NID_seed_cbc 777
#define LN_seed_cbc "seed-cbc"
#define SN_seed_cbc "SEED-CBC"
#define NID_seed_ecb 776
#define LN_seed_ecb "seed-ecb"
#define SN_seed_ecb "SEED-ECB"
#define NID_kisa 773
#define LN_kisa "kisa"
#define SN_kisa "KISA"
#define NID_aria_256_gcm 1125
#define LN_aria_256_gcm "aria-256-gcm"
#define SN_aria_256_gcm "ARIA-256-GCM"
#define NID_aria_192_gcm 1124
#define LN_aria_192_gcm "aria-192-gcm"
#define SN_aria_192_gcm "ARIA-192-GCM"
#define NID_aria_128_gcm 1123
#define LN_aria_128_gcm "aria-128-gcm"
#define SN_aria_128_gcm "ARIA-128-GCM"
#define NID_aria_256_ccm 1122
#define LN_aria_256_ccm "aria-256-ccm"
#define SN_aria_256_ccm "ARIA-256-CCM"
#define NID_aria_192_ccm 1121
#define LN_aria_192_ccm "aria-192-ccm"
#define SN_aria_192_ccm "ARIA-192-CCM"
#define NID_aria_128_ccm 1120
#define LN_aria_128_ccm "aria-128-ccm"
#define SN_aria_128_ccm "ARIA-128-CCM"
#define NID_aria_256_cfb8 1085
#define LN_aria_256_cfb8 "aria-256-cfb8"
#define SN_aria_256_cfb8 "ARIA-256-CFB8"
#define NID_aria_192_cfb8 1084
#define LN_aria_192_cfb8 "aria-192-cfb8"
#define SN_aria_192_cfb8 "ARIA-192-CFB8"
#define NID_aria_128_cfb8 1083
#define LN_aria_128_cfb8 "aria-128-cfb8"
#define SN_aria_128_cfb8 "ARIA-128-CFB8"
#define NID_aria_256_cfb1 1082
#define LN_aria_256_cfb1 "aria-256-cfb1"
#define SN_aria_256_cfb1 "ARIA-256-CFB1"
#define NID_aria_192_cfb1 1081
#define LN_aria_192_cfb1 "aria-192-cfb1"
#define SN_aria_192_cfb1 "ARIA-192-CFB1"
#define NID_aria_128_cfb1 1080
#define LN_aria_128_cfb1 "aria-128-cfb1"
#define SN_aria_128_cfb1 "ARIA-128-CFB1"
#define NID_aria_256_ctr 1079
#define LN_aria_256_ctr "aria-256-ctr"
#define SN_aria_256_ctr "ARIA-256-CTR"
#define NID_aria_256_ofb128 1078
#define LN_aria_256_ofb128 "aria-256-ofb"
#define SN_aria_256_ofb128 "ARIA-256-OFB"
#define NID_aria_256_cfb128 1077
#define LN_aria_256_cfb128 "aria-256-cfb"
#define SN_aria_256_cfb128 "ARIA-256-CFB"
#define NID_aria_256_cbc 1076
#define LN_aria_256_cbc "aria-256-cbc"
#define SN_aria_256_cbc "ARIA-256-CBC"
#define NID_aria_256_ecb 1075
#define LN_aria_256_ecb "aria-256-ecb"
#define SN_aria_256_ecb "ARIA-256-ECB"
#define NID_aria_192_ctr 1074
#define LN_aria_192_ctr "aria-192-ctr"
#define SN_aria_192_ctr "ARIA-192-CTR"
#define NID_aria_192_ofb128 1073
#define LN_aria_192_ofb128 "aria-192-ofb"
#define SN_aria_192_ofb128 "ARIA-192-OFB"
#define NID_aria_192_cfb128 1072
#define LN_aria_192_cfb128 "aria-192-cfb"
#define SN_aria_192_cfb128 "ARIA-192-CFB"
#define NID_aria_192_cbc 1071
#define LN_aria_192_cbc "aria-192-cbc"
#define SN_aria_192_cbc "ARIA-192-CBC"
#define NID_aria_192_ecb 1070
#define LN_aria_192_ecb "aria-192-ecb"
#define SN_aria_192_ecb "ARIA-192-ECB"
#define NID_aria_128_ctr 1069
#define LN_aria_128_ctr "aria-128-ctr"
#define SN_aria_128_ctr "ARIA-128-CTR"
#define NID_aria_128_ofb128 1068
#define LN_aria_128_ofb128 "aria-128-ofb"
#define SN_aria_128_ofb128 "ARIA-128-OFB"
#define NID_aria_128_cfb128 1067
#define LN_aria_128_cfb128 "aria-128-cfb"
#define SN_aria_128_cfb128 "ARIA-128-CFB"
#define NID_aria_128_cbc 1066
#define LN_aria_128_cbc "aria-128-cbc"
#define SN_aria_128_cbc "ARIA-128-CBC"
#define NID_aria_128_ecb 1065
#define LN_aria_128_ecb "aria-128-ecb"
#define SN_aria_128_ecb "ARIA-128-ECB"
#define NID_camellia_256_cfb8 765
#define LN_camellia_256_cfb8 "camellia-256-cfb8"
#define SN_camellia_256_cfb8 "CAMELLIA-256-CFB8"
#define NID_camellia_192_cfb8 764
#define LN_camellia_192_cfb8 "camellia-192-cfb8"
#define SN_camellia_192_cfb8 "CAMELLIA-192-CFB8"
#define NID_camellia_128_cfb8 763
#define LN_camellia_128_cfb8 "camellia-128-cfb8"
#define SN_camellia_128_cfb8 "CAMELLIA-128-CFB8"
#define NID_camellia_256_cfb1 762
#define LN_camellia_256_cfb1 "camellia-256-cfb1"
#define SN_camellia_256_cfb1 "CAMELLIA-256-CFB1"
#define NID_camellia_192_cfb1 761
#define LN_camellia_192_cfb1 "camellia-192-cfb1"
#define SN_camellia_192_cfb1 "CAMELLIA-192-CFB1"
#define NID_camellia_128_cfb1 760
#define LN_camellia_128_cfb1 "camellia-128-cfb1"
#define SN_camellia_128_cfb1 "CAMELLIA-128-CFB1"
#define NID_camellia_256_cmac 972
#define LN_camellia_256_cmac "camellia-256-cmac"
#define SN_camellia_256_cmac "CAMELLIA-256-CMAC"
#define NID_camellia_256_ctr 971
#define LN_camellia_256_ctr "camellia-256-ctr"
#define SN_camellia_256_ctr "CAMELLIA-256-CTR"
#define NID_camellia_256_ccm 970
#define LN_camellia_256_ccm "camellia-256-ccm"
#define SN_camellia_256_ccm "CAMELLIA-256-CCM"
#define NID_camellia_256_gcm 969
#define LN_camellia_256_gcm "camellia-256-gcm"
#define SN_camellia_256_gcm "CAMELLIA-256-GCM"
#define NID_camellia_256_cfb128 759
#define LN_camellia_256_cfb128 "camellia-256-cfb"
#define SN_camellia_256_cfb128 "CAMELLIA-256-CFB"
#define NID_camellia_256_ofb128 768
#define LN_camellia_256_ofb128 "camellia-256-ofb"
#define SN_camellia_256_ofb128 "CAMELLIA-256-OFB"
#define NID_camellia_256_ecb 756
#define LN_camellia_256_ecb "camellia-256-ecb"
#define SN_camellia_256_ecb "CAMELLIA-256-ECB"
#define NID_camellia_192_cmac 968
#define LN_camellia_192_cmac "camellia-192-cmac"
#define SN_camellia_192_cmac "CAMELLIA-192-CMAC"
#define NID_camellia_192_ctr 967
#define LN_camellia_192_ctr "camellia-192-ctr"
#define SN_camellia_192_ctr "CAMELLIA-192-CTR"
#define NID_camellia_192_ccm 966
#define LN_camellia_192_ccm "camellia-192-ccm"
#define SN_camellia_192_ccm "CAMELLIA-192-CCM"
#define NID_camellia_192_gcm 965
#define LN_camellia_192_gcm "camellia-192-gcm"
#define SN_camellia_192_gcm "CAMELLIA-192-GCM"
#define NID_camellia_192_cfb128 758
#define LN_camellia_192_cfb128 "camellia-192-cfb"
#define SN_camellia_192_cfb128 "CAMELLIA-192-CFB"
#define NID_camellia_192_ofb128 767
#define LN_camellia_192_ofb128 "camellia-192-ofb"
#define SN_camellia_192_ofb128 "CAMELLIA-192-OFB"
#define NID_camellia_192_ecb 755
#define LN_camellia_192_ecb "camellia-192-ecb"
#define SN_camellia_192_ecb "CAMELLIA-192-ECB"
#define NID_camellia_128_cmac 964
#define LN_camellia_128_cmac "camellia-128-cmac"
#define SN_camellia_128_cmac "CAMELLIA-128-CMAC"
#define NID_camellia_128_ctr 963
#define LN_camellia_128_ctr "camellia-128-ctr"
#define SN_camellia_128_ctr "CAMELLIA-128-CTR"
#define NID_camellia_128_ccm 962
#define LN_camellia_128_ccm "camellia-128-ccm"
#define SN_camellia_128_ccm "CAMELLIA-128-CCM"
#define NID_camellia_128_gcm 961
#define LN_camellia_128_gcm "camellia-128-gcm"
#define SN_camellia_128_gcm "CAMELLIA-128-GCM"
#define NID_camellia_128_cfb128 757
#define LN_camellia_128_cfb128 "camellia-128-cfb"
#define SN_camellia_128_cfb128 "CAMELLIA-128-CFB"
#define NID_camellia_128_ofb128 766
#define LN_camellia_128_ofb128 "camellia-128-ofb"
#define SN_camellia_128_ofb128 "CAMELLIA-128-OFB"
#define NID_camellia_128_ecb 754
#define LN_camellia_128_ecb "camellia-128-ecb"