您好我正在使用Spring安全性在Spring Boot中编写JWT。当我使用身体部分中的以下详细信息向邮递员请求POST时
{
"userName": "RAM",
"id":123,
"role": "admin"
}
然后我遇到错误
{
"timestamp": "2018-05-06T14:57:12.048+0000",
"status": 500,
"error": "Internal Server Error",
"message": "Base64-encoded key bytes may only be specified for HMAC signatures. If using RSA or Elliptic Curve, use the signWith(SignatureAlgorithm, Key) method instead.",
"path": "/token"
}
我使用以下代码为jwt builder for generator
@Component
public class JwtGenerator {
public String generate(JwtUser jwtUser) {
// TODO Auto-generated method stub
Claims claim= Jwts.claims()
.setSubject(jwtUser.getUserName());
claim.put("userId", String.valueOf(jwtUser.getId()));
claim.put("role", jwtUser.getRole());
String secret = "YouTube";
byte[] bytesEncoded = Base64.getEncoder().encode(secret.getBytes());
return Jwts.builder().setClaims(claim).signWith(SignatureAlgorithm.ES512, secret).compact();
//With(SignatureAlgorithm.ES512, bytesEncoded).compact();
//signWith(SignatureAlgorithm.ES512,"YouTube").compact();
}
}
我使用直接字符串值作为密钥和其他2种可能的组合,但无法弄清楚问题。我还提供了JwtBuilder中DefaultJwtBuilder从下面的代码中所期望的编码字符串,仍然没有命中。
@Override
public JwtBuilder signWith(SignatureAlgorithm alg, String base64EncodedSecretKey) {
Assert.hasText(base64EncodedSecretKey, "base64-encoded secret key cannot be null or empty.");
Assert.isTrue(alg.isHmac(), "Base64-encoded key bytes may only be specified for HMAC signatures. If using RSA or Elliptic Curve, use the signWith(SignatureAlgorithm, Key) method instead.");
byte[] bytes = TextCodec.BASE64.decode(base64EncodedSecretKey);
return signWith(alg, bytes);
}
任何帮助都会非常感激。
答案 0 :(得分:1)
您代码中的签名算法是使用椭圆曲线算法的ES512。由于您使用的是密钥,因此您想使用前缀为“ HS”的HMAC算法。 HS256,HS384或HS512。
更改
Jwts.builder().setClaims(claim).signWith(SignatureAlgorithm.ES512, secret).compact();
致
Jwts.builder().setClaims(claim).signWith(SignatureAlgorithm.HS512, secret).compact();
答案 1 :(得分:0)
从“ SignatureAlgorithm.ES512,机密”切换到“ SignatureAlgorithm.HS512,机密”,您只需要用户名和密码即可。