pkcs-ts
Version:
PKCS #1 through #15 (Except #11) - Private and Public Keys, Certificates, and More
21 lines • 1.39 kB
TypeScript
import { ASN1Element as _Element, INTEGER, OPTIONAL } from "asn1-ts";
import * as $ from "asn1-ts/dist/node/functional";
export declare class RecordInfo {
readonly oDFRecordLength: OPTIONAL<INTEGER>;
readonly prKDFRecordLength: OPTIONAL<INTEGER>;
readonly puKDFRecordLength: OPTIONAL<INTEGER>;
readonly sKDFRecordLength: OPTIONAL<INTEGER>;
readonly cDFRecordLength: OPTIONAL<INTEGER>;
readonly dODFRecordLength: OPTIONAL<INTEGER>;
readonly aODFRecordLength: OPTIONAL<INTEGER>;
constructor(oDFRecordLength: OPTIONAL<INTEGER>, prKDFRecordLength: OPTIONAL<INTEGER>, puKDFRecordLength: OPTIONAL<INTEGER>, sKDFRecordLength: OPTIONAL<INTEGER>, cDFRecordLength: OPTIONAL<INTEGER>, dODFRecordLength: OPTIONAL<INTEGER>, aODFRecordLength: OPTIONAL<INTEGER>);
static _from_object(_o: {
[_K in keyof RecordInfo]: RecordInfo[_K];
}): RecordInfo;
}
export declare const _root_component_type_list_1_spec_for_RecordInfo: $.ComponentSpec[];
export declare const _root_component_type_list_2_spec_for_RecordInfo: $.ComponentSpec[];
export declare const _extension_additions_list_spec_for_RecordInfo: $.ComponentSpec[];
export declare function _decode_RecordInfo(el: _Element): RecordInfo;
export declare function _encode_RecordInfo(value: RecordInfo, elGetter: $.ASN1Encoder<RecordInfo>): _Element;
//# sourceMappingURL=RecordInfo.ta.d.ts.map