UNPKG

@wildboar/pc

Version:

Trusted Computing Group Platform Certificate ASN.1 data structures in TypeScript

30 lines (29 loc) 558 B
/* eslint-disable */ import { ObjectIdentifier as _OID, } from "@wildboar/asn1"; /** * @summary enterprise * @description * * ### ASN.1 Definition: * * ```asn1 * enterprise OBJECT IDENTIFIER ::= { * iso(1) * identified-organization(3) * dod(6) * internet(1) * private(4) * enterprise(1) } * ``` * * @constant */ export const enterprise = _OID.fromParts([ /* iso */ 1, /* identified-organization */ 3, /* dod */ 6, /* internet */ 1, /* private */ 4, /* enterprise */ 1, ]); /* eslint-enable */