Browse Source

docs: add ciphers option to https.request()

v0.9.1-release
koichik 13 years ago
parent
commit
ae762b620e
  1. 3
      doc/api/https.markdown

3
doc/api/https.markdown

@ -94,6 +94,9 @@ specified. However, a [globalAgent](#https.globalAgent) silently ignores these.
- `cert`: Public x509 certificate to use. Default `null`. - `cert`: Public x509 certificate to use. Default `null`.
- `ca`: An authority certificate or array of authority certificates to check - `ca`: An authority certificate or array of authority certificates to check
the remote host against. 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 - `rejectUnauthorized`: If `true`, the server certificate is verified against
the list of supplied CAs. An `'error'` event is emitted if verification the list of supplied CAs. An `'error'` event is emitted if verification
fails. Verification happens at the connection level, *before* the HTTP fails. Verification happens at the connection level, *before* the HTTP

Loading…
Cancel
Save