UNPKG

@apeleghq/cms-classes

Version:

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

11 lines 644 B
import { Asn1Sequence } from '@apeleghq/asn1-der'; import type ContentEncryptionAlgorithmIdentifier from './ContentEncryptionAlgorithmIdentifier.cjs'; import type ContentType from './ContentType.cjs'; import type EncryptedContent from './EncryptedContent.cjs'; declare class EncryptedContentInfo extends Asn1Sequence { contentType_: ContentType; constructor(contentType: ContentType, contentEncryptionAlgorithm: ContentEncryptionAlgorithmIdentifier, encryptedContent?: EncryptedContent); get contentType(): Readonly<typeof this.contentType_>; } export default EncryptedContentInfo; //# sourceMappingURL=EncryptedContentInfo.d.ts.map