Asper Header  1.0.14
The header injector extension
Loading...
Searching...
No Matches
cipherInterface.ts
Go to the documentation of this file.
1
16export interface CipherI {
24 encode(plaintext: string, key?: string | number | any): string;
25
33 decode(ciphertext: string, key?: string | number | any): string;
34}
Common interface that all cipher implementations must follow.
export const Record< string,(...args:any[])=> string