pkcs-ts
Version:
PKCS #1 through #15 (Except #11) - Private and Public Keys, Certificates, and More
22 lines • 1.6 kB
TypeScript
import { DomainParameters } from "ansi-x9-42/dist/node/modules/ANSI-X9-42/DomainParameters.ta";
import { ASN1Element as _Element, OPTIONAL } from "asn1-ts";
import * as $ from "asn1-ts/dist/node/functional";
import { KEAPrivateKey } from "../PKCS-15/KEAPrivateKey.ta";
import { KeyInfo } from "../PKCS-15/KeyInfo.ta";
import { ObjectValue } from "../PKCS-15/ObjectValue.ta";
import { PublicKeyOperations } from "../PKCS-15/PublicKeyOperations.ta";
export declare class PrivateKEAKeyAttributes {
readonly value: ObjectValue<KEAPrivateKey>;
readonly keyInfo: OPTIONAL<KeyInfo<DomainParameters, PublicKeyOperations>>;
readonly _unrecognizedExtensionsList: _Element[];
constructor(value: ObjectValue<KEAPrivateKey>, keyInfo: OPTIONAL<KeyInfo<DomainParameters, PublicKeyOperations>>, _unrecognizedExtensionsList?: _Element[]);
static _from_object(_o: {
[_K in keyof PrivateKEAKeyAttributes]: PrivateKEAKeyAttributes[_K];
}): PrivateKEAKeyAttributes;
}
export declare const _root_component_type_list_1_spec_for_PrivateKEAKeyAttributes: $.ComponentSpec[];
export declare const _root_component_type_list_2_spec_for_PrivateKEAKeyAttributes: $.ComponentSpec[];
export declare const _extension_additions_list_spec_for_PrivateKEAKeyAttributes: $.ComponentSpec[];
export declare function _decode_PrivateKEAKeyAttributes(el: _Element): PrivateKEAKeyAttributes;
export declare function _encode_PrivateKEAKeyAttributes(value: PrivateKEAKeyAttributes, elGetter: $.ASN1Encoder<PrivateKEAKeyAttributes>): _Element;
//# sourceMappingURL=PrivateKEAKeyAttributes.ta.d.ts.map