export interface ICryptoAlgorithm { algorithm: AL; encrypt: (message: string, secret: string, opts?: IO) => string; decrypt: (message: string, secret: string, opts?: IO) => string; } //# sourceMappingURL=types.d.ts.map