@wildboar/pkcs
Version:
Public Key Cryptography Standard PDUs in TypeScript
18 lines (17 loc) • 407 B
JavaScript
/* eslint-disable */
import { ObjectIdentifier as _OID } from "@wildboar/asn1";
import { encryptionAlgorithm } from "../PKCS5v2-1/encryptionAlgorithm.va.mjs";
/**
* @summary rc2CBC
* @description
*
* ### ASN.1 Definition:
*
* ```asn1
* rc2CBC OBJECT IDENTIFIER ::= {encryptionAlgorithm 2}
* ```
*
* @constant
*/
export const rc2CBC = _OID.fromParts([2], encryptionAlgorithm);
/* eslint-enable */