UNPKG

@wildboar/pc

Version:

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

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