Skip to content

Commit 1556c71

Browse files
Merge branch 'develop' of github.com:FusionAuth/fusionauth-java-client into lyle/ENG-3375/introspect-and-libs
2 parents e57d0f5 + 68e9548 commit 1556c71

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

  • src/main/java/io/fusionauth/domain

src/main/java/io/fusionauth/domain/Key.java

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2019-2024, FusionAuth, All Rights Reserved
2+
* Copyright (c) 2019-2025, FusionAuth, All Rights Reserved
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -214,7 +214,8 @@ public enum KeyAlgorithm {
214214
HS512("HmacSHA512"),
215215
RS256("SHA256withRSA"),
216216
RS384("SHA384withRSA"),
217-
RS512("SHA512withRSA");
217+
RS512("SHA512withRSA"),
218+
Ed25519("Ed25519");
218219

219220
public String algorithm;
220221

@@ -230,7 +231,8 @@ public String getName() {
230231
public enum KeyType {
231232
EC,
232233
RSA,
233-
HMAC
234+
HMAC,
235+
OKP
234236
}
235237

236238
public static class CertificateInformation {

0 commit comments

Comments
 (0)