Sets the password for the client certificate.
WebAPI.bdh
SslSetClientCertPassword(in sCertPasword: string): boolean;
Parameter | Description |
---|---|
sCertPasword | The password for the client certificate. |
dcltrans transaction TSecureHTTP begin SslSetEncryption(SSL_VERSION_SSL3, SSL_CIPHERS_SSLv3); SslSetClientCert("Sunny.pem"); SslSetClientCertPassword("Performer") WebUrl("https://www.company.com"); end TSecureHTTP;