@apeleghq/cms-classes
Version:
A collection of utility classes to encode ASN.1 data following DER rules
12 lines • 785 B
text/typescript
import { Asn1Sequence } from '@apeleghq/asn1-der';
import type AuthAttributes from './AuthAttributes.cjs';
import type EncryptedContentInfo from './EncryptedContentInfo.cjs';
import type OriginatorInfo from './OriginatorInfo.cjs';
import type RecipientInfos from './RecipientInfos.cjs';
import type UnauthAttributes from './UnauthAttributes.cjs';
import type MessageAuthenticationCode from './MessageAuthenticationCode.cjs';
declare class AuthEnvelopedData extends Asn1Sequence {
constructor(recipientInfos: RecipientInfos, authEncryptedContentInfo: EncryptedContentInfo, mac: MessageAuthenticationCode, originatorInfo?: OriginatorInfo, authAttrs?: AuthAttributes, unauthAttrs?: UnauthAttributes);
}
export default AuthEnvelopedData;
//# sourceMappingURL=AuthEnvelopedData.d.ts.map