From 9b5b7ec337d4c5efe19f9189cd781bafec98c654 Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Thu, 30 Oct 2025 18:32:55 -0400 Subject: [PATCH 1/2] Add new algorithms defined in RFC 9864 Signed-off-by: Simo Sorce --- .../components/library-card/library-card.component.tsx | 2 ++ src/features/libraries/models/library.model.ts | 2 ++ 2 files changed, 4 insertions(+) diff --git a/src/features/libraries/components/library-card/library-card.component.tsx b/src/features/libraries/components/library-card/library-card.component.tsx index 319bb988..5d961c66 100644 --- a/src/features/libraries/components/library-card/library-card.component.tsx +++ b/src/features/libraries/components/library-card/library-card.component.tsx @@ -185,6 +185,8 @@ export const LibraryCardComponent: React.FC = ({ + +
diff --git a/src/features/libraries/models/library.model.ts b/src/features/libraries/models/library.model.ts index 28a09746..6ba39c23 100644 --- a/src/features/libraries/models/library.model.ts +++ b/src/features/libraries/models/library.model.ts @@ -25,6 +25,8 @@ export interface LibraryModel { ps512?: boolean; eddsa?: boolean; es256k?: boolean; + ed25519?: boolean; + ed448?: boolean; }; authorUrl: string | null; authorName: string; From a99c043afc6fd0fc28dd3d37b688644ac9ace42b Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Thu, 30 Oct 2025 18:33:26 -0400 Subject: [PATCH 2/2] jwcrypto: Add checkmarks for Ed25519 and Ed448 Signed-off-by: Simo Sorce --- src/data/libraries-next.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/data/libraries-next.json b/src/data/libraries-next.json index 5de66633..43fe2e01 100644 --- a/src/data/libraries-next.json +++ b/src/data/libraries-next.json @@ -3251,7 +3251,9 @@ "ps384": true, "ps512": true, "eddsa": true, - "es256k": true + "es256k": true, + "ed25519": true, + "ed448": true }, "authorUrl": "https://github.com/simo5", "authorName": "Simo Sorce",