2022-02-14 16:15:32 +07:00
|
|
|
/// <reference types="node" />
|
2022-02-14 19:05:24 +07:00
|
|
|
import { CryptoProvider } from "../provider.crypto"
|
2022-02-14 16:15:32 +07:00
|
|
|
interface E2ECryptoProviderOptions {
|
|
|
|
privateKey?: string | Buffer | null | undefined
|
|
|
|
publicKey?: string | Buffer | null | undefined
|
|
|
|
privateKeyPath?: string | null | undefined
|
|
|
|
publicKeyPath?: string | null | undefined
|
|
|
|
jsonPath?: string | null | undefined
|
|
|
|
}
|
2022-02-14 19:05:24 +07:00
|
|
|
export declare class E2ECryptoProvider implements CryptoProvider {
|
2022-02-14 16:15:32 +07:00
|
|
|
private privateKey
|
|
|
|
private publicKey
|
|
|
|
constructor(options: E2ECryptoProviderOptions)
|
|
|
|
encrypt(data: string | Buffer): string
|
|
|
|
decrypt(data: string): string
|
|
|
|
}
|
|
|
|
export {}
|