Merge pull request #3834 from eugenp/jjwt-alg-fix

change alg signature
This commit is contained in:
Loredana Crusoveanu 2018-03-18 14:53:00 +02:00 committed by GitHub
commit 7ead9b7c32
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ public class SecretService {
}
public byte[] getHS512SecretBytes() {
return TextCodec.BASE64.decode(secrets.get(SignatureAlgorithm.HS384.getValue()));
return TextCodec.BASE64.decode(secrets.get(SignatureAlgorithm.HS512.getValue()));
}
public Map<String, String> refreshSecrets() {