/** * @description Thiết lập key mã hóa * @param value key mã hóa, độ dài bằng 24 hoặc 32 ký tự. */ export declare const setKeyCrypto3rd: (value: string) => void; /** * Mã hóa dữ liệu dạng chuỗi bằng thuật toán AES-CBC. * Yêu cầu key mã hóa đã được thiết lập qua setKeyCrypto3rd. * @param plainData Chuỗi văn bản thuần túy cần mã hóa * @returns Chuỗi kết quả đã được mã hóa (Base64 string) */ export declare const encrypt3rd: (plainData: string) => string; /** * Giải mã dữ liệu đã được mã hóa bằng AES-CBC. * Yêu cầu cùng một key mã hóa đã dùng để encrypt. * @param encryptedData Chuỗi dữ liệu đã mã hóa * @returns Chuỗi văn bản thuần túy sau khi giải mã (UTF-8) */ export declare const decrypt3rd: (encryptedData: string) => string;