Skip to content
Snippets Groups Projects
CryptoServiceWeb.d.ts 256 B
Newer Older
  • Learn to ignore specific revisions
  • Igor Markin's avatar
    Igor Markin committed
    import { ICryptoService } from "./ICryptoService";
    export declare const verifyRSASignature: (publicKeyPEM: string, data: ArrayBuffer, signature: ArrayBuffer) => Promise<boolean>;
    declare const implementation: ICryptoService;
    
    Igor Markin's avatar
    Igor Markin committed
    export default implementation;