UNPKG

@minimaltech/node-infra

Version:

Minimal Technology NodeJS Infrastructure - Loopback 4 Framework

6 lines (5 loc) 218 B
export interface ICryptoAlgorithm<AL extends string, IO> { algorithm: AL; encrypt: (message: string, secret: string, opts?: IO) => string; decrypt: (message: string, secret: string, opts?: IO) => string; }