UNPKG

@wildboar/pkcs

Version:
24 lines (23 loc) 498 B
/* eslint-disable */ import { ObjectIdentifier as _OID } from "@wildboar/asn1"; /** * @summary des_ede3_cbc * @description * * ### ASN.1 Definition: * * ```asn1 * des-ede3-cbc OBJECT IDENTIFIER ::= {iso(1) member-body(2) us(840) rsadsi(113549) encryptionAlgorithm(3) 7} * ``` * * @constant */ export const des_ede3_cbc = _OID.fromParts([ /* iso */ 1, /* member-body */ 2, /* us */ 840, /* rsadsi */ 113549, /* encryptionAlgorithm */ 3, 7, ]); /* eslint-enable */