UNPKG

@wildboar/pc

Version:

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

20 lines (19 loc) 388 B
/* eslint-disable */ import { ObjectIdentifier as _OID, } from "@wildboar/asn1"; import { tcg } from "../PlatformCertificateProfile/tcg.va.mjs"; /** * @summary tcg_registry * @description * * ### ASN.1 Definition: * * ```asn1 * tcg-registry OBJECT IDENTIFIER ::= {tcg 18} * ``` * * @constant */ export const tcg_registry = _OID.fromParts([ 18, ], tcg); /* eslint-enable */