UNPKG

@apeleghq/cms-classes

Version:

A collection of utility classes to encode ASN.1 data following DER rules

10 lines 595 B
import { Asn1Sequence } from '@apeleghq/asn1-der'; import type EncryptedContentInfo from './EncryptedContentInfo.cjs'; import type OriginatorInfo from './OriginatorInfo.cjs'; import type RecipientInfos from './RecipientInfos.cjs'; import type UnprotectedAttributes from './UnprotectedAttributes.cjs'; declare class EnvelopedData extends Asn1Sequence { constructor(recipientInfos: RecipientInfos, encryptedContentInfo: EncryptedContentInfo, originatorInfo?: OriginatorInfo, unprotectedAttrs?: UnprotectedAttributes); } export default EnvelopedData; //# sourceMappingURL=EnvelopedData.d.ts.map