import { encrypt } from '../crypto/cipher'; export function kongEncrypt(text: string): string { return encrypt(text); }