欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Des加密解密算法报错:Input length must be multiple of 8 when decrypting with padded cipher

程序员文章站 2022-07-10 15:31:01
...

Input length must be multiple of 8 when decrypting with padded cipher
翻译之后:
使用填充密码解密时,输入长度必须是8的倍数

我的场景:
使用jwt生成token之后,将token字符串用des算法进行加密。加密之后得到的结果如下图:
Des加密解密算法报错:Input length must be multiple of 8 when decrypting with padded cipher
很明显,得到的加密后的token字符存在回车换行符号。
应该在加密token之后将得到的加密字符串中所有的回车和换行符号去除。

Des.encrypt(token).replaceAll("\\r\\n","");

具体的token创建和加密过程在这–>springboot jwt 学习

(文章已经对加密字符串处理进行更新)