0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-22 07:37:56 +01:00

docs: add ciphers option to https.request()

This commit is contained in:
koichik 2012-02-25 23:17:05 +09:00
parent 2f5e084147
commit ae762b620e

View File

@ -94,6 +94,9 @@ specified. However, a [globalAgent](#https.globalAgent) silently ignores these.
- `cert`: Public x509 certificate to use. Default `null`.
- `ca`: An authority certificate or array of authority certificates to check
the remote host against.
- `ciphers`: A string describing the ciphers to use or exclude. Consult
<http://www.openssl.org/docs/apps/ciphers.html#CIPHER_LIST_FORMAT> for
details on the format.
- `rejectUnauthorized`: If `true`, the server certificate is verified against
the list of supplied CAs. An `'error'` event is emitted if verification
fails. Verification happens at the connection level, *before* the HTTP