UNPKG

@wildboar/pkcs

Version:
21 lines (20 loc) 378 B
/* eslint-disable */ import { ObjectIdentifier as _OID } from "@wildboar/asn1"; /** * @summary oiw * @description * * ### ASN.1 Definition: * * ```asn1 * oiw OBJECT IDENTIFIER ::= {iso(1) identified-organization(3) 14} * ``` * * @constant */ export const oiw = _OID.fromParts([ /* iso */ 1, /* identified-organization */ 3, 14, ]); /* eslint-enable */