-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathopenapi.json
More file actions
996 lines (996 loc) · 28.1 KB
/
openapi.json
File metadata and controls
996 lines (996 loc) · 28.1 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
{
"openapi": "3.0.3",
"info": {
"title": "NIST CMVP Data API",
"description": "Static JSON API for NIST Cryptographic Module Validation Program data. Auto-updated weekly via GitHub Actions. Unofficial project - see https://csrc.nist.gov/projects/cryptographic-module-validation-program for authoritative data.",
"version": "3.0",
"contact": {
"url": "https://github.com/hackIDLE/nist-cmvp-api"
}
},
"externalDocs": {
"description": "Markdown API reference",
"url": "https://hackidle.github.io/nist-cmvp-api/api/docs.md"
},
"servers": [
{
"url": "https://hackidle.github.io/nist-cmvp-api",
"description": "GitHub Pages (production)"
}
],
"paths": {
"/api/index.json": {
"get": {
"summary": "API index and endpoint listing",
"operationId": "getIndex",
"responses": {
"200": {
"description": "API discovery endpoint with available endpoints and feature flags",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Index"
}
}
}
}
}
}
},
"/api/metadata.json": {
"get": {
"summary": "Dataset metadata",
"operationId": "getMetadata",
"responses": {
"200": {
"description": "Generation timestamp, module counts, and data source information",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Metadata"
}
}
}
}
}
}
},
"/api/data-quality.json": {
"get": {
"summary": "Latest data quality report",
"operationId": "getDataQuality",
"responses": {
"200": {
"description": "Misses, refreshed records, fallback usage, changed certificates, and run-health checks",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/DataQualityReport"
}
}
}
}
}
}
},
"/api/examples.json": {
"get": {
"summary": "Consumer examples",
"operationId": "getExamples",
"responses": {
"200": {
"description": "curl, Python, JavaScript, and agent-oriented examples for common queries",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ExamplesResponse"
}
}
}
}
}
}
},
"/api/indexes/vendors.json": {
"get": {
"summary": "Vendor search index",
"operationId": "getVendorIndex",
"responses": {
"200": {
"description": "Certificate references keyed by vendor name",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SearchIndexResponse"
}
}
}
}
}
}
},
"/api/indexes/algorithms.json": {
"get": {
"summary": "Algorithm search index",
"operationId": "getAlgorithmIndex",
"responses": {
"200": {
"description": "Certificate references keyed by algorithm category",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SearchIndexResponse"
}
}
}
}
}
}
},
"/api/indexes/statuses.json": {
"get": {
"summary": "Status search index",
"operationId": "getStatusIndex",
"responses": {
"200": {
"description": "Certificate references keyed by validation status",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SearchIndexResponse"
}
}
}
}
}
}
},
"/api/indexes/standards.json": {
"get": {
"summary": "Standard search index",
"operationId": "getStandardIndex",
"responses": {
"200": {
"description": "Certificate references keyed by FIPS standard",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SearchIndexResponse"
}
}
}
}
}
}
},
"/api/modules.json": {
"get": {
"summary": "Active validated cryptographic modules",
"operationId": "getModules",
"responses": {
"200": {
"description": "Currently 1086 active validated modules with enriched details",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ModulesResponse"
}
}
}
}
}
}
},
"/api/historical-modules.json": {
"get": {
"summary": "Historical (expired/revoked) cryptographic modules",
"operationId": "getHistoricalModules",
"responses": {
"200": {
"description": "Currently 4170 historical modules",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ModulesResponse"
}
}
}
}
}
}
},
"/api/modules-in-process.json": {
"get": {
"summary": "Modules currently in the validation process",
"operationId": "getModulesInProcess",
"responses": {
"200": {
"description": "Currently 325 modules in process",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ModulesInProcessResponse"
}
}
}
}
}
}
},
"/api/algorithms.json": {
"get": {
"summary": "Algorithm usage statistics across all certificates",
"operationId": "getAlgorithms",
"responses": {
"200": {
"description": "Algorithm counts and certificate mappings",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/AlgorithmsResponse"
}
}
}
}
}
}
},
"/api/certificates/index.json": {
"get": {
"summary": "Certificate detail discovery index",
"operationId": "getCertificateIndex",
"responses": {
"200": {
"description": "Compact index of all per-certificate JSON detail files",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CertificateIndexResponse"
}
}
}
}
}
}
},
"/api/certificates/{certificate}.json": {
"get": {
"summary": "Full certificate detail record",
"operationId": "getCertificateDetail",
"parameters": [
{
"name": "certificate",
"in": "path",
"required": true,
"schema": {
"type": "string"
},
"description": "Numeric CMVP certificate number"
}
],
"responses": {
"200": {
"description": "Certificate detail payload mirroring the NIST certificate page sections",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CertificateDetailResponse"
}
}
}
},
"404": {
"description": "Certificate detail record not found"
}
}
}
}
},
"components": {
"schemas": {
"Metadata": {
"type": "object",
"properties": {
"generated_at": {
"type": "string",
"format": "date-time",
"example": "2026-05-15T02:49:52.984765Z"
},
"total_modules": {
"type": "integer",
"example": 1086
},
"total_historical_modules": {
"type": "integer",
"example": 4170
},
"total_modules_in_process": {
"type": "integer",
"example": 325
},
"total_certificates_with_algorithms": {
"type": "integer",
"example": 1630
},
"total_certificate_details": {
"type": "integer",
"example": 5256
},
"source": {
"type": "string",
"example": "https://csrc.nist.gov/projects/cryptographic-module-validation-program/validated-modules/search"
},
"modules_in_process_source": {
"type": "string",
"example": "https://csrc.nist.gov/Projects/cryptographic-module-validation-program/modules-in-process/modules-in-process-list"
},
"algorithm_source": {
"type": "string",
"example": "crawl4ai"
},
"algorithm_cache_version": {
"type": "string",
"example": "2026-04-15-legacy-v1"
},
"algorithm_extraction_schema_version": {
"type": "string",
"example": "1.0"
},
"extraction_metrics": {
"type": "object",
"additionalProperties": true
},
"version": {
"type": "string",
"example": "3.0"
}
}
},
"Module": {
"type": "object",
"description": "A FIPS 140-2/140-3 validated cryptographic module",
"properties": {
"Certificate Number": {
"type": "string",
"example": "5267"
},
"Certificate Number_url": {
"type": "string",
"example": "https://csrc.nist.gov/projects/cryptographic-module-validation-program/certificate/5267"
},
"Module Name": {
"type": "string",
"example": "Intel FNIC Control Plane Cryptographic Module"
},
"Module Type": {
"type": "string",
"example": "Hardware"
},
"Validation Date": {
"type": "string",
"example": "05/13/2026"
},
"Vendor Name": {
"type": "string",
"example": "Intel Corporation"
},
"algorithm_extraction": {
"type": "object",
"additionalProperties": true
},
"caveat": {
"type": "string",
"example": "When operated in approved mode. No assurance of minimum security of SSPs (e.g., keys, bit strings) that are externally loaded, or of SSPs established with externally loaded SSPs."
},
"certificate_detail_url": {
"type": "string",
"example": "https://csrc.nist.gov/projects/cryptographic-module-validation-program/certificate/5267"
},
"description": {
"type": "string",
"example": "Intel FNIC Control Plane Cryptographic Module provides hardware engines supporting cryptographic offload for AES, ECDSA, RSA, HMAC and SHA algorithms, and firmware component providing SPDM initialization, key exchange and secure manageability."
},
"detail_available": {
"type": "boolean",
"example": true
},
"embodiment": {
"type": "string",
"example": "SingleChip"
},
"module_name": {
"type": "string",
"example": "Intel FNIC Control Plane Cryptographic Module"
},
"module_type": {
"type": "string",
"example": "Hardware"
},
"overall_level": {
"type": "integer",
"example": 1
},
"security_policy_url": {
"type": "string",
"example": "https://csrc.nist.gov/CSRC/media/projects/cryptographic-module-validation-program/documents/security-policies/140sp5267.pdf"
},
"standard": {
"type": "string",
"example": "FIPS 140-3"
},
"status": {
"type": "string",
"example": "Active"
},
"sunset_date": {
"type": "string",
"example": "5/12/2031"
},
"algorithms": {
"type": "array",
"items": {
"type": "string"
},
"example": [
"AES",
"DRBG",
"ECDSA"
]
},
"algorithms_detailed": {
"type": "array",
"items": {
"type": "string"
},
"example": [
"AES-CBC A4995 Direction - Decrypt, Encrypt | Key Length - 128, 256 | SP 800-38A",
"AES-CMAC A4995 Direction - Generation | Key Length - 128, 256 | SP 800-38B",
"AES-CTR A4995 Direction - Decrypt, Encrypt | Key Length - 128, 256 | SP 800-38A"
]
},
"software_versions": {
"type": "string",
"nullable": true,
"example": ""
},
"hardware_versions": {
"type": "string",
"nullable": true,
"example": ""
},
"firmware_versions": {
"type": "string",
"nullable": true,
"example": ""
}
}
},
"ModulesResponse": {
"type": "object",
"properties": {
"metadata": {
"$ref": "#/components/schemas/Metadata"
},
"modules": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Module"
}
}
}
},
"ModulesInProcessResponse": {
"type": "object",
"properties": {
"metadata": {
"$ref": "#/components/schemas/Metadata"
},
"modules_in_process": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Module"
}
}
}
},
"DataQualityReport": {
"type": "object",
"properties": {
"metadata": {
"$ref": "#/components/schemas/Metadata"
},
"summary": {
"type": "object",
"additionalProperties": {
"type": "integer"
}
},
"update_monitor": {
"type": "object",
"additionalProperties": true
},
"misses": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": true
}
},
"refreshed_records": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": true
}
},
"fallback_usage": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": true
}
},
"changed_certificates": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": true
}
}
}
},
"ExamplesResponse": {
"type": "object",
"properties": {
"metadata": {
"$ref": "#/components/schemas/Metadata"
},
"base_url": {
"type": "string"
},
"examples": {
"type": "object",
"additionalProperties": true
}
}
},
"SearchIndexReference": {
"type": "object",
"properties": {
"certificate_number": {
"type": "string"
},
"dataset": {
"type": "string",
"enum": [
"active",
"historical"
]
},
"path": {
"type": "string",
"example": "/api/certificates/5238.json"
},
"vendor_name": {
"type": "string",
"nullable": true
},
"module_name": {
"type": "string",
"nullable": true
},
"standard": {
"type": "string",
"nullable": true
},
"status": {
"type": "string",
"nullable": true
},
"algorithm_count": {
"type": "integer"
}
}
},
"SearchIndexResponse": {
"type": "object",
"properties": {
"metadata": {
"$ref": "#/components/schemas/Metadata"
},
"index": {
"type": "string"
},
"field": {
"type": "string"
},
"key_count": {
"type": "integer"
},
"entry_count": {
"type": "integer"
},
"keys": {
"type": "object",
"additionalProperties": {
"type": "array",
"items": {
"$ref": "#/components/schemas/SearchIndexReference"
}
}
}
}
},
"AlgorithmsResponse": {
"type": "object",
"properties": {
"total_unique_algorithms": {
"type": "integer"
},
"total_certificate_algorithm_pairs": {
"type": "integer"
},
"algorithms": {
"type": "object",
"additionalProperties": {
"type": "object",
"properties": {
"count": {
"type": "integer"
},
"certificates": {
"type": "array",
"items": {
"type": "integer"
}
}
}
}
},
"metadata": {
"type": "object",
"additionalProperties": true
}
}
},
"CertificateIndexEntry": {
"type": "object",
"description": "Compact discovery row for a per-certificate detail JSON file",
"properties": {
"certificate_number": {
"type": "string"
},
"dataset": {
"type": "string",
"enum": [
"active",
"historical"
]
},
"path": {
"type": "string",
"example": "/api/certificates/5238.json"
},
"nist_page_url": {
"type": "string"
},
"certificate_detail_url": {
"type": "string"
},
"security_policy_url": {
"type": "string",
"nullable": true
},
"vendor_name": {
"type": "string",
"nullable": true
},
"module_name": {
"type": "string",
"nullable": true
},
"standard": {
"type": "string",
"nullable": true
},
"status": {
"type": "string",
"nullable": true
},
"module_type": {
"type": "string",
"nullable": true
},
"overall_level": {
"oneOf": [
{
"type": "integer"
},
{
"type": "string"
}
],
"nullable": true
},
"validation_date": {
"type": "string",
"nullable": true
},
"validation_dates": {
"type": "array",
"items": {
"type": "string"
}
},
"sunset_date": {
"type": "string",
"nullable": true
},
"algorithms": {
"type": "array",
"items": {
"type": "string"
}
},
"algorithm_count": {
"type": "integer"
},
"algorithm_extraction_status": {
"type": "string",
"nullable": true
},
"algorithm_source": {
"type": "string",
"nullable": true
},
"detail_available": {
"type": "boolean"
}
}
},
"CertificateIndexResponse": {
"type": "object",
"properties": {
"metadata": {
"$ref": "#/components/schemas/Metadata"
},
"total_certificates": {
"type": "integer"
},
"certificate_paths": {
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"certificates": {
"type": "array",
"items": {
"$ref": "#/components/schemas/CertificateIndexEntry"
}
}
}
},
"CertificateDetail": {
"type": "object",
"description": "Structured certificate detail record derived from the NIST certificate page",
"properties": {
"algorithm_extraction": {
"type": "object",
"additionalProperties": true
},
"caveat": {
"type": "string",
"example": "When operated with module AWS-LC Cryptographic Module (dynamic) validated to FIPS 140-3 under Cert. #5146 operating in approved mode, No assurance of minimum security of SSPs (e.g., keys, bit strings) that are externally loaded, or of SSPs established with externally loaded SSPs"
},
"certificate_detail_url": {
"type": "string",
"example": "https://csrc.nist.gov/projects/cryptographic-module-validation-program/certificate/5256"
},
"certificate_number": {
"type": "string",
"example": "5256"
},
"dataset": {
"type": "string",
"example": "active"
},
"description": {
"type": "string",
"example": "MACsec and DWDM link encryption is used by AWS networking infrastructure to secure traffic across its core network consisting of long-distance and large-scale data communications across the globe. Traffic flowing across the AWS global network is protected by strong cryptography and meets regulatory requirements."
},
"embodiment": {
"type": "string",
"example": "MultiChipStand"
},
"firmware_versions": {
"type": "string",
"nullable": true,
"example": ""
},
"generated_at": {
"type": "string",
"example": "2026-05-15T02:49:52.984765Z"
},
"hardware_versions": {
"type": "string",
"nullable": true,
"example": ""
},
"module_name": {
"type": "string",
"example": "AWS Link Encryption Module"
},
"module_type": {
"type": "string",
"example": "Software-hybrid"
},
"nist_page_url": {
"type": "string",
"example": "https://csrc.nist.gov/projects/cryptographic-module-validation-program/certificate/5256"
},
"overall_level": {
"type": "integer",
"example": 1
},
"related_files": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": true
}
},
"security_level_exceptions": {
"type": "array",
"items": {
"type": "string"
},
"example": [
"Non-invasive security: N/A",
"Mitigation of other attacks: N/A"
]
},
"security_policy_url": {
"type": "string",
"example": "https://csrc.nist.gov/CSRC/media/projects/cryptographic-module-validation-program/documents/security-policies/140sp5256.pdf"
},
"software_versions": {
"type": "string",
"nullable": true,
"example": ""
},
"standard": {
"type": "string",
"example": "FIPS 140-3"
},
"status": {
"type": "string",
"example": "Active"
},
"sunset_date": {
"type": "string",
"example": "5/4/2031"
},
"validation_date": {
"type": "string",
"example": "5/5/2026"
},
"validation_dates": {
"type": "array",
"items": {
"type": "string"
},
"example": [
"5/5/2026"
]
},
"validation_history": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": true
}
},
"vendor": {
"type": "object",
"additionalProperties": true
},
"vendor_name": {
"type": "string",
"example": "Amazon Web Services, Inc."
},
"algorithms": {
"type": "array",
"items": {
"type": "string"
},
"example": [
"AES",
"HMAC",
"SHA"
]
},
"algorithms_detailed": {
"type": "array",
"items": {
"type": "string"
},
"example": [
"AES-ECB | A1359 | Direction - EncryptKey Length - 128,256 | SP 800-38A",
"AES-GCM | A1359 | Direction - Decrypt,EncryptIV Generation - ExternalKey Length - 128,256 | SP 800-38D",
"AES-XPN | A1359 | Direction - Decrypt,EncryptKey Length - 128,256IV Generation - External | SP 800-38D"
]
}
}
},
"CertificateDetailResponse": {
"type": "object",
"properties": {
"metadata": {
"type": "object",
"properties": {
"generated_at": {
"type": "string",
"format": "date-time"
},
"dataset": {
"type": "string"
},
"source": {
"type": "string"
}
}
},
"certificate": {
"$ref": "#/components/schemas/CertificateDetail"
}
}
},
"Index": {
"type": "object",
"properties": {
"name": {
"type": "string",
"example": "NIST CMVP API"
},
"description": {
"type": "string",
"example": "Static JSON API for NIST Cryptographic Module Validation Program data with certificate detail records and generated agent-facing documentation"
},
"base_url": {
"type": "string",
"example": "https://hackidle.github.io/nist-cmvp-api"
},
"endpoints": {
"type": "object"
},
"documentation": {
"type": "object"
},
"last_updated": {
"type": "string",
"format": "date-time"
},
"total_modules": {
"type": "integer"
},
"total_historical_modules": {
"type": "integer"
},
"total_modules_in_process": {
"type": "integer"
},
"total_certificates_with_algorithms": {
"type": "integer"
},
"total_certificate_details": {
"type": "integer"
},
"features": {
"type": "object"
}
}
}
}
}
}