mirror of
https://github.com/keycloak/keycloak.git
synced 2026-05-26 13:50:48 +00:00
JWK Algorithm Key Pair support (#44203)
Closes #44141 Signed-off-by: stianst <stianst@gmail.com>
This commit is contained in:
+16
@@ -0,0 +1,16 @@
|
||||
package org.keycloak.crypto.def.test;
|
||||
|
||||
import org.keycloak.common.util.Environment;
|
||||
import org.keycloak.jose.jwk.AKPJWKTest;
|
||||
|
||||
import org.junit.Assume;
|
||||
import org.junit.Before;
|
||||
|
||||
public class DefaultCryptoAKPJWKTest extends AKPJWKTest {
|
||||
|
||||
@Before
|
||||
public void before() {
|
||||
Assume.assumeFalse("Java is in FIPS mode. Skipping the test.", Environment.isJavaInFipsMode());
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user