UNPKG

@wildboar/pkcs

Version:
16 lines 447 B
import { OCTET_STRING } from "@wildboar/asn1"; import * as $ from "@wildboar/asn1/functional"; /** * @summary PrivateKey * @description * * ### ASN.1 Definition: * * ```asn1 * PrivateKey ::= OCTET STRING * ``` */ export type PrivateKey = OCTET_STRING; export declare const _decode_PrivateKey: $.ASN1Decoder<OCTET_STRING>; export declare const _encode_PrivateKey: $.ASN1Encoder<OCTET_STRING>; //# sourceMappingURL=PrivateKey.ta.d.mts.map