@apeleghq/cms-classes
Version:
A collection of utility classes to encode ASN.1 data following DER rules
9 lines • 492 B
TypeScript
import type { Asn1BitString } from '@apeleghq/asn1-der';
import { Asn1Sequence } from '@apeleghq/asn1-der';
import type AlgorithmIdentifier from '../cms/AlgorithmIdentifier.js';
declare class SubjectPublicKeyInfo extends Asn1Sequence {
static get importDer(): (data: AllowSharedBufferSource) => SubjectPublicKeyInfo;
constructor(algorithm: AlgorithmIdentifier, subjectPublicKey: Asn1BitString);
}
export default SubjectPublicKeyInfo;
//# sourceMappingURL=SubjectPublicKeyInfo.d.ts.map