当前位置: 首页>>代码示例>>Java>>正文


Java DecodedJWT.getAlgorithm方法代码示例

本文整理汇总了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;
}
 
开发者ID:mvetsch,项目名称:JWT4B,代码行数:12,代码来源:TokenCheck.java

示例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();
}
 
开发者ID:mvetsch,项目名称:JWT4B,代码行数:8,代码来源:TestAlgorithmLinker.java

示例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();
}
 
开发者ID:mvetsch,项目名称:JWT4B,代码行数:8,代码来源:TestAlgorithmLinker.java


注:本文中的com.auth0.jwt.interfaces.DecodedJWT.getAlgorithm方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。