@oslojs/webauthn
TypeScript icon, indicating that this package has built-in type declarations

1.0.0 • Public • Published

@oslojs/webauthn

Documentation: https://webauthn.oslojs.dev

A JavaScript library for working with the Web Authentication API on the server by Oslo.

  • Runtime-agnostic
  • No third-party dependencies
  • Fully typed
import { parseAttestationObject, COSEKeyType, coseAlgorithmES256 } from "@oslojs/webauthn";

const { attestationStatement, authenticatorData } = await parseAttestationObject(encoded);
if (!authenticatorData.userPresent || !authenticatorData.userVerified) {
	throw new Error("User must be verified");
}

if (!authenticatorData.verifyRelyingPartyIdHash("example.com")) {
	throw new Error("Invalid relying party ID hash");
}
if (authenticatorData.credential === null) {
	throw new Error("Expected credential");
}
if (authenticatorData.credential.publicKey.type() !== COSEKeyType.EC2) {
	throw new Error("Unsupported algorithm");
}
if (authenticatorData.credential.publicKey.algorithm() !== coseAlgorithmES256) {
	throw new Error("Unsupported algorithm");
}
const publicKey = authenticatorData.credential.publicKey.ec2();

This package currently does not support attestation extensions and also does not provide APIs for verifying attestation statements (e.g FIDO-U2F, TPM).

Installation

npm i @oslojs/webauthn

Readme

Keywords

Package Sidebar

Install

npm i @oslojs/webauthn

Weekly Downloads

151

Version

1.0.0

License

MIT

Unpacked Size

31.1 kB

Total Files

13

Last publish

Collaborators

  • pilcrowonpaper