9cb5eab6 by zhen

删除debugger

1 parent 8b2ae993
...@@ -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
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!