Skip to content

Commit

Permalink
fix(jans-auth-server): do not serialize jwkThumbprint
Browse files Browse the repository at this point in the history
  • Loading branch information
yuriyz committed Apr 5, 2022
1 parent a83f932 commit d8634fe
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

package io.jans.as.model.jwk;

import com.fasterxml.jackson.annotation.JsonIgnore;
import com.nimbusds.jose.jwk.JWKException;
import io.jans.as.model.crypto.signature.EllipticEdvardsCurve;
import io.jans.as.model.util.Base64Util;
Expand Down Expand Up @@ -268,6 +269,7 @@ public void setY(String y) {
* @return The thumbprint of a JSON Web Key (JWK)
* @see <a href="https://datatracker.ietf.org/doc/html/rfc7638">JSON Web Key (JWK) Thumbprint</a>
*/
@JsonIgnore
public String getJwkThumbprint() throws NoSuchAlgorithmException, NoSuchProviderException, JWKException {
String result;

Expand Down

0 comments on commit d8634fe

Please sign in to comment.