Gets or sets the location folder or file path for a client certificate.
Namespace: Facilita.WebAssembly: clrWebBrowser (in clrWebBrowser.dll) Version: 9.5.7.98 (1.0.0.0)
Syntax
Field Value
The location folder or file path for a client certificate.Exceptions
Exception | Condition |
---|---|
NotSupportedException | Either the WinInet or WinHTTP handler is currently in use, for which this property is not supported. |
Remarks
This property uses the OpenSSL method SSL_CTX_load_verify_locations(), see http://www.openssl.org/docs/ssl/SSL_CTX_load_verify_locations.html for details of usage.
If the path is a folder, then the CAfile argument of SSL_CTX_load_verify_locations is NULL. If it is a file, the CApath argument is set to NULL.
Note |
---|
Certificates must be in PEM format. See the examples below. |
Examples
openssl pkcs12 -clcerts -nokeys -out hostcert.pem -in cert.p12
See Also