Skip to content

Commit 9b5b7ec

Browse files
committed
Add new algorithms defined in RFC 9864
Signed-off-by: Simo Sorce <simo@redhat.com>
1 parent a62bf14 commit 9b5b7ec

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

src/features/libraries/components/library-card/library-card.component.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -185,6 +185,8 @@ export const LibraryCardComponent: React.FC<LibraryCardComponentProps> = ({
185185
<AlgItemComponent label="PS384" isSupported={support.ps384} />
186186
<AlgItemComponent label="PS512" isSupported={support.ps512} />
187187
<AlgItemComponent label="EdDSA" isSupported={support.eddsa} />
188+
<AlgItemComponent label="Ed25519" isSupported={support.ed25519} />
189+
<AlgItemComponent label="Ed448" isSupported={support.ed448} />
188190
</ul>
189191
</div>
190192
<div className={styles.metadata}>

src/features/libraries/models/library.model.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ export interface LibraryModel {
2525
ps512?: boolean;
2626
eddsa?: boolean;
2727
es256k?: boolean;
28+
ed25519?: boolean;
29+
ed448?: boolean;
2830
};
2931
authorUrl: string | null;
3032
authorName: string;

0 commit comments

Comments
 (0)