UNPKG

@apeleghq/cms-classes

Version:

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

13 lines 578 B
import { Asn1Set } from '@apeleghq/asn1-der'; import type CMSVersion from './CMSVersion.js'; import DigestAlgorithmIdentifiers from './DigestAlgorithmIdentifiers.js'; import type SignerInfo from './SignerInfo.js'; declare class SignerInfos extends Asn1Set { digestAlgorithms_: DigestAlgorithmIdentifiers; versions_: Set<CMSVersion>; constructor(signerInfos: SignerInfo[]); get digestAlgorithms(): Readonly<typeof this.digestAlgorithms_>; get versions(): Readonly<typeof this.versions_>; } export default SignerInfos; //# sourceMappingURL=SignerInfos.d.ts.map