UNPKG

pkcs-ts

Version:

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

10 lines 418 B
import { ASN1Element as _Element, GeneralizedTime, UTCTime } from "asn1-ts"; import * as $ from "asn1-ts/dist/node/functional"; export declare type Time = { utcTime: UTCTime; } | { generalTime: GeneralizedTime; }; export declare function _decode_Time(el: _Element): Time; export declare function _encode_Time(value: Time, elGetter: $.ASN1Encoder<Time>): _Element; //# sourceMappingURL=Time.ta.d.ts.map