diff --git a/src/renderer/utils/music/wy/utils/crypto.js b/src/renderer/utils/music/wy/utils/crypto.js index c54b018c..85a35ac8 100644 --- a/src/renderer/utils/music/wy/utils/crypto.js +++ b/src/renderer/utils/music/wy/utils/crypto.js @@ -34,7 +34,7 @@ export const weapi = object => { export const linuxapi = object => { const text = JSON.stringify(object) return { - eparams: aesEncrypt(Buffer.from(text), 'ecb', linuxapiKey, '').toString('hex').toUpperCase(), + eparams: aesEncrypt(Buffer.from(text), 'aes-128-ecb', linuxapiKey, '').toString('hex').toUpperCase(), } }