UNPKG

@wildboar/clearance-sponsor-attribute

Version:
31 lines (30 loc) 630 B
/* eslint-disable */ import { ObjectIdentifier as _OID, } from "@wildboar/asn1"; /** * @summary id_clearanceSponsor * @description * * ### ASN.1 Definition: * * ```asn1 * id-clearanceSponsor OBJECT IDENTIFIER ::= { * joint-iso-ccitt(2) country(16) us(840) organization(1) gov(101) * dod(2) infosec(1) attributes(5) 68 * * } * ``` * * @constant */ export const id_clearanceSponsor = _OID.fromParts([ /* joint-iso-ccitt */ 2, /* country */ 16, /* us */ 840, /* organization */ 1, /* gov */ 101, /* dod */ 2, /* infosec */ 1, /* attributes */ 5, 68, ]); /* eslint-enable */