cubetiq-crypto-js/src/crypto/provider.crypto.ts

5 lines
113 B
TypeScript
Raw Normal View History

2022-02-14 19:05:24 +07:00
export interface CryptoProvider {
encrypt(data: string | Buffer): string
decrypt(data: string): string
}