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

8 lines (7 loc) 167 B
/** * Extracts the s and r signatures from a der encoded signature */ export default function decodeDER(der: Uint8Array): { r: Uint8Array; s: Uint8Array; };