Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions src/main/java/io/fusionauth/domain/Key.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2019-2024, FusionAuth, All Rights Reserved
* Copyright (c) 2019-2025, FusionAuth, All Rights Reserved
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -214,7 +214,8 @@ public enum KeyAlgorithm {
HS512("HmacSHA512"),
RS256("SHA256withRSA"),
RS384("SHA384withRSA"),
RS512("SHA512withRSA");
RS512("SHA512withRSA"),
Ed25519("Ed25519");

public String algorithm;

Expand All @@ -230,7 +231,8 @@ public String getName() {
public enum KeyType {
EC,
RSA,
HMAC
HMAC,
OKP
}

public static class CertificateInformation {
Expand Down