UNPKG

@apeleghq/cms-classes

Version:

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

12 lines 704 B
import { Asn1Sequence } from '@apeleghq/asn1-der'; import CMSVersion from './CMSVersion.cjs'; import EncryptedKey from './EncryptedKey.cjs'; import KeyDerivationAlgorithmIdentifier from './KeyDerivationAlgorithmIdentifier.cjs'; import KeyEncryptionAlgorithmIdentifier from './KeyEncryptionAlgorithmIdentifier.cjs'; declare class PasswordRecipientInfo extends Asn1Sequence { version_: CMSVersion; constructor(keyEncryptionAlgorithm: KeyEncryptionAlgorithmIdentifier, encryptedKey: EncryptedKey, keyDerivationAlgorithm?: KeyDerivationAlgorithmIdentifier); get version(): Readonly<typeof this.version_>; } export default PasswordRecipientInfo; //# sourceMappingURL=PasswordRecipientInfo.d.ts.map