import { decrypt } from '../crypto/cipher'; export function kongDecrypt(encrypted: string): string { return decrypt(encrypted); }