/** * @class AcmeClient * @constructor * @description ACME protocol implementation from client perspective * @param {string} directory_url - Address of directory * @param {module:JWebClient~JWebClient} jWebClient - Reference to JSON-Web-Client */ export declare class AcmeClient { clientProfilePubKey: any; days_valid: number; defaultRsaKeySize: number; directory: any; directoryUrl: string; emailDefaultPrefix: string; emailOverride: string; jWebClient: any; regLink: string; tosLink: string; webroot: string; well_known_path: string; withInteraction: boolean; constructor(directoryUrlArg: any); /** * getDirectory * @description retrieve directory entries (directory url must be set prior to execution) * @param {function} callback - first argument will be the answer object */ getDirectory(callback: any): void; /** * newRegistration * @description try to register (directory lookup must have occured prior to execution) * @param {Object} payload * @param {function} callback - first argument will be the answer object */ newRegistration(payload: any, callback: any): void; /** * getRegistration * @description get information about registration * @param {string} uri - will be exposed when trying to register * @param {Object} payload - update information * @param {function} callback - first argument will be the answer object */ getRegistration(uri: any, payload: any, callback: any): void; /** * authorizeDomain * @description authorize domain using challenge-response-method * @param {string} domain * @param {function} callback - first argument will be the answer object */ authorizeDomain(domain: any, callback: any): void; /** * acceptChallenge * @description tell server which challenge will be accepted * @param {Object} challenge * @param {function} callback - first argument will be the answer object */ acceptChallenge(challenge: any, callback: any): void; /** * pollUntilValid * @description periodically (with exponential back-off) check status of challenge * @param {string} uri * @param {function} callback - first argument will be the answer object * @param {number} retry - factor of delay */ pollUntilValid(uri: any, callback: any, retry?: number): void; /** * pollUntilIssued * @description periodically (with exponential back-off) check status of CSR * @param {string} uri * @param {function} callback - first argument will be the answer object * @param {number} retry - factor of delay */ pollUntilIssued(uri: any, callback: any, retry?: number): void; /** * requestSigning * @description send CSR * @param {string} domain - expected to be already sanitized * @param {function} callback - first argument will be the answer object */ requestSigning(domain: any, callback: any): void; /** * getProfile * @description retrieve profile of user (will make directory lookup and registration check) * @param {function} callback - first argument will be the answer object */ getProfile(callback: any): void; /** * createAccount * @description create new account (assumes directory lookup has already occured) * @param {string} email * @param {function} callback - first argument will be the registration URI */ createAccount(email: any, callback: any): void; /** * agreeTos * @description agree with terms of service (update agreement status in profile) * @param {string} tosLink * @param {function} callback - first argument will be the answer object */ agreeTos(tosLink: any, callback: any): void; /** * Entry-Point: Request certificate * @param {string} domain * @param {string} organization * @param {string} country * @param {function} callback */ requestCertificate(domain: any, organization: any, country: any, callback: any): void; /** * External: Create key pair * @param {number} bit - key strength, expected to be already sanitized * @param {string} c - country code, expected to be already sanitized * @param {string} o - organization, expected to be already sanitized * @param {string} cn - common name (domain name), expected to be already sanitized * @param {string} e - email address, expected to be already sanitized * @param {function} callback */ createKeyPair(bit: any, c: any, o: any, cn: any, e: any, callback: any): void; /** * Helper: Empty callback */ emptyCallback(): void; /** * Helper: Make safe file name or path from string * @param {string} name * @param {boolean} withPath - optional, default false * @return {string} */ makeSafeFileName(name: any, withPath?: boolean): any; /** * Helper: Prepare challenge * @param {string} domain * @param {Object} challenge * @param {function} callback */ prepareChallenge(domain: any, challenge: any, callback: any): void; /** * Helper: Extract TOS Link, e.g. from "<http://...>;rel="terms-of-service" * @param {string} linkStr * @return {string} */ getTosLink(linkStr: any): string; /** * Helper: Select challenge by type * @param {Object} ans * @param {string} challenge_type * @return {Object} */ selectChallenge(ans: any, challengeType: string): any; /** * Helper: Extract first found email from profile (without mailto prefix) * @param {Object} profile * @return {string} */ extractEmail(profile: any): string; /** * Make ACME-Request: Domain-Authorization Request - Object: resource, identifier * @param {string} domain * @return {{resource: string, identifier: Object}} */ makeDomainAuthorizationRequest(domain: any): { 'resource': string; 'identifier': { 'type': string; 'value': any; }; }; /** * Make ACME-Object: Key-Authorization (encoded) - String: Challenge-Token . Encoded-Account-Key-Hash * @param {Object} challenge * @return {string} */ makeKeyAuthorization(challenge: any): string; /** * Make ACME-Request: Challenge-Response - Object: resource, keyAuthorization * @param {Object} challenge * @return {{resource: string, keyAuthorization: string}} */ makeChallengeResponse(challenge: any): { 'resource': string; 'keyAuthorization': string; }; /** * Make ACME-Request: CSR - Object: resource, csr, notBefore, notAfter * @param {string} csr * @param {number} days_valid * @return {{resource: string, csr: string, notBefore: string, notAfter: string}} */ makeCertRequest(csr: any, DAYS_VALID: number): { 'resource': string; 'csr': string; 'notBefore': string; 'notAfter': string; }; }