本文整理了Java中com.nimbusds.jose.jwk.JWK.computeThumbprint()
方法的一些代码示例,展示了JWK.computeThumbprint()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。JWK.computeThumbprint()
方法的具体详情如下:
包路径:com.nimbusds.jose.jwk.JWK
类名称: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)){
内容来源于网络,如有侵权,请联系作者删除!