MCPcopy
hub / github.com/panva/jose / ASN1State

Interface ASN1State

src/lib/asn1.ts:76–79  ·  view source on GitHub ↗

ASN.1 DER parsing state

Source from the content-addressed store, hash-verified

74
75/** ASN.1 DER parsing state */
76interface ASN1State {
77 readonly data: Uint8Array
78 pos: number
79}
80
81/** Creates ASN.1 parsing state */
82const createASN1State = (data: Uint8Array): ASN1State => ({ data, pos: 0 })

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…