com.nimbusds.openid.connect.sdk.claims.AccessTokenHash Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of oauth2-oidc-sdk Show documentation
Show all versions of oauth2-oidc-sdk Show documentation
OAuth 2.0 SDK with OpenID Connection extensions for developing client
and server applications.
package com.nimbusds.openid.connect.sdk.claims;
import net.jcip.annotations.Immutable;
import com.nimbusds.jose.JWSAlgorithm;
import com.nimbusds.oauth2.sdk.token.AccessToken;
/**
* Access token hash ({@code at_hash}).
*
* Related specifications:
*
*
* - OpenID Connect Core 1.0, section 3.1.3.6.
*
*/
@Immutable
public final class AccessTokenHash extends HashClaim {
/**
* Creates a new access token hash with the specified value.
*
* @param value The access token hash value. Must not be {@code null}.
*/
public AccessTokenHash(final String value) {
super(value);
}
/**
* Computes the hash for the specified access token and reference JSON
* Web Signature (JWS) algorithm.
*
* @param accessToken The access token. Must not be {@code null}.
* @param alg The reference JWS algorithm. Must not be
* {@code null}.
*
* @return The access token hash, or {@code null} if the JWS algorithm
* is not supported.
*/
public static AccessTokenHash compute(final AccessToken accessToken, final JWSAlgorithm alg) {
String value = computeValue(accessToken, alg);
if (value == null)
return null;
return new AccessTokenHash(value);
}
@Override
public boolean equals(final Object object) {
return object instanceof AccessTokenHash &&
this.toString().equals(object.toString());
}
}