删除debugger
Showing
1 changed file
with
0 additions
and
1 deletions
... | @@ -5,7 +5,6 @@ const AES_KEY = '94a80df2633b4944' | ... | @@ -5,7 +5,6 @@ const AES_KEY = '94a80df2633b4944' |
5 | export function aesEncode(str) { | 5 | export function aesEncode(str) { |
6 | const key = CryptoJS.enc.Utf8.parse(AES_KEY) | 6 | const key = CryptoJS.enc.Utf8.parse(AES_KEY) |
7 | const word = CryptoJS.enc.Utf8.parse(str) | 7 | const word = CryptoJS.enc.Utf8.parse(str) |
8 | debugger | ||
9 | const encrypted = CryptoJS.AES.encrypt(word, key, { | 8 | const encrypted = CryptoJS.AES.encrypt(word, key, { |
10 | mode: CryptoJS.mode.ECB, | 9 | mode: CryptoJS.mode.ECB, |
11 | padding: CryptoJS.pad.Pkcs7 | 10 | padding: CryptoJS.pad.Pkcs7 | ... | ... |
-
Please register or sign in to post a comment