@apeleghq/cms-classes
Version:
A collection of utility classes to encode ASN.1 data following DER rules
11 lines • 641 B
TypeScript
import { Asn1Sequence } from '@apeleghq/asn1-der';
import type ContentEncryptionAlgorithmIdentifier from './ContentEncryptionAlgorithmIdentifier.js';
import type ContentType from './ContentType.js';
import type EncryptedContent from './EncryptedContent.js';
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