UNPKG

@wildboar/pc

Version:

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

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