本文整理汇总了Java中com.auth0.jwt.interfaces.DecodedJWT.getAlgorithm方法的典型用法代码示例。如果您正苦于以下问题:Java DecodedJWT.getAlgorithm方法的具体用法?Java DecodedJWT.getAlgorithm怎么用?Java DecodedJWT.getAlgorithm使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.auth0.jwt.interfaces.DecodedJWT
的用法示例。
在下文中一共展示了DecodedJWT.getAlgorithm方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: isValidJWT
import com.auth0.jwt.interfaces.DecodedJWT; //导入方法依赖的package包/类
public static boolean isValidJWT(String jwt) {
if (StringUtils.countMatches(jwt, ".") != 2) {
return false;
}
try {
DecodedJWT decoded = JWT.decode(jwt);
decoded.getAlgorithm();
return true;
} catch (Exception exception) {}
return false;
}
示例2: testWithProperKey
import com.auth0.jwt.interfaces.DecodedJWT; //导入方法依赖的package包/类
@Test
public void testWithProperKey() throws IllegalArgumentException, UnsupportedEncodingException {
CustomJWToken tokenObj = new CustomJWToken(TestTokens.hs256_token);
JWTVerifier verifier = JWT.require(AlgorithmLinker.getVerifierAlgorithm(tokenObj.getAlgorithm(), "secret")).build();
DecodedJWT test = verifier.verify(TestTokens.hs256_token);
test.getAlgorithm();
}
示例3: testWithFalseKey
import com.auth0.jwt.interfaces.DecodedJWT; //导入方法依赖的package包/类
@Test(expected=com.auth0.jwt.exceptions.SignatureVerificationException.class)
public void testWithFalseKey() throws IllegalArgumentException, UnsupportedEncodingException {
CustomJWToken tokenObj = new CustomJWToken(TestTokens.hs256_token);
JWTVerifier verifier = JWT.require(AlgorithmLinker.getVerifierAlgorithm(tokenObj.getAlgorithm(), "invalid")).build();
DecodedJWT test = verifier.verify(TestTokens.hs256_token);
test.getAlgorithm();
}