UNPKG

@wildboar/pc

Version:

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

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