cubetiq-crypto-js/src/crypto/provider.crypto.ts
2022-02-14 19:05:24 +07:00

5 lines
113 B
TypeScript

export interface CryptoProvider {
encrypt(data: string | Buffer): string
decrypt(data: string): string
}