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