UNPKG

pkcs-ts

Version:

PKCS #1 through #15 (Except #11) - Private and Public Keys, Certificates, and More

14 lines 609 B
import { OBJECT_IDENTIFIER } from "asn1-ts"; import * as $ from "asn1-ts/dist/node/functional"; export interface ALGORITHM_IDENTIFIER<Type = any> { readonly class: "ALGORITHM-IDENTIFIER"; readonly decoderFor: Partial<{ [_K in keyof ALGORITHM_IDENTIFIER<Type>]: $.ASN1Decoder<ALGORITHM_IDENTIFIER<Type>[_K]>; }>; readonly encoderFor: Partial<{ [_K in keyof ALGORITHM_IDENTIFIER<Type>]: $.ASN1Encoder<ALGORITHM_IDENTIFIER<Type>[_K]>; }>; readonly "&id"?: OBJECT_IDENTIFIER; readonly "&Type": Type; } //# sourceMappingURL=ALGORITHM-IDENTIFIER.oca.d.ts.map