其他分享
首页 > 其他分享> > Caused by: io.jsonwebtoken.security.WeakKeyException: The specified key byte array is 224 bits which

Caused by: io.jsonwebtoken.security.WeakKeyException: The specified key byte array is 224 bits which

作者:互联网

Caused by: io.jsonwebtoken.security.WeakKeyException: The specified key byte array is 224 bits which is not secure enough for any JWT HMAC-SHA algorithm.  The JWT JWA Specification (RFC 7518, Section 3.2) states that keys used with HMAC-SHA algorithms MUST have a size >= 256 bits (the key size must be greater than or equal to the hash output size).  Consider using the io.jsonwebtoken.security.Keys#secretKeyFor(SignatureAlgorithm) method to create a key guaranteed to be secure enough for your preferred HMAC-SHA algorithm.  See https://tools.ietf.org/html/rfc7518#section-3.2 for more information.

 

翻译之后:

 

配置的base64-secret长度不够,目前是224位,需要的长度必须大于等于256位,增加加密字符串长度即可

标签:key,Caused,SHA,io,jsonwebtoken,array,bits,size
来源: https://blog.csdn.net/wdz985721191/article/details/117788948