Skip to content

Commit

Permalink
fix: KID encoding
Browse files Browse the repository at this point in the history
- removed erroneous double encoding of KID
- removed unnecessary enconding method
  • Loading branch information
ascheibal committed Oct 12, 2024
1 parent 787b0b4 commit e53dadc
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -280,8 +280,4 @@ private Optional<TrustedCertificateTrustList> searchForIssuer(TrustedCertificate
.equals(cert.getParsedCertificate().getIssuerX500Principal()))
.findFirst();
}

private String getEncodedKid(String kid) {
return Base64URL.encode(kid).toString();
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -314,8 +314,4 @@ private static class LDProof {

}
}

private String getEncodedKid(String kid) {
return Base64URL.encode(kid).toString();
}
}

0 comments on commit e53dadc

Please sign in to comment.