UNPKG

logan-web

Version:

Web SDK for Logan, supports log and report in H5 and browser environment.

7 lines (6 loc) 185 B
export interface RSACipherOb { cipherText: string; iv: string; secretKey: string; } export declare function encryptByRSA(plaintext: string, publicKey: string): RSACipherOb;