UNPKG

@apeleghq/cms-classes

Version:

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

12 lines 700 B
import { Asn1Sequence } from '@apeleghq/asn1-der'; import CMSVersion from './CMSVersion.js'; import EncryptedKey from './EncryptedKey.js'; import KeyDerivationAlgorithmIdentifier from './KeyDerivationAlgorithmIdentifier.js'; import KeyEncryptionAlgorithmIdentifier from './KeyEncryptionAlgorithmIdentifier.js'; 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