xy-server/node_modules/soap/lib/security/ClientSSLSecurityPFX.d.ts
2025-04-23 09:34:08 +08:00

19 lines
499 B
TypeScript

/// <reference types="node" />
import { ISecurity } from '../types';
/**
* activates SSL for an already existing client using a PFX cert
*
* @module ClientSSLSecurityPFX
* @param {Buffer|String} pfx
* @param {String} passphrase
* @constructor
*/
export declare class ClientSSLSecurityPFX implements ISecurity {
private pfx;
private defaults;
private passphrase;
constructor(pfx: string | Buffer, defaults?: any);
toXML(): string;
addOptions(options: any): void;
}