Skip to content

Commit 81f31a6

Browse files
fix(crypto-registry): normalize RFC/FIPS standard name formatting (#847)
This PR normalizes a few outlier `standard.name` strings in `schema/cryptography-defs.json` to match the existing naming convention: - `RFC 5297` -> `RFC5297` - `FIPS 203/204/205` -> `FIPS203/FIPS204/FIPS205` URLs are unchanged; this is a string-formatting consistency fix only. Fixes #846
2 parents b20b074 + 117e2e4 commit 81f31a6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

schema/cryptography-defs.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -418,7 +418,7 @@
418418
{
419419
"standard": [
420420
{
421-
"name": "RFC 5297",
421+
"name": "RFC5297",
422422
"url": "https://doi.org/10.17487/RFC5297"
423423
}
424424
],
@@ -723,7 +723,7 @@
723723
"family": "ML-DSA",
724724
"standard": [
725725
{
726-
"name": "FIPS 204",
726+
"name": "FIPS204",
727727
"url": "https://doi.org/10.6028/NIST.FIPS.204"
728728
}
729729
],
@@ -742,7 +742,7 @@
742742
"family": "SLH-DSA",
743743
"standard": [
744744
{
745-
"name": "FIPS 205",
745+
"name": "FIPS205",
746746
"url": "https://doi.org/10.6028/NIST.FIPS.205"
747747
}
748748
],
@@ -811,7 +811,7 @@
811811
"family": "ML-KEM",
812812
"standard": [
813813
{
814-
"name": "FIPS 203",
814+
"name": "FIPS203",
815815
"url": "https://doi.org/10.6028/NIST.FIPS.203"
816816
}
817817
],

0 commit comments

Comments
 (0)