Skip to content

Commit 435edce

Browse files
fix(registry): correct TUAK naming and bcrypt pattern syntax (#751)
As discussed in ticket #750, this PR fixes data-quality issues in the Cryptography Registry. Fixes #750 ### Details - Fixes malformed bcrypt pattern optional parameter syntax (`bcrypt[-{cost)]` → `bcrypt[-{cost}]`) - Corrects TUAK algorithm family naming (previously listed as TUAC for MAC and KDF variants)
2 parents 4b6408a + 501135d commit 435edce

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

schema/cryptography-defs.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1022,11 +1022,11 @@
10221022
],
10231023
"variant": [
10241024
{
1025-
"pattern": "TUAC[-MAC]",
1025+
"pattern": "TUAK[-MAC]",
10261026
"primitive": "mac"
10271027
},
10281028
{
1029-
"pattern": "TUAC[-KDF]",
1029+
"pattern": "TUAK[-KDF]",
10301030
"primitive": "kdf"
10311031
}
10321032
]
@@ -1411,7 +1411,7 @@
14111411
],
14121412
"variant": [
14131413
{
1414-
"pattern": "bcrypt[-{cost)]",
1414+
"pattern": "bcrypt[-{cost}]",
14151415
"primitive": "hash"
14161416
}
14171417
]

0 commit comments

Comments
 (0)