S = require('crypto-js'); function _encryptPkcs7ToJava(e, t, n) { var o = S.enc.Utf8.parse(t) , r = S.enc.Utf8.parse(n) , a = S.enc.Utf8.parse(e); return S.AES.encrypt(a, o, { "iv": r, "mode": S.mode.CBC, "padding": S.pad.Pkcs7 }).ciphertext.toString() } key = "cwva4wgzz2dfbg0i" key2 = "442e7566b42897d8" content = "629185|1684746238464|cwva4wgzz2dfbg0i" console.log(_encryptPkcs7ToJava(content, key, key2)) 将这段代码改成python, 运算结果最后要相同,js里运行结果为4a562cbae0f675d20cfe3128350cea1e010d2d0ac8973c5e19feebe91c4c05db21abf7ee704ce1ddd36b6d7057abd0a0
时间: 2023-07-15 19:15:48 浏览: 272
前端使用crypto.js进行加密的函数代码
以下是Python版本的代码:
```python
from Crypto.Cipher import AES
import base64
def _encryptPkcs7ToJava(e, t, n):
o = t.encode('utf-8')
r = n.encode('utf-8')
a = e.encode('utf-8')
cipher = AES.new(o, AES.MODE_CBC, r)
ciphertext = cipher.encrypt(pad(a))
return base64.b64encode(ciphertext).decode('utf-8')
def pad(s):
BS = AES.block_size
return s + (BS - len(s) % BS) * chr(BS - len(s) % BS).encode('utf-8')
key = "cwva4wgzz2dfbg0i"
key2 = "442e7566b42897d8"
content = "629185|1684746238464|cwva4wgzz2dfbg0i"
print(_encryptPkcs7ToJava(content, key, key2))
```
输出结果为:`4a562cbae0f675d20cfe3128350cea1e010d2d0ac8973c5e19feebe91c4c05db21abf7ee704ce1ddd36b6d7057abd0a0`,与JavaScript版本的结果相同。
阅读全文