import JSEncrypt from 'jsencrypt/bin/jsencrypt.min'
import { getEntryKey } from '@/api/detail'
const isEncryptedData = (data) => {
if (!data) return false;
const base64Check = /^(?=.*[+/=])[A-Za-z0-9+/=]+$/.test(data) &&
data.length % 4 === 0 &&
/^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=)?$/.test(data)
return base64Check;
}
export async function encryptPassword(pwd) {
const isEncryptTxt = isEncryptedData(pwd);
if (isEncryptTxt) {
return pwd;
}
let publicKey = ''
const getPublicKey = await getEntryKey()
if (Number(getPublicKey.code) === 200 && getPublicKey.key) {
const newKey = getPublicKey.key
publicKey = newKey
}
const encryptor = new JSEncrypt()
encryptor.setPublicKey(publicKey)
return encryptor.encrypt(pwd)
}
export async function initPublicKey() {
try {
const res = await getEntryKey()
if (Number(res.code) === 200 && res.key) {
return res.key
}
} catch (error) {
console.error('Failed to load public key:', error)
return ''
}
}