UNPKG

@tidecloak/js

Version:

TideCloak client side JS SDK

13 lines 768 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const BaseComponent_js_1 = require("../BaseComponent.js"); class BaseScheme { static get Name() { throw Error("Name not implemented"); } } /**@returns {(msg: Uint8Array, signature: Uint8Array, pub: BasePublicComponent) => Promise<(boolean)>} */ BaseScheme.GetVerifyingFunction = () => { throw Error("Verifying function not implemented"); }; /**@returns {(msg: Uint8Array, priv: BasePrivateComponent) => Promise<(Uint8Array)>} */ BaseScheme.GetSigningFunction = () => { throw Error("Signing function not implemented"); }; BaseScheme.GetEncryptingFunction = () => { throw Error("Encrypting function not implemented"); }; exports.default = BaseScheme; //# sourceMappingURL=BaseScheme.js.map