Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ private void checkKeySetLocationIsFile(String keySetLocation) {
}
}

private JWSSigner getJWSSigner(JWK jwk) {
protected JWSSigner getJWSSigner(JWK jwk) {
try {
KeyType kty = jwk.getKeyType();
if (kty.equals(KeyType.RSA)) {
Expand All @@ -253,7 +253,7 @@ private JWSSigner getJWSSigner(JWK jwk) {
}
}

private JWEEncrypter getJWEEncrypter(JWK jwk) {
protected JWEEncrypter getJWEEncrypter(JWK jwk) {
try {
KeyType kty = jwk.getKeyType();
if (kty.equals(KeyType.RSA)) {
Expand All @@ -268,7 +268,7 @@ private JWEEncrypter getJWEEncrypter(JWK jwk) {
}
}

private JWSVerifier getJWSVerifier(JWK jwk) {
protected JWSVerifier getJWSVerifier(JWK jwk) {
try {
KeyType kty = jwk.getKeyType();
if (kty.equals(KeyType.RSA)) {
Expand All @@ -283,7 +283,7 @@ private JWSVerifier getJWSVerifier(JWK jwk) {
}
}

private JWEDecrypter getJWEDecrypter(JWK jwk) {
protected JWEDecrypter getJWEDecrypter(JWK jwk) {
try {
KeyType kty = jwk.getKeyType();
if (kty.equals(KeyType.RSA)) {
Expand Down
Loading