From da57e6d3f93525f770ea70fdd69937a359e25b28 Mon Sep 17 00:00:00 2001 From: Mehrn0ush Date: Sun, 25 Jan 2026 15:56:05 +0330 Subject: [PATCH 1/2] feat(registry): add scrypt (RFC7914) to Cryptography Registry #Issue783 Signed-off-by: Mehrn0ush --- schema/cryptography-defs.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/schema/cryptography-defs.json b/schema/cryptography-defs.json index 0a2bdff6..4d9613c8 100644 --- a/schema/cryptography-defs.json +++ b/schema/cryptography-defs.json @@ -1451,6 +1451,21 @@ } ] }, + { + "family": "scrypt", + "standard": [ + { + "name": "RFC7914", + "url": "https://doi.org/10.17487/RFC7914" + } + ], + "variant": [ + { + "pattern": "scrypt[-{N}][-{r}][-{p}][-{dkLen}]", + "primitive": "hash" + } + ] + }, { "family": "A5/1", "variant": [ From 5fb895532f1bbf0969832890dbdd32372b660f3e Mon Sep 17 00:00:00 2001 From: Mehrn0ush Date: Thu, 19 Feb 2026 10:21:04 +0330 Subject: [PATCH 2/2] fix(schema): add scrypt to algorithmFamiliesEnum Signed-off-by: Mehrn0ush --- schema/cryptography-defs.schema.json | 1 + 1 file changed, 1 insertion(+) diff --git a/schema/cryptography-defs.schema.json b/schema/cryptography-defs.schema.json index 1a873a01..81d95199 100644 --- a/schema/cryptography-defs.schema.json +++ b/schema/cryptography-defs.schema.json @@ -301,6 +301,7 @@ "RSAES-PKCS1", "RSASSA-PKCS1", "RSASSA-PSS", + "scrypt", "SEED", "SHA-1", "SHA-2",