KEYCLOAK-12899 Fix incorrect exception message in JWE
This commit is contained in:
parent
cae46d8443
commit
6eef8b5dd4
1 changed files with 1 additions and 1 deletions
|
@ -141,7 +141,7 @@ public class JWE {
|
|||
}
|
||||
|
||||
if (encryptionProvider == null) {
|
||||
throw new IllegalArgumentException("No provider for enc '" + header.getAlgorithm() + "'");
|
||||
throw new IllegalArgumentException("No provider for enc '" + header.getEncryptionAlgorithm() + "'");
|
||||
}
|
||||
|
||||
keyStorage.setEncryptionProvider(encryptionProvider);
|
||||
|
|
Loading…
Reference in a new issue