fix(utils): update hash keys

This commit is contained in:
Zichao Lin 2024-07-21 21:42:19 +08:00
parent f9e74b4fb8
commit e83fe42268
Signed by: earthjasonlin
GPG Key ID: 406D9913DE2E42FB

@ -142,12 +142,12 @@ const readJSON = async (dataPath, name) => {
} }
const hash = (data, type = 'sha256') => { const hash = (data, type = 'sha256') => {
const hmac = crypto.createHmac(type, 'hk4e') const hmac = crypto.createHmac(type, 'nap')
hmac.update(data) hmac.update(data)
return hmac.digest('hex') return hmac.digest('hex')
} }
const scryptKey = crypto.scryptSync(userPath, 'hk4e', 24) const scryptKey = crypto.scryptSync(userPath, 'nap', 24)
const cipherAes = (data) => { const cipherAes = (data) => {
const algorithm = 'aes-192-cbc' const algorithm = 'aes-192-cbc'
const iv = Buffer.alloc(16, 0) const iv = Buffer.alloc(16, 0)