UNPKG

@wildboar/pkcs

Version:
18 lines (17 loc) 425 B
/* eslint-disable */ import { ObjectIdentifier as _OID } from "@wildboar/asn1"; import { encryptionAlgorithm } from "../PKCS5v2-1/encryptionAlgorithm.va.mjs"; /** * @summary des_EDE3_CBC * @description * * ### ASN.1 Definition: * * ```asn1 * des-EDE3-CBC OBJECT IDENTIFIER ::= {encryptionAlgorithm 7} * ``` * * @constant */ export const des_EDE3_CBC = _OID.fromParts([7], encryptionAlgorithm); /* eslint-enable */