mirror of
https://github.com/MoonTechLab/LunaTV.git
synced 2026-02-16 05:04:41 +08:00
59 lines
1.4 KiB
TypeScript
59 lines
1.4 KiB
TypeScript
import CryptoJS from 'crypto-js';
|
|
|
|
/**
|
|
* 简单的对称加密工具
|
|
* 使用 AES 加密算法
|
|
*/
|
|
export class SimpleCrypto {
|
|
/**
|
|
* 加密数据
|
|
* @param data 要加密的数据
|
|
* @param password 加密密码
|
|
* @returns 加密后的字符串
|
|
*/
|
|
static encrypt(data: string, password: string): string {
|
|
try {
|
|
const encrypted = CryptoJS.AES.encrypt(data, password).toString();
|
|
return encrypted;
|
|
} catch (error) {
|
|
throw new Error('加密失败');
|
|
}
|
|
}
|
|
|
|
/**
|
|
* 解密数据
|
|
* @param encryptedData 加密的数据
|
|
* @param password 解密密码
|
|
* @returns 解密后的字符串
|
|
*/
|
|
static decrypt(encryptedData: string, password: string): string {
|
|
try {
|
|
const bytes = CryptoJS.AES.decrypt(encryptedData, password);
|
|
const decrypted = bytes.toString(CryptoJS.enc.Utf8);
|
|
|
|
if (!decrypted) {
|
|
throw new Error('解密失败,请检查密码是否正确');
|
|
}
|
|
|
|
return decrypted;
|
|
} catch (error) {
|
|
throw new Error('解密失败,请检查密码是否正确');
|
|
}
|
|
}
|
|
|
|
/**
|
|
* 验证密码是否能正确解密数据
|
|
* @param encryptedData 加密的数据
|
|
* @param password 密码
|
|
* @returns 是否能正确解密
|
|
*/
|
|
static canDecrypt(encryptedData: string, password: string): boolean {
|
|
try {
|
|
const decrypted = this.decrypt(encryptedData, password);
|
|
return decrypted.length > 0;
|
|
} catch {
|
|
return false;
|
|
}
|
|
}
|
|
}
|