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