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