Newer
Older
import { ICryptoService } from "./ICryptoService";
export declare const verifyRSASignature: (publicKeyPEM: string, data: ArrayBuffer, signature: ArrayBuffer) => Promise<boolean>;
declare const implementation: ICryptoService;