pkcs-ts
Version:
PKCS #1 through #15 (Except #11) - Private and Public Keys, Certificates, and More
18 lines • 1.18 kB
TypeScript
import { ASN1Element as _Element } from "asn1-ts";
import * as $ from "asn1-ts/dist/node/functional";
import { AlgorithmIdentifier } from "../PKCS5v2-1/AlgorithmIdentifier.ta";
export { AlgorithmIdentifier, _decode_AlgorithmIdentifier, _encode_AlgorithmIdentifier, } from "../PKCS5v2-1/AlgorithmIdentifier.ta";
export declare class PBES2_params {
readonly keyDerivationFunc: AlgorithmIdentifier;
readonly encryptionScheme: AlgorithmIdentifier;
constructor(keyDerivationFunc: AlgorithmIdentifier, encryptionScheme: AlgorithmIdentifier);
static _from_object(_o: {
[_K in keyof PBES2_params]: PBES2_params[_K];
}): PBES2_params;
}
export declare const _root_component_type_list_1_spec_for_PBES2_params: $.ComponentSpec[];
export declare const _root_component_type_list_2_spec_for_PBES2_params: $.ComponentSpec[];
export declare const _extension_additions_list_spec_for_PBES2_params: $.ComponentSpec[];
export declare function _decode_PBES2_params(el: _Element): PBES2_params;
export declare function _encode_PBES2_params(value: PBES2_params, elGetter: $.ASN1Encoder<PBES2_params>): _Element;
//# sourceMappingURL=PBES2-params.ta.d.ts.map