6 lines
123 B
TypeScript
6 lines
123 B
TypeScript
import { encrypt } from '../crypto/cipher';
|
|
|
|
export function kongEncrypt(text: string): string {
|
|
return encrypt(text);
|
|
}
|