@wildboar/pki-stub
Version:
X.510 PKI-Stub ASN.1 data structures in TypeScript
18 lines (17 loc) • 381 B
JavaScript
/* eslint-disable */
import { ObjectIdentifier as _OID, } from "@wildboar/asn1";
import { ds } from "../PKI-Stub/ds.va.mjs";
/**
* @summary wrapperProtocolType
* @description
*
* ### ASN.1 Definition:
*
* ```asn1
* wrapperProtocolType OBJECT IDENTIFIER ::= {ds 43}
* ```
*
* @constant
*/
export const wrapperProtocolType = _OID.fromParts([43], ds);
/* eslint-enable */