com.nimbusds.jose.jwk.JWK.computeThumbprint()方法的使用及代码示例

x33g5p2x  于2022-01-22 转载在 其他  
字(0.9k)|赞(0)|评价(0)|浏览(172)

本文整理了Java中com.nimbusds.jose.jwk.JWK.computeThumbprint()方法的一些代码示例,展示了JWK.computeThumbprint()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。JWK.computeThumbprint()方法的具体详情如下:
包路径:com.nimbusds.jose.jwk.JWK
类名称:JWK
方法名:computeThumbprint

JWK.computeThumbprint介绍

[英]Computes the SHA-256 thumbprint of this JWK. See RFC 7638 for more information.
[中]计算此JWK的SHA-256指纹。有关更多信息,请参阅RFC 7638。

代码示例

代码示例来源:origin: com.nimbusds/nimbus-jose-jwt

/**
 * Computes the SHA-256 thumbprint of this JWK. See RFC 7638 for more
 * information.
 *
 * @return The SHA-256 thumbprint.
 *
 * @throws JOSEException If the SHA-256 hash algorithm is not
 *                       supported.
 */
public Base64URL computeThumbprint()
  throws JOSEException {
  return computeThumbprint("SHA-256");
}

代码示例来源:origin: de.adorsys.cryptoutils/jjwk

for (JWK jwk : keys) {
  String keyID = jwk.getKeyID();
  Base64URL thumbprint = jwk.computeThumbprint();
  String expectedKeyId = thumbprint.toString().toLowerCase();
  if(!StringUtils.equals(keyID, expectedKeyId)){

相关文章