解密使用较低 OpenSSL 版本加密的令牌
我们目前使用 OpenSSL 1.0.1 来加密令牌,如下所示: 加密: 回显 $TOKEN | openssl enc -aes-256-cbc -e -kfile<kfile 路径>-md sha256 | base64 -w 0 解密: 回显 $TOKEN | base64 -w 0 -d | openssl enc -aes-256-cbc -d -kfile<kfile 路径>-md sha256 上述命令在 OpenSSL 版本为 1.0.1 的主机上运行良好。但我们有一个要求,即需要在 1.0.1 中加密令牌,并在 ...