UNPKG

@wildboar/pkcs

Version:
18 lines (17 loc) 393 B
/* eslint-disable */ import { ObjectIdentifier as _OID } from "@wildboar/asn1"; import { id_pkcs } from "../PKCS7/id-pkcs.va.mjs"; /** * @summary id_encrypted_data * @description * * ### ASN.1 Definition: * * ```asn1 * id-encrypted-data OBJECT IDENTIFIER ::= {id-pkcs 7 6} * ``` * * @constant */ export const id_encrypted_data = _OID.fromParts([7, 6], id_pkcs); /* eslint-enable */