We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ace4b79 commit 68e9548Copy full SHA for 68e9548
1 file changed
src/main/java/io/fusionauth/domain/Key.java
@@ -1,5 +1,5 @@
1
/*
2
- * Copyright (c) 2019-2024, FusionAuth, All Rights Reserved
+ * Copyright (c) 2019-2025, FusionAuth, All Rights Reserved
3
*
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
* you may not use this file except in compliance with the License.
@@ -214,7 +214,8 @@ public enum KeyAlgorithm {
214
HS512("HmacSHA512"),
215
RS256("SHA256withRSA"),
216
RS384("SHA384withRSA"),
217
- RS512("SHA512withRSA");
+ RS512("SHA512withRSA"),
218
+ Ed25519("Ed25519");
219
220
public String algorithm;
221
@@ -230,7 +231,8 @@ public String getName() {
230
231
public enum KeyType {
232
EC,
233
RSA,
- HMAC
234
+ HMAC,
235
+ OKP
236
}
237
238
public static class CertificateInformation {
0 commit comments