@tidecloak/js
Version:
TideCloak client side JS SDK
11 lines • 710 B
JavaScript
import { BasePrivateComponent, BasePublicComponent } from "../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"); };
export default BaseScheme;
//# sourceMappingURL=BaseScheme.js.map