@ijodkor/nest-payme
Version:
NestJs ilovalar uchun Payme ETT bilan integratsiya qilish uchun kutubxona.
12 lines (11 loc) • 359 B
TypeScript
import { ConfigService } from "@nestjs/config";
export declare class EncryptionService {
private readonly configService;
private readonly algorithm;
private readonly key?;
private readonly iv;
constructor(configService: ConfigService);
secret(): string;
encrypt(text: string): string;
decrypt(encryptedText: string): string;
}