UNPKG

antelope-webauthn

Version:

A WebAuthn.io crypto utility for generating signatures, creating public keys, and verifying them, designed for Antelope-based blockchains such as Vaulta, WAX, and other related platforms. This package provides convenient tools to handle key pair generatio

7 lines (6 loc) 217 B
export type device_key = { id: string; public_key: string; credential_id: string; }; export default function createWebAuthnSignature(device_keys: device_key[], hash: Uint8Array | string): Promise<string>;