UNPKG

kepler-encryption-agreement

Version:

开普勒系列产品的加密插件

16 lines (15 loc) 298 B
interface OPtion { PUBLICKEY: string; KEY: string; CHANNEL: string; RANDOM: string; PARAMS: string; DEBUG: boolean; } export default class EncryptionAgr { options: OPtion; constructor(options: any); getAuthToken(): string; encryption(): string; } export {};