restpki-client
Version:
Classes to consume Lacuna Software REST PKI
23 lines (22 loc) • 744 B
TypeScript
export class SignatureStarter {
static _getClientSideInstructionsObject(response: any): {
token: any;
toSignData: any;
toSignHash: any;
digestAlgorithmOid: any;
cryptoSignatureAlgorithm: string | null;
};
static _getCryptoSignatureAlgorithm(oid: any): "RSA-MD5" | "RSA-SHA1" | "RSA-SHA256" | "RSA-SHA384" | "RSA-SHA512" | null;
constructor(client: any);
_client: any;
_signerCertificate: any;
_signaturePolicyId: any;
_securityContextId: any;
_callbackArgument: any;
set signerCertificate(value: any);
set signaturePolicy(value: any);
set securityContext(value: any);
set callbackArgument(value: any);
start(): void;
startWithWebPki(): void;
}