@shard-auth/client
Version:
Next-generation API authentication without secret keys - MPC-based authentication with FROST threshold signatures
8 lines • 399 B
TypeScript
/**
* 簡略化された署名実装(テスト用)
*/
import { ShareA, ShareB, FROSTSignature } from './types';
export declare function initSimpleSignature(): void;
export declare function setShareForSigning(share: ShareA | ShareB): void;
export declare function createSimpleSignature(message: Buffer, publicKey: Buffer): Promise<FROSTSignature>;
//# sourceMappingURL=simple-signature.d.ts.map