Skip to content

oslo-project/asn1

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Sep 19, 2024
65a9bbd · Sep 19, 2024

History

36 Commits
Jun 4, 2024
Jul 5, 2024
Jul 5, 2024
May 30, 2024
May 30, 2024
May 30, 2024
May 30, 2024
May 30, 2024
Sep 19, 2024
May 30, 2024
May 30, 2024
Jul 5, 2024
Sep 19, 2024
Jun 8, 2024
Jun 8, 2024

Repository files navigation

@oslojs/asn1

Documentation: https://asn1.oslojs.dev

A JavaScript library for encoding and decoding ASN.1 with Distinguished Encoding Rules (DER) by Oslo.

  • Runtime-agnostic
  • No third-party dependencies
  • Fully typed
import { parseASN1NoLeftoverBytes } from "@oslojs/asn1";

const parsed = parseASN1NoLeftoverBytes(encoded);
const oid = parsed.sequence().at(0).objectIdentifier();
if (!oid.is("1.2.840.10045.4.3.2")) {
	throw new Error("Invalid OID");
}

This library only supports DER and not CER or BER.

Installation

npm i @oslojs/asn1

About

Encode and decode ASN.1 with Distinguished Encoding Rules (DER)

Resources

License

Stars

Watchers

Forks

Releases

No releases published