@wildboar/pkcs
Version:
Public Key Cryptography Standard PDUs in TypeScript
18 lines (17 loc) • 456 B
JavaScript
/* eslint-disable */
import { ObjectIdentifier as _OID } from "@wildboar/asn1";
import { pkcs_12PbeIds } from "../PKCS-12/pkcs-12PbeIds.va.mjs";
/**
* @summary pbeWithSHAAnd2_KeyTripleDES_CBC
* @description
*
* ### ASN.1 Definition:
*
* ```asn1
* pbeWithSHAAnd2-KeyTripleDES-CBC OBJECT IDENTIFIER ::= {pkcs-12PbeIds 4}
* ```
*
* @constant
*/
export const pbeWithSHAAnd2_KeyTripleDES_CBC = _OID.fromParts([4], pkcs_12PbeIds);
/* eslint-enable */