本文整理汇总了Java中io.jsonwebtoken.SignatureAlgorithm.HS256属性的典型用法代码示例。如果您正苦于以下问题:Java SignatureAlgorithm.HS256属性的具体用法?Java SignatureAlgorithm.HS256怎么用?Java SignatureAlgorithm.HS256使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类io.jsonwebtoken.SignatureAlgorithm
的用法示例。
在下文中一共展示了SignatureAlgorithm.HS256属性的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: Gerate
public static String Gerate(String issuer, int idSubject, int hours) {
//The JWT signature algorithm we will be using to sign the token
SignatureAlgorithm signatureAlgorithm = SignatureAlgorithm.HS256;
//Hours to milliseconds
long ttlMillis = hours * 3600000;
String subject = String.valueOf(idSubject);
long nowMillis = System.currentTimeMillis();
Date now = new Date(nowMillis);
//We will sign our JWT with our ApiKey secret
byte[] apiKeySecretBytes = DatatypeConverter.parseBase64Binary(Parameters.TOKENKEY);
Key signingKey = new SecretKeySpec(apiKeySecretBytes, signatureAlgorithm.getJcaName());
//Let's set the JWT Claims
JwtBuilder builder = Jwts.builder().setIssuedAt(now)
.setSubject(subject)
.setIssuer(issuer)
.signWith(signatureAlgorithm, signingKey);
//if it has been specified, let's add the expiration
if (ttlMillis >= 0) {
long expMillis = nowMillis + ttlMillis;
Date exp = new Date(expMillis);
builder.setExpiration(exp);
}
//Builds the JWT and serializes it to a compact, URL-safe string
return builder.compact();
}
示例2: getAlgorithm
static SignatureAlgorithm getAlgorithm(byte[] hmacSigningKeyBytes) {
Assert.isTrue(hmacSigningKeyBytes != null && hmacSigningKeyBytes.length > 0,
"hmacSigningBytes cannot be null or empty.");
if (hmacSigningKeyBytes.length >= 64) {
return SignatureAlgorithm.HS512;
} else if (hmacSigningKeyBytes.length >= 48) {
return SignatureAlgorithm.HS384;
} else { //<= 32
return SignatureAlgorithm.HS256;
}
}
示例3: create
/**
* Method creates the JWT to be sent to the client
* Sends the username and userId
*
* @param user object holding user information
* @return JavaScript Web Token
*/
public static String create(User user) {
if(user == null) {
return null;
}
SignatureAlgorithm signAlgor = SignatureAlgorithm.HS256;
Key key = new SecretKeySpec(getSecret(), signAlgor.getJcaName());
String id = Integer.toString(user.getUserId());
JwtBuilder token = Jwts.builder().setId(id).setSubject(user.getUsername()).signWith(signAlgor, key);
return token.compact();
}
示例4: isSymmetric
/**
* Check if given <code>signatureAlgorithm</code> requires a symmetric (shared) key
* @param signatureAlgorithm SignatureAlgorithm
* @return <code>true</code> if given algorithm requires a symmetric (shared) key
*/
public static boolean isSymmetric(SignatureAlgorithm signatureAlgorithm) {
return SignatureAlgorithm.HS256 == signatureAlgorithm || SignatureAlgorithm.HS384 == signatureAlgorithm
|| SignatureAlgorithm.HS512 == signatureAlgorithm;
}