@wildboar/pc
Version:
Trusted Computing Group Platform Certificate ASN.1 data structures in TypeScript
20 lines (19 loc) • 473 B
JavaScript
/* eslint-disable */
import { ObjectIdentifier as _OID, } from "@wildboar/asn1";
import { tcg_attribute } from "../PlatformCertificateProfile/tcg-attribute.va.mjs";
/**
* @summary tcg_at_tbbProtectionProfile
* @description
*
* ### ASN.1 Definition:
*
* ```asn1
* tcg-at-tbbProtectionProfile OBJECT IDENTIFIER ::= {tcg-attribute 13}
* ```
*
* @constant
*/
export const tcg_at_tbbProtectionProfile = _OID.fromParts([
13,
], tcg_attribute);
/* eslint-enable */