2012-02-27 20:09:35 +01:00
|
|
|
# TLS (SSL)
|
2010-12-08 22:22:12 +01:00
|
|
|
|
2015-02-25 01:15:26 +01:00
|
|
|
Stability: 2 - Stable
|
2012-03-03 00:14:03 +01:00
|
|
|
|
2010-12-08 22:22:12 +01:00
|
|
|
Use `require('tls')` to access this module.
|
|
|
|
|
|
|
|
The `tls` module uses OpenSSL to provide Transport Layer Security and/or
|
|
|
|
Secure Socket Layer: encrypted stream communication.
|
|
|
|
|
|
|
|
TLS/SSL is a public/private key infrastructure. Each client and each
|
2014-03-29 01:20:14 +01:00
|
|
|
server must have a private key. A private key is created like this:
|
2010-12-08 22:22:12 +01:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```
|
|
|
|
openssl genrsa -out ryans-key.pem 2048
|
|
|
|
```
|
2010-12-08 22:22:12 +01:00
|
|
|
|
2014-03-29 01:20:14 +01:00
|
|
|
All servers and some clients need to have a certificate. Certificates are public
|
2010-12-08 22:22:12 +01:00
|
|
|
keys signed by a Certificate Authority or self-signed. The first step to
|
|
|
|
getting a certificate is to create a "Certificate Signing Request" (CSR)
|
|
|
|
file. This is done with:
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```
|
|
|
|
openssl req -new -sha256 -key ryans-key.pem -out ryans-csr.pem
|
|
|
|
```
|
2010-12-08 22:22:12 +01:00
|
|
|
|
|
|
|
To create a self-signed certificate with the CSR, do this:
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```
|
|
|
|
openssl x509 -req -in ryans-csr.pem -signkey ryans-key.pem -out ryans-cert.pem
|
|
|
|
```
|
2010-12-08 22:22:12 +01:00
|
|
|
|
|
|
|
Alternatively you can send the CSR to a Certificate Authority for signing.
|
|
|
|
|
2015-02-15 18:43:36 +01:00
|
|
|
For Perfect Forward Secrecy, it is required to generate Diffie-Hellman
|
|
|
|
parameters:
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```
|
|
|
|
openssl dhparam -outform PEM -out dhparam.pem 2048
|
|
|
|
```
|
2010-12-08 22:22:12 +01:00
|
|
|
|
2016-03-14 23:52:28 +01:00
|
|
|
To create a .pfx or .p12, do this:
|
2012-05-13 21:38:23 +02:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```
|
|
|
|
openssl pkcs12 -export -in agent5-cert.pem -inkey agent5-key.pem \
|
|
|
|
-certfile ca-cert.pem -out agent5.pfx
|
|
|
|
```
|
2012-05-13 21:38:23 +02:00
|
|
|
|
|
|
|
- `in`: certificate
|
|
|
|
- `inkey`: private key
|
|
|
|
- `certfile`: all CA certs concatenated in one file like
|
|
|
|
`cat ca1-cert.pem ca2-cert.pem > ca-cert.pem`
|
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
## ALPN, NPN and SNI
|
|
|
|
|
|
|
|
<!-- type=misc -->
|
|
|
|
|
|
|
|
ALPN (Application-Layer Protocol Negotiation Extension), NPN (Next
|
2016-03-14 23:52:28 +01:00
|
|
|
Protocol Negotiation) and, SNI (Server Name Indication) are TLS
|
2016-03-12 19:10:31 +01:00
|
|
|
handshake extensions:
|
2015-11-05 21:04:26 +01:00
|
|
|
|
2016-03-14 23:52:28 +01:00
|
|
|
* ALPN/NPN - Allows the use of one TLS server for multiple protocols (HTTP,
|
|
|
|
SPDY, HTTP/2)
|
|
|
|
* SNI - Allows the use of one TLS server for multiple hostnames with different
|
|
|
|
SSL certificates.
|
2012-05-13 21:38:23 +02:00
|
|
|
|
2012-02-27 20:09:35 +01:00
|
|
|
## Client-initiated renegotiation attack mitigation
|
|
|
|
|
|
|
|
<!-- type=misc -->
|
2010-12-08 22:22:12 +01:00
|
|
|
|
2012-02-15 19:26:43 +01:00
|
|
|
The TLS protocol lets the client renegotiate certain aspects of the TLS session.
|
2016-03-14 23:52:28 +01:00
|
|
|
Unfortunately, session renegotiation requires a disproportionate amount of
|
2012-02-15 19:26:43 +01:00
|
|
|
server-side resources, which makes it a potential vector for denial-of-service
|
|
|
|
attacks.
|
|
|
|
|
2016-03-14 23:52:28 +01:00
|
|
|
To mitigate this, renegotiation is limited to three times every 10 minutes. An
|
2016-02-19 14:54:37 +01:00
|
|
|
error is emitted on the [`tls.TLSSocket`][] instance when the threshold is
|
2016-03-14 23:52:28 +01:00
|
|
|
exceeded. These limits are configurable:
|
2012-02-15 19:26:43 +01:00
|
|
|
|
|
|
|
- `tls.CLIENT_RENEG_LIMIT`: renegotiation limit, default is 3.
|
|
|
|
|
|
|
|
- `tls.CLIENT_RENEG_WINDOW`: renegotiation window in seconds, default is
|
2013-07-08 20:25:40 +02:00
|
|
|
10 minutes.
|
2012-02-15 19:26:43 +01:00
|
|
|
|
2016-03-14 23:52:28 +01:00
|
|
|
Do not change the defaults without a full understanding of the implications.
|
2012-02-15 19:26:43 +01:00
|
|
|
|
2016-03-14 23:52:28 +01:00
|
|
|
To test the server, connect to it with `openssl s_client -connect address:port`
|
|
|
|
and tap `R<CR>` (i.e., the letter `R` followed by a carriage return) a few
|
2012-02-15 19:26:43 +01:00
|
|
|
times.
|
2010-12-08 22:22:12 +01:00
|
|
|
|
2015-08-18 00:51:51 +02:00
|
|
|
## Modifying the Default TLS Cipher suite
|
|
|
|
|
|
|
|
Node.js is built with a default suite of enabled and disabled TLS ciphers.
|
|
|
|
Currently, the default cipher suite is:
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```
|
|
|
|
ECDHE-RSA-AES128-GCM-SHA256:
|
|
|
|
ECDHE-ECDSA-AES128-GCM-SHA256:
|
|
|
|
ECDHE-RSA-AES256-GCM-SHA384:
|
|
|
|
ECDHE-ECDSA-AES256-GCM-SHA384:
|
|
|
|
DHE-RSA-AES128-GCM-SHA256:
|
|
|
|
ECDHE-RSA-AES128-SHA256:
|
|
|
|
DHE-RSA-AES128-SHA256:
|
|
|
|
ECDHE-RSA-AES256-SHA384:
|
|
|
|
DHE-RSA-AES256-SHA384:
|
|
|
|
ECDHE-RSA-AES256-SHA256:
|
|
|
|
DHE-RSA-AES256-SHA256:
|
|
|
|
HIGH:
|
|
|
|
!aNULL:
|
|
|
|
!eNULL:
|
|
|
|
!EXPORT:
|
|
|
|
!DES:
|
|
|
|
!RC4:
|
|
|
|
!MD5:
|
|
|
|
!PSK:
|
|
|
|
!SRP:
|
|
|
|
!CAMELLIA
|
|
|
|
```
|
2015-08-18 00:51:51 +02:00
|
|
|
|
|
|
|
This default can be overriden entirely using the `--tls-cipher-list` command
|
|
|
|
line switch. For instance, the following makes
|
|
|
|
`ECDHE-RSA-AES128-GCM-SHA256:!RC4` the default TLS cipher suite:
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```
|
|
|
|
node --tls-cipher-list="ECDHE-RSA-AES128-GCM-SHA256:!RC4"
|
|
|
|
```
|
2015-08-18 00:51:51 +02:00
|
|
|
|
|
|
|
Note that the default cipher suite included within Node.js has been carefully
|
|
|
|
selected to reflect current security best practices and risk mitigation.
|
|
|
|
Changing the default cipher suite can have a significant impact on the security
|
|
|
|
of an application. The `--tls-cipher-list` switch should by used only if
|
|
|
|
absolutely necessary.
|
2012-02-17 23:58:42 +01:00
|
|
|
|
2014-01-05 12:07:54 +01:00
|
|
|
## Perfect Forward Secrecy
|
|
|
|
|
|
|
|
<!-- type=misc -->
|
|
|
|
|
|
|
|
The term "[Forward Secrecy]" or "Perfect Forward Secrecy" describes a feature of
|
2016-03-14 23:52:28 +01:00
|
|
|
key-agreement (i.e., key-exchange) methods. Practically it means that even if
|
|
|
|
the private key of a server is compromised, communication can only be
|
2014-01-05 12:07:54 +01:00
|
|
|
decrypted by eavesdroppers if they manage to obtain the key-pair specifically
|
|
|
|
generated for each session.
|
|
|
|
|
|
|
|
This is achieved by randomly generating a key pair for key-agreement on every
|
2016-03-14 23:52:28 +01:00
|
|
|
handshake (in contrast to using the same key for all sessions). Methods
|
|
|
|
implementing this technique, thus offering Perfect Forward Secrecy, are
|
|
|
|
called "ephemeral".
|
2014-01-05 12:07:54 +01:00
|
|
|
|
2014-07-16 16:04:34 +02:00
|
|
|
Currently two methods are commonly used to achieve Perfect Forward Secrecy (note
|
2014-01-05 12:07:54 +01:00
|
|
|
the character "E" appended to the traditional abbreviations):
|
|
|
|
|
|
|
|
* [DHE] - An ephemeral version of the Diffie Hellman key-agreement protocol.
|
|
|
|
* [ECDHE] - An ephemeral version of the Elliptic Curve Diffie Hellman
|
|
|
|
key-agreement protocol.
|
|
|
|
|
|
|
|
Ephemeral methods may have some performance drawbacks, because key generation
|
|
|
|
is expensive.
|
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
## Class: CryptoStream
|
2014-01-05 12:07:54 +01:00
|
|
|
|
2016-02-19 14:54:37 +01:00
|
|
|
Stability: 0 - Deprecated: Use [`tls.TLSSocket`][] instead.
|
2011-10-15 18:26:38 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
This is an encrypted stream.
|
2011-10-15 18:26:38 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
### cryptoStream.bytesWritten
|
2012-05-13 21:38:23 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
A proxy to the underlying socket's bytesWritten accessor, this will return
|
|
|
|
the total bytes written to the socket, *including the TLS overhead*.
|
2011-10-15 18:26:38 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
## Class: SecurePair
|
2011-10-26 19:34:56 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
Returned by tls.createSecurePair.
|
2011-10-15 18:26:38 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
### Event: 'secure'
|
2011-10-15 18:26:38 +02:00
|
|
|
|
2016-03-14 23:52:28 +01:00
|
|
|
This event is emitted from the SecurePair once the pair has successfully
|
2015-11-05 21:04:26 +01:00
|
|
|
established a secure connection.
|
2012-02-10 06:58:58 +01:00
|
|
|
|
2016-03-14 23:52:28 +01:00
|
|
|
As with checking for the server [`secureConnection`](#event-secureconnection)
|
|
|
|
event, `pair.cleartext.authorized` should be inspected to confirm whether the
|
|
|
|
certificate used is properly authorized.
|
2014-08-28 09:51:42 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
## Class: tls.Server
|
2015-05-08 20:54:34 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
This class is a subclass of `net.Server` and has the same methods on it.
|
2016-03-14 23:52:28 +01:00
|
|
|
Instead of accepting only raw TCP connections, this accepts encrypted
|
2015-11-05 21:04:26 +01:00
|
|
|
connections using TLS or SSL.
|
2015-05-08 20:54:34 +02:00
|
|
|
|
2016-01-06 22:59:42 +01:00
|
|
|
### Event: 'tlsClientError'
|
2015-05-08 20:54:34 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
`function (exception, tlsSocket) { }`
|
2013-10-14 16:53:59 +02:00
|
|
|
|
2016-03-12 19:10:31 +01:00
|
|
|
When a client connection emits an `'error'` event before a secure connection is
|
|
|
|
established it will be forwarded here.
|
2013-10-14 16:53:59 +02:00
|
|
|
|
2016-02-19 14:54:37 +01:00
|
|
|
`tlsSocket` is the [`tls.TLSSocket`][] that the error originated from.
|
2013-10-14 16:53:59 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
### Event: 'newSession'
|
2014-08-27 11:00:13 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
`function (sessionId, sessionData, callback) { }`
|
2012-12-03 18:29:01 +01:00
|
|
|
|
2016-03-14 23:52:28 +01:00
|
|
|
Emitted on creation of a TLS session. May be used to store sessions in external
|
2015-11-05 21:04:26 +01:00
|
|
|
storage. `callback` must be invoked eventually, otherwise no data will be
|
2016-03-14 23:52:28 +01:00
|
|
|
sent or received from the secure connection.
|
2012-12-03 18:29:01 +01:00
|
|
|
|
2016-03-14 23:52:28 +01:00
|
|
|
NOTE: adding this event listener will only have an effect on connections
|
|
|
|
established after the addition of the event listener.
|
2012-02-09 17:14:39 +01:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
### Event: 'OCSPRequest'
|
2011-10-15 18:26:38 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
`function (certificate, issuer, callback) { }`
|
2011-10-15 18:26:38 +02:00
|
|
|
|
2016-03-14 23:52:28 +01:00
|
|
|
Emitted when the client sends a certificate status request. The server's
|
|
|
|
current certificate can be parsed to obtain the OCSP URL and certificate ID;
|
|
|
|
after obtaining an OCSP response `callback(null, resp)` is then invoked, where
|
|
|
|
`resp` is a `Buffer` instance. Both `certificate` and `issuer` are `Buffer`
|
|
|
|
DER-representations of the primary and issuer's certificates. They can be used
|
|
|
|
to obtain the OCSP certificate ID and OCSP endpoint URL.
|
2011-10-15 18:26:38 +02:00
|
|
|
|
2016-03-14 23:52:28 +01:00
|
|
|
Alternatively, `callback(null, null)` may be called, meaning that there was no
|
2015-11-05 21:04:26 +01:00
|
|
|
OCSP response.
|
2015-04-23 08:25:15 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
Calling `callback(err)` will result in a `socket.destroy(err)` call.
|
2011-10-15 18:26:38 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
Typical flow:
|
2013-03-18 15:10:41 +01:00
|
|
|
|
2016-03-14 23:52:28 +01:00
|
|
|
1. Client connects to the server and sends an `'OCSPRequest'` to it (via status
|
|
|
|
info extension in ClientHello).
|
|
|
|
2. Server receives the request and invokes the `'OCSPRequest'` event listener
|
|
|
|
if present.
|
|
|
|
3. Server extracts the OCSP URL from either the `certificate` or `issuer` and
|
|
|
|
performs an [OCSP request] to the CA.
|
|
|
|
4. Server receives `OCSPResponse` from the CA and sends it back to the client
|
|
|
|
via the `callback` argument
|
|
|
|
5. Client validates the response and either destroys the socket or performs a
|
2015-11-05 21:04:26 +01:00
|
|
|
handshake.
|
2014-02-03 22:32:13 +01:00
|
|
|
|
2016-03-14 23:52:28 +01:00
|
|
|
NOTE: `issuer` could be `null` if the certificate is self-signed or if the
|
2016-01-31 07:31:09 +01:00
|
|
|
issuer is not in the root certificates list. (An issuer may be provided via the
|
2016-03-14 23:52:28 +01:00
|
|
|
`ca` option.)
|
2014-02-03 22:32:13 +01:00
|
|
|
|
2016-03-14 23:52:28 +01:00
|
|
|
NOTE: adding this event listener will only have an effect on connections
|
|
|
|
established after the addition of the event listener.
|
2011-10-15 18:26:38 +02:00
|
|
|
|
2016-03-14 23:52:28 +01:00
|
|
|
NOTE: An npm module like [asn1.js] may be used to parse the certificates.
|
2013-07-25 23:21:52 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
### Event: 'resumeSession'
|
2011-10-15 18:26:38 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
`function (sessionId, callback) { }`
|
2011-10-15 18:26:38 +02:00
|
|
|
|
2016-03-14 23:52:28 +01:00
|
|
|
Emitted when the client wants to resume the previous TLS session. The event
|
|
|
|
listener may perform a lookup in external storage using the given `sessionId`
|
|
|
|
and invoke `callback(null, sessionData)` once finished. If the session can't be
|
|
|
|
resumed (i.e., doesn't exist in storage) one may call `callback(null, null)`.
|
|
|
|
Calling `callback(err)` will terminate incoming connection and destroy the
|
|
|
|
socket.
|
2011-10-16 09:31:41 +02:00
|
|
|
|
2016-03-14 23:52:28 +01:00
|
|
|
NOTE: adding this event listener will only have an effect on connections
|
|
|
|
established after the addition of the event listener.
|
2011-10-16 09:31:41 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
Here's an example for using TLS session resumption:
|
2011-10-15 18:26:38 +02:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
var tlsSessionStore = {};
|
|
|
|
server.on('newSession', (id, data, cb) => {
|
|
|
|
tlsSessionStore[id.toString('hex')] = data;
|
|
|
|
cb();
|
|
|
|
});
|
|
|
|
server.on('resumeSession', (id, cb) => {
|
|
|
|
cb(null, tlsSessionStore[id.toString('hex')] || null);
|
|
|
|
});
|
|
|
|
```
|
2011-10-15 18:26:38 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
### Event: 'secureConnection'
|
2012-05-13 21:38:23 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
`function (tlsSocket) {}`
|
2012-05-13 21:38:23 +02:00
|
|
|
|
2016-03-14 23:52:28 +01:00
|
|
|
This event is emitted after the handshaking process for a new connection has
|
|
|
|
successfully completed. The argument is an instance of [`tls.TLSSocket`][] and
|
|
|
|
has all the common stream methods and events.
|
2011-10-15 18:26:38 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
`socket.authorized` is a boolean value which indicates if the
|
2016-03-14 23:52:28 +01:00
|
|
|
client has been verified by one of the supplied certificate authorities for the
|
|
|
|
server. If `socket.authorized` is false, then `socket.authorizationError` is
|
|
|
|
set to describe how authorization failed. Implied but worth mentioning:
|
|
|
|
depending on the settings of the TLS server, unauthorized connections may
|
|
|
|
be accepted.
|
2012-05-13 21:38:23 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
`socket.npnProtocol` is a string containing the selected NPN protocol
|
|
|
|
and `socket.alpnProtocol` is a string containing the selected ALPN
|
2016-03-14 23:52:28 +01:00
|
|
|
protocol. When both NPN and ALPN extensions are received, ALPN takes
|
2015-11-05 21:04:26 +01:00
|
|
|
precedence over NPN and the next protocol is selected by ALPN. When
|
|
|
|
ALPN has no selected protocol, this returns false.
|
2012-05-13 21:38:23 +02:00
|
|
|
|
2016-03-14 23:52:28 +01:00
|
|
|
`socket.servername` is a string containing the server name requested with
|
2015-11-05 21:04:26 +01:00
|
|
|
SNI.
|
2011-10-26 19:34:56 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
### server.addContext(hostname, context)
|
2010-12-11 11:26:48 +01:00
|
|
|
|
2016-03-14 23:52:28 +01:00
|
|
|
Add secure context that will be used if the client request's SNI hostname
|
|
|
|
matches the supplied `hostname` (wildcards can be used). `context` can contain
|
|
|
|
`key`, `cert`, `ca` or any other properties from
|
2016-01-31 13:51:08 +01:00
|
|
|
[`tls.createSecureContext()`][] `options` argument.
|
2010-12-11 11:26:48 +01:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
### server.address()
|
2010-12-11 11:26:48 +01:00
|
|
|
|
2016-03-14 23:52:28 +01:00
|
|
|
Returns the bound address, the address family name, and port of the
|
2016-01-31 13:51:08 +01:00
|
|
|
server as reported by the operating system. See [`net.Server.address()`][] for
|
2015-11-05 21:04:26 +01:00
|
|
|
more information.
|
2015-02-18 17:55:11 +01:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
### server.close([callback])
|
2011-12-07 14:47:06 +01:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
Stops the server from accepting new connections. This function is
|
|
|
|
asynchronous, the server is finally closed when the server emits a `'close'`
|
|
|
|
event. Optionally, you can pass a callback to listen for the `'close'` event.
|
2015-04-23 08:25:15 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
### server.connections
|
2011-07-30 16:03:05 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
The number of concurrent connections on the server.
|
2011-07-30 16:03:05 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
### server.getTicketKeys()
|
2015-03-09 14:46:22 +01:00
|
|
|
|
2016-03-14 23:52:28 +01:00
|
|
|
Returns a `Buffer` instance holding the keys currently used for
|
2015-11-05 21:04:26 +01:00
|
|
|
encryption/decryption of the [TLS Session Tickets][]
|
2013-05-15 21:14:20 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
### server.listen(port[, hostname][, callback])
|
2014-02-03 22:32:13 +01:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
Begin accepting connections on the specified `port` and `hostname`. If the
|
|
|
|
`hostname` is omitted, the server will accept connections on any IPv6 address
|
|
|
|
(`::`) when IPv6 is available, or any IPv4 address (`0.0.0.0`) otherwise. A
|
|
|
|
port value of zero will assign a random port.
|
2015-05-22 11:21:54 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
This function is asynchronous. The last parameter `callback` will be called
|
|
|
|
when the server has been bound.
|
2010-12-11 11:26:48 +01:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
See `net.Server` for more information.
|
2010-12-11 11:26:48 +01:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
### server.setTicketKeys(keys)
|
2011-10-15 18:26:38 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
Updates the keys for encryption/decryption of the [TLS Session Tickets][].
|
2011-10-15 18:26:38 +02:00
|
|
|
|
2016-03-14 23:52:28 +01:00
|
|
|
NOTE: the buffer should be 48 bytes long. See `ticketKeys` option in
|
|
|
|
[tls.createServer](#tlscreateserveroptions-secureconnectionlistener) for
|
|
|
|
more information on how it is used.
|
2014-07-16 16:04:34 +02:00
|
|
|
|
2016-03-14 23:52:28 +01:00
|
|
|
NOTE: the change is effective only for future server connections. Existing
|
|
|
|
or currently pending server connections will use the previous keys.
|
2011-10-15 18:26:38 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
### server.maxConnections
|
2011-10-15 18:26:38 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
Set this property to reject connections when the server's connection count
|
2016-03-14 23:52:28 +01:00
|
|
|
exceeds the specified threshold.
|
2012-05-13 21:38:23 +02:00
|
|
|
|
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
## Class: tls.TLSSocket
|
2012-05-13 21:38:23 +02:00
|
|
|
|
2015-11-28 00:30:32 +01:00
|
|
|
This is a wrapped version of [`net.Socket`][] that does transparent encryption
|
2015-11-05 21:04:26 +01:00
|
|
|
of written data and all required TLS negotiation.
|
2010-12-08 22:22:12 +01:00
|
|
|
|
2016-03-14 23:52:28 +01:00
|
|
|
This instance implements the duplex [Stream][] interface. It has all the
|
2015-11-05 21:04:26 +01:00
|
|
|
common stream methods and events.
|
2013-07-03 09:46:01 +02:00
|
|
|
|
2016-03-14 23:52:28 +01:00
|
|
|
Methods that return TLS connection metadata (e.g.
|
2016-01-31 13:51:08 +01:00
|
|
|
[`tls.TLSSocket.getPeerCertificate()`][] will only return data while the
|
|
|
|
connection is open.
|
2013-07-03 09:46:01 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
### new tls.TLSSocket(socket[, options])
|
2013-07-03 09:46:01 +02:00
|
|
|
|
2016-03-14 23:52:28 +01:00
|
|
|
Construct a new TLSSocket object from an existing TCP socket.
|
2013-07-03 09:46:01 +02:00
|
|
|
|
2015-11-28 00:30:32 +01:00
|
|
|
`socket` is an instance of [`net.Socket`][]
|
2013-07-03 09:46:01 +02:00
|
|
|
|
2015-08-29 23:27:14 +02:00
|
|
|
`options` is an optional object that might contain following properties:
|
2013-07-03 09:46:01 +02:00
|
|
|
|
2014-03-07 00:27:01 +01:00
|
|
|
- `secureContext`: An optional TLS context object from
|
2016-01-31 13:51:08 +01:00
|
|
|
[`tls.createSecureContext()`][]
|
2013-07-03 09:46:01 +02:00
|
|
|
|
2016-03-12 19:10:31 +01:00
|
|
|
- `isServer`: If `true` the TLS socket will be instantiated in server-mode.
|
2015-08-29 23:27:14 +02:00
|
|
|
Default: `false`
|
2013-07-03 09:46:01 +02:00
|
|
|
|
2015-11-28 00:30:32 +01:00
|
|
|
- `server`: An optional [`net.Server`][] instance
|
2013-07-03 09:46:01 +02:00
|
|
|
|
2016-01-31 13:51:08 +01:00
|
|
|
- `requestCert`: Optional, see [`tls.createSecurePair()`][]
|
2013-07-03 09:46:01 +02:00
|
|
|
|
2016-01-31 13:51:08 +01:00
|
|
|
- `rejectUnauthorized`: Optional, see [`tls.createSecurePair()`][]
|
2013-07-03 09:46:01 +02:00
|
|
|
|
2016-01-31 13:51:08 +01:00
|
|
|
- `NPNProtocols`: Optional, see [`tls.createServer()`][]
|
2013-07-03 09:46:01 +02:00
|
|
|
|
2016-01-31 13:51:08 +01:00
|
|
|
- `ALPNProtocols`: Optional, see [`tls.createServer()`][]
|
2015-04-23 08:25:15 +02:00
|
|
|
|
2016-01-31 13:51:08 +01:00
|
|
|
- `SNICallback`: Optional, see [`tls.createServer()`][]
|
2013-07-03 09:46:01 +02:00
|
|
|
|
2016-03-14 23:52:28 +01:00
|
|
|
- `session`: Optional, a `Buffer` instance, containing a TLS session
|
2014-02-03 22:32:13 +01:00
|
|
|
|
2016-03-12 19:10:31 +01:00
|
|
|
- `requestOCSP`: Optional, if `true` the OCSP status request extension will
|
2016-03-14 23:52:28 +01:00
|
|
|
be added to the client hello and an `'OCSPResponse'` event will be emitted
|
2016-03-12 19:10:31 +01:00
|
|
|
on the socket before establishing a secure communication
|
2014-04-14 19:15:57 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
### Event: 'OCSPResponse'
|
2014-06-25 12:11:09 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
`function (response) { }`
|
2014-06-25 12:11:09 +02:00
|
|
|
|
2016-03-14 23:52:28 +01:00
|
|
|
This event will be emitted if the `requestOCSP` option was set. `response` is a
|
|
|
|
`Buffer` containing the server's OCSP response.
|
2014-06-25 12:11:09 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
Traditionally, the `response` is a signed object from the server's CA that
|
|
|
|
contains information about server's certificate revocation status.
|
2014-06-25 12:11:09 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
### Event: 'secureConnect'
|
2014-06-25 12:11:09 +02:00
|
|
|
|
2016-03-14 23:52:28 +01:00
|
|
|
This event is emitted after the handshaking process for a new connection has
|
|
|
|
successfully completed. The listener will be called regardless of whether or not
|
|
|
|
the server's certificate has been authorized. It is the user's responsibility to
|
|
|
|
test `tlsSocket.authorized` to see if the server certificate was signed by one
|
|
|
|
of the specified CAs. If `tlsSocket.authorized === false` then the error can be
|
|
|
|
found in `tlsSocket.authorizationError`. Also, if either ALPN or NPN was used
|
|
|
|
`tlsSocket.alpnProtocol` or `tlsSocket.npnProtocol` can be checked for the
|
2015-11-05 21:04:26 +01:00
|
|
|
negotiated protocol.
|
2014-06-25 12:11:09 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
### tlsSocket.address()
|
2011-03-29 18:58:50 +02:00
|
|
|
|
2016-03-14 23:52:28 +01:00
|
|
|
Returns the bound address, the address family name, and port of the
|
2015-11-05 21:04:26 +01:00
|
|
|
underlying socket as reported by the operating system. Returns an
|
2016-03-14 23:52:28 +01:00
|
|
|
object with three properties, e.g.,
|
2015-11-05 21:04:26 +01:00
|
|
|
`{ port: 12346, family: 'IPv4', address: '127.0.0.1' }`
|
2011-03-29 18:58:50 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
### tlsSocket.authorized
|
2011-08-03 04:17:16 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
A boolean that is `true` if the peer certificate was signed by one of the
|
2016-03-14 23:52:28 +01:00
|
|
|
specified CAs, otherwise `false`.
|
2011-08-03 04:17:16 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
### tlsSocket.authorizationError
|
2011-08-03 04:17:16 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
The reason why the peer's certificate has not been verified. This property
|
|
|
|
becomes available only when `tlsSocket.authorized === false`.
|
2011-08-03 04:17:16 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
### tlsSocket.encrypted
|
2015-05-05 09:41:16 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
Static boolean value, always `true`. May be used to distinguish TLS sockets
|
|
|
|
from regular ones.
|
2011-08-03 04:17:16 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
### tlsSocket.getCipher()
|
2016-01-31 07:28:41 +01:00
|
|
|
|
|
|
|
Returns an object representing the cipher name and the SSL/TLS protocol version
|
|
|
|
that first defined the cipher.
|
2013-06-13 15:36:00 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
Example:
|
2016-03-14 23:52:28 +01:00
|
|
|
`{ name: 'AES256-SHA', version: 'TLSv1/SSLv3' }`
|
2012-02-27 20:09:35 +01:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
See SSL_CIPHER_get_name() and SSL_CIPHER_get_version() in
|
2016-01-31 07:28:41 +01:00
|
|
|
https://www.openssl.org/docs/manmaster/ssl/SSL_CIPHER_get_name.html for more
|
2015-11-05 21:04:26 +01:00
|
|
|
information.
|
2012-02-27 20:09:35 +01:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
### tlsSocket.getEphemeralKeyInfo()
|
2011-08-03 04:17:16 +02:00
|
|
|
|
2016-03-14 23:52:28 +01:00
|
|
|
Returns an object representing the type, name, and size of parameter of
|
|
|
|
an ephemeral key exchange in [Perfect Forward Secrecy][] on a client
|
2015-11-05 21:04:26 +01:00
|
|
|
connection. It returns an empty object when the key exchange is not
|
2016-03-14 23:52:28 +01:00
|
|
|
ephemeral. As this is only supported on a client socket, it returns `null`
|
|
|
|
if called on a server socket. The supported types are 'DH' and 'ECDH'. The
|
|
|
|
`name` property is only available in 'ECDH'.
|
2011-08-03 04:17:16 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
Example:
|
2011-03-29 18:58:50 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
{ type: 'ECDH', name: 'prime256v1', size: 256 }
|
2010-12-08 22:22:12 +01:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
### tlsSocket.getPeerCertificate([ detailed ])
|
2010-12-08 22:22:12 +01:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
Returns an object representing the peer's certificate. The returned object has
|
2016-03-14 23:52:28 +01:00
|
|
|
some properties corresponding to the fields of the certificate. If the
|
|
|
|
`detailed` argument is `true` the full chain with the `issuer` property will be
|
|
|
|
returned, if `false` only the top certificate without the `issuer` property.
|
2010-12-08 22:22:12 +01:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
Example:
|
2010-12-08 22:22:12 +01:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```
|
|
|
|
{ subject:
|
|
|
|
{ C: 'UK',
|
|
|
|
ST: 'Acknack Ltd',
|
|
|
|
L: 'Rhys Jones',
|
|
|
|
O: 'node.js',
|
|
|
|
OU: 'Test TLS Certificate',
|
|
|
|
CN: 'localhost' },
|
|
|
|
issuerInfo:
|
|
|
|
{ C: 'UK',
|
|
|
|
ST: 'Acknack Ltd',
|
|
|
|
L: 'Rhys Jones',
|
|
|
|
O: 'node.js',
|
|
|
|
OU: 'Test TLS Certificate',
|
|
|
|
CN: 'localhost' },
|
|
|
|
issuer:
|
|
|
|
{ ... another certificate ... },
|
|
|
|
raw: < RAW DER buffer >,
|
|
|
|
valid_from: 'Nov 11 09:52:22 2009 GMT',
|
|
|
|
valid_to: 'Nov 6 09:52:22 2029 GMT',
|
|
|
|
fingerprint: '2A:7A:C2:DD:E5:F9:CC:53:72:35:99:7A:02:5A:71:38:52:EC:8A:DF',
|
|
|
|
serialNumber: 'B9B0D332A1AA5635' }
|
|
|
|
```
|
2010-12-08 22:22:12 +01:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
If the peer does not provide a certificate, it returns `null` or an empty
|
|
|
|
object.
|
2015-04-23 08:25:15 +02:00
|
|
|
|
2016-01-31 07:26:41 +01:00
|
|
|
### tlsSocket.getProtocol()
|
|
|
|
|
|
|
|
Returns a string containing the negotiated SSL/TLS protocol version of the
|
|
|
|
current connection. `'unknown'` will be returned for connected sockets that have
|
|
|
|
not completed the handshaking process. `null` will be returned for server
|
|
|
|
sockets or disconnected client sockets.
|
|
|
|
|
|
|
|
Examples:
|
|
|
|
```
|
|
|
|
'SSLv3'
|
|
|
|
'TLSv1'
|
|
|
|
'TLSv1.1'
|
|
|
|
'TLSv1.2'
|
|
|
|
'unknown'
|
|
|
|
```
|
|
|
|
|
|
|
|
See https://www.openssl.org/docs/manmaster/ssl/SSL_get_version.html for more
|
|
|
|
information.
|
2015-04-23 08:25:15 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
### tlsSocket.getSession()
|
2010-12-08 22:22:12 +01:00
|
|
|
|
2016-03-14 23:52:28 +01:00
|
|
|
Returns the ASN.1 encoded TLS session or `undefined` if none was negotiated.
|
|
|
|
Could be used to speed up handshake establishment when reconnecting to the
|
|
|
|
server.
|
2010-12-08 22:22:12 +01:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
### tlsSocket.getTLSTicket()
|
2011-12-17 18:09:16 +01:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
NOTE: Works only with client TLS sockets. Useful only for debugging, for
|
2016-01-31 13:51:08 +01:00
|
|
|
session reuse provide `session` option to [`tls.connect()`][].
|
2011-12-17 18:09:16 +01:00
|
|
|
|
2016-03-14 23:52:28 +01:00
|
|
|
Returns the TLS session ticket or `undefined` if none was negotiated.
|
2011-12-17 18:09:16 +01:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
### tlsSocket.localAddress
|
2012-07-07 22:20:23 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
The string representation of the local IP address.
|
2012-07-07 22:20:23 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
### tlsSocket.localPort
|
2013-06-17 12:11:13 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
The numeric representation of the local port.
|
2013-06-17 12:11:13 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
### tlsSocket.remoteAddress
|
2013-06-17 12:11:13 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
The string representation of the remote IP address. For example,
|
|
|
|
`'74.125.127.100'` or `'2001:4860:a005::68'`.
|
2013-06-17 12:11:13 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
### tlsSocket.remoteFamily
|
2013-06-17 12:11:13 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
The string representation of the remote IP family. `'IPv4'` or `'IPv6'`.
|
2013-06-17 12:11:13 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
### tlsSocket.remotePort
|
2013-06-17 12:11:13 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
The numeric representation of the remote port. For example, `443`.
|
2013-06-17 12:11:13 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
### tlsSocket.renegotiate(options, callback)
|
2013-06-17 12:11:13 +02:00
|
|
|
|
2016-03-14 23:52:28 +01:00
|
|
|
Initiate TLS renegotiation process. The `options` object may contain the
|
|
|
|
following fields: `rejectUnauthorized`, `requestCert`. (See [`tls.createServer
|
|
|
|
()`][] for details.) `callback(err)` will be executed with `null` as `err`,
|
2015-11-05 21:04:26 +01:00
|
|
|
once the renegotiation is successfully completed.
|
2015-10-06 20:50:45 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
NOTE: Can be used to request peer's certificate after the secure connection
|
|
|
|
has been established.
|
2013-06-17 12:11:13 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
ANOTHER NOTE: When running as the server, socket will be destroyed
|
|
|
|
with an error after `handshakeTimeout` timeout.
|
2014-04-14 19:15:57 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
### tlsSocket.setMaxSendFragment(size)
|
2014-04-14 19:15:57 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
Set maximum TLS fragment size (default and maximum value is: `16384`, minimum
|
|
|
|
is: `512`). Returns `true` on success, `false` otherwise.
|
2014-04-14 19:15:57 +02:00
|
|
|
|
2016-03-14 23:52:28 +01:00
|
|
|
Smaller fragment sizes decrease the buffering latency on the client: larger
|
2015-11-05 21:04:26 +01:00
|
|
|
fragments are buffered by the TLS layer until the entire fragment is received
|
2016-03-14 23:52:28 +01:00
|
|
|
and its integrity is verified; large fragments can span multiple roundtrips
|
2015-11-05 21:04:26 +01:00
|
|
|
and their processing can be delayed due to packet loss or reordering. However,
|
|
|
|
smaller fragments add extra TLS framing bytes and CPU overhead, which may
|
|
|
|
decrease overall server throughput.
|
2014-04-14 19:15:57 +02:00
|
|
|
|
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
## tls.connect(options[, callback])
|
|
|
|
## tls.connect(port[, host][, options][, callback])
|
2014-04-14 19:15:57 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
Creates a new client connection to the given `port` and `host` (old API) or
|
|
|
|
`options.port` and `options.host`. (If `host` is omitted, it defaults to
|
|
|
|
`localhost`.) `options` should be an object which specifies:
|
2014-04-14 19:15:57 +02:00
|
|
|
|
2016-03-14 23:52:28 +01:00
|
|
|
- `host`: Host the client should connect to.
|
2014-04-14 19:15:57 +02:00
|
|
|
|
2016-03-14 23:52:28 +01:00
|
|
|
- `port`: Port the client should connect to.
|
2014-04-14 19:15:57 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
- `socket`: Establish secure connection on a given socket rather than
|
|
|
|
creating a new socket. If this option is specified, `host` and `port`
|
|
|
|
are ignored.
|
2014-04-14 19:15:57 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
- `path`: Creates unix socket connection to path. If this option is
|
|
|
|
specified, `host` and `port` are ignored.
|
2014-04-14 19:15:57 +02:00
|
|
|
|
2016-03-14 23:52:28 +01:00
|
|
|
- `pfx`: A string or `Buffer` containing the private key, certificate, and
|
2015-11-05 21:04:26 +01:00
|
|
|
CA certs of the client in PFX or PKCS12 format.
|
2010-12-08 22:22:12 +01:00
|
|
|
|
2016-03-14 23:52:28 +01:00
|
|
|
- `key`: A string, `Buffer`, array of strings, or array of `Buffer`s
|
|
|
|
containing the private key of the client in PEM format.
|
2010-12-08 22:22:12 +01:00
|
|
|
|
2016-03-14 23:52:28 +01:00
|
|
|
- `passphrase`: A string containing the passphrase for the private key or pfx.
|
2010-12-08 22:22:12 +01:00
|
|
|
|
2016-03-14 23:52:28 +01:00
|
|
|
- `cert`: A string, `Buffer`, array of strings, or array of `Buffer`s
|
|
|
|
containing the certificate key of the client in PEM format.
|
2010-12-08 22:22:12 +01:00
|
|
|
|
2016-03-14 23:52:28 +01:00
|
|
|
- `ca`: A string, `Buffer`, array of strings, or array of `Buffer`s of trusted
|
2015-12-09 20:20:32 +01:00
|
|
|
certificates in PEM format. If this is omitted several well known "root"
|
2016-03-14 23:52:28 +01:00
|
|
|
CAs (like VeriSign) will be used. These are used to authorize connections.
|
2010-12-08 22:22:12 +01:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
- `ciphers`: A string describing the ciphers to use or exclude, separated by
|
2016-01-31 13:51:08 +01:00
|
|
|
`:`. Uses the same default cipher suite as [`tls.createServer()`][].
|
2010-12-08 22:22:12 +01:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
- `rejectUnauthorized`: If `true`, the server certificate is verified against
|
|
|
|
the list of supplied CAs. An `'error'` event is emitted if verification
|
|
|
|
fails; `err.code` contains the OpenSSL error code. Default: `true`.
|
2010-12-08 22:22:12 +01:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
- `NPNProtocols`: An array of strings or `Buffer`s containing supported NPN
|
|
|
|
protocols. `Buffer`s should have the following format:
|
2016-03-14 23:52:28 +01:00
|
|
|
`0x05hello0x05world`, where the first byte is the next protocol name's
|
|
|
|
length. (Passing an array is usually be much simpler: `['hello', 'world']`.)
|
2011-10-26 14:12:23 +02:00
|
|
|
|
2016-03-14 23:52:28 +01:00
|
|
|
- `ALPNProtocols`: An array of strings or `Buffer`s containing the
|
2015-11-05 21:04:26 +01:00
|
|
|
supported ALPN protocols. `Buffer`s should have following format:
|
|
|
|
`0x05hello0x05world`, where the first byte is the next protocol
|
2016-03-14 23:52:28 +01:00
|
|
|
name's length. (Passing an array is usually be much simpler:
|
2015-11-05 21:04:26 +01:00
|
|
|
`['hello', 'world']`.)
|
2011-10-26 14:12:23 +02:00
|
|
|
|
2016-03-14 23:52:28 +01:00
|
|
|
- `servername`: Server name for the SNI (Server Name Indication) TLS
|
|
|
|
extension.
|
2015-07-22 22:52:23 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
- `checkServerIdentity(servername, cert)`: Provide an override for checking
|
2016-03-14 23:52:28 +01:00
|
|
|
the server's hostname against the certificate. Should return an error if
|
|
|
|
verification fails. Returns `undefined` if passing.
|
2015-07-22 22:52:23 +02:00
|
|
|
|
2016-03-14 23:52:28 +01:00
|
|
|
- `secureProtocol`: The SSL method to use, e.g., `SSLv3_method` to force
|
|
|
|
SSL version 3. The possible values depend on the version of OpenSSL
|
|
|
|
installed in the environment and are defined in the constant
|
|
|
|
[SSL_METHODS][].
|
2015-07-22 22:52:23 +02:00
|
|
|
|
2015-12-11 21:47:39 +01:00
|
|
|
- `secureContext`: An optional TLS context object from
|
2016-03-14 23:52:28 +01:00
|
|
|
`tls.createSecureContext( ... )`. It can be used for caching client
|
|
|
|
certificates, keys, and CA certificates.
|
2015-12-11 21:47:39 +01:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
- `session`: A `Buffer` instance, containing TLS session.
|
2015-07-22 22:52:23 +02:00
|
|
|
|
2016-03-14 23:52:28 +01:00
|
|
|
- `minDHSize`: Minimum size of the DH parameter in bits to accept a TLS
|
|
|
|
connection. When a server offers a DH parameter with a size less
|
|
|
|
than this, the TLS connection is destroyed and an error is thrown. Default:
|
|
|
|
1024.
|
2015-07-22 22:52:23 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
The `callback` parameter will be added as a listener for the
|
2015-11-28 00:30:32 +01:00
|
|
|
[`'secureConnect'`][] event.
|
2015-07-22 22:52:23 +02:00
|
|
|
|
2016-02-19 14:54:37 +01:00
|
|
|
`tls.connect()` returns a [`tls.TLSSocket`][] object.
|
2011-07-30 16:03:05 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
Here is an example of a client of echo server as described previously:
|
2010-12-08 22:22:12 +01:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
const tls = require('tls');
|
|
|
|
const fs = require('fs');
|
|
|
|
|
|
|
|
const options = {
|
|
|
|
// These are necessary only if using the client certificate authentication
|
|
|
|
key: fs.readFileSync('client-key.pem'),
|
|
|
|
cert: fs.readFileSync('client-cert.pem'),
|
|
|
|
|
|
|
|
// This is necessary only if the server uses the self-signed certificate
|
|
|
|
ca: [ fs.readFileSync('server-cert.pem') ]
|
|
|
|
};
|
|
|
|
|
|
|
|
var socket = tls.connect(8000, options, () => {
|
|
|
|
console.log('client connected',
|
|
|
|
socket.authorized ? 'authorized' : 'unauthorized');
|
|
|
|
process.stdin.pipe(socket);
|
|
|
|
process.stdin.resume();
|
|
|
|
});
|
|
|
|
socket.setEncoding('utf8');
|
|
|
|
socket.on('data', (data) => {
|
|
|
|
console.log(data);
|
|
|
|
});
|
|
|
|
socket.on('end', () => {
|
|
|
|
server.close();
|
|
|
|
});
|
|
|
|
```
|
2011-08-11 10:13:13 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
Or
|
2011-08-11 10:13:13 +02:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
const tls = require('tls');
|
|
|
|
const fs = require('fs');
|
|
|
|
|
|
|
|
const options = {
|
|
|
|
pfx: fs.readFileSync('client.pfx')
|
|
|
|
};
|
|
|
|
|
|
|
|
var socket = tls.connect(8000, options, () => {
|
|
|
|
console.log('client connected',
|
|
|
|
socket.authorized ? 'authorized' : 'unauthorized');
|
|
|
|
process.stdin.pipe(socket);
|
|
|
|
process.stdin.resume();
|
|
|
|
});
|
|
|
|
socket.setEncoding('utf8');
|
|
|
|
socket.on('data', (data) => {
|
|
|
|
console.log(data);
|
|
|
|
});
|
|
|
|
socket.on('end', () => {
|
|
|
|
server.close();
|
|
|
|
});
|
|
|
|
```
|
2013-01-24 00:17:04 +01:00
|
|
|
|
|
|
|
|
2016-03-14 23:52:28 +01:00
|
|
|
## tls.createSecureContext(options)
|
2013-01-24 00:17:04 +01:00
|
|
|
|
2016-03-14 23:52:28 +01:00
|
|
|
Creates a credentials object; the `options` object may contain the following
|
|
|
|
fields:
|
2011-08-11 10:13:13 +02:00
|
|
|
|
2016-03-14 23:52:28 +01:00
|
|
|
* `pfx` : A string or `Buffer` holding the PFX or PKCS12 encoded private
|
|
|
|
key, certificate, and CA certificates.
|
2015-11-05 21:04:26 +01:00
|
|
|
* `key`: A string or `Buffer` containing the private key of the server in
|
|
|
|
PEM format. To support multiple keys using different algorithms, an array
|
2016-03-14 23:52:28 +01:00
|
|
|
can be provided. It can either be a plain array of keys or an array of
|
2015-11-05 21:04:26 +01:00
|
|
|
objects in the format `{pem: key, passphrase: passphrase}`. (Required)
|
2016-03-14 23:52:28 +01:00
|
|
|
* `passphrase` : A string containing the passphrase for the private key or pfx.
|
|
|
|
* `cert` : A string containing the PEM encoded certificate
|
|
|
|
* `ca`: A string, `Buffer`, array of strings, or array of `Buffer`s of trusted
|
2015-12-09 20:20:32 +01:00
|
|
|
certificates in PEM format. If this is omitted several well known "root"
|
2016-03-14 23:52:28 +01:00
|
|
|
CAs (like VeriSign) will be used. These are used to authorize connections.
|
2015-11-05 21:04:26 +01:00
|
|
|
* `crl` : Either a string or list of strings of PEM encoded CRLs
|
2016-03-14 23:52:28 +01:00
|
|
|
(Certificate Revocation List).
|
2015-11-05 21:04:26 +01:00
|
|
|
* `ciphers`: A string describing the ciphers to use or exclude.
|
|
|
|
Consult
|
2015-12-02 17:17:19 +01:00
|
|
|
<https://www.openssl.org/docs/apps/ciphers.html#CIPHER_LIST_FORMAT>
|
2015-11-05 21:04:26 +01:00
|
|
|
for details on the format.
|
|
|
|
* `honorCipherOrder` : When choosing a cipher, use the server's preferences
|
|
|
|
instead of the client preferences. For further details see `tls` module
|
|
|
|
documentation.
|
2011-08-11 10:13:13 +02:00
|
|
|
|
2016-03-14 23:52:28 +01:00
|
|
|
If no 'CA' details are given, then Node.js will use the default
|
2015-11-05 21:04:26 +01:00
|
|
|
publicly trusted list of CAs as given in
|
|
|
|
<http://mxr.mozilla.org/mozilla/source/security/nss/lib/ckfw/builtins/certdata.txt>.
|
2011-08-11 10:13:13 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
## tls.createSecurePair([context][, isServer][, requestCert][, rejectUnauthorized][, options])
|
2015-11-10 20:33:36 +01:00
|
|
|
|
2016-03-14 23:52:28 +01:00
|
|
|
Creates a new secure pair object with two streams, one of which reads and writes
|
|
|
|
the encrypted data and the other of which reads and writes the cleartext data.
|
|
|
|
Generally, the encrypted stream is piped to/from an incoming encrypted data
|
|
|
|
stream and the cleartext one is used as a replacement for the initial encrypted
|
|
|
|
stream.
|
2011-10-15 12:27:21 +02:00
|
|
|
|
2016-03-14 23:52:28 +01:00
|
|
|
- `credentials`: A secure context object from `tls.createSecureContext( ... )`.
|
2011-10-15 12:27:21 +02:00
|
|
|
|
2016-03-14 23:52:28 +01:00
|
|
|
- `isServer`: A boolean indicating whether this TLS connection should be
|
2015-11-05 21:04:26 +01:00
|
|
|
opened as a server or a client.
|
2014-04-14 19:15:57 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
- `requestCert`: A boolean indicating whether a server should request a
|
|
|
|
certificate from a connecting client. Only applies to server connections.
|
2014-04-14 19:15:57 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
- `rejectUnauthorized`: A boolean indicating whether a server should
|
|
|
|
automatically reject clients with invalid certificates. Only applies to
|
|
|
|
servers with `requestCert` enabled.
|
2014-04-14 19:15:57 +02:00
|
|
|
|
2016-02-19 14:54:37 +01:00
|
|
|
- `options`: An object with common SSL options. See [`tls.TLSSocket`][].
|
2014-04-14 19:15:57 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
`tls.createSecurePair()` returns a SecurePair object with `cleartext` and
|
|
|
|
`encrypted` stream properties.
|
2013-12-19 10:04:34 +01:00
|
|
|
|
2016-03-14 23:52:28 +01:00
|
|
|
NOTE: `cleartext` has the same API as [`tls.TLSSocket`][]
|
2013-12-19 10:04:34 +01:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
## tls.createServer(options[, secureConnectionListener])
|
2011-08-11 10:13:13 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
Creates a new [tls.Server][]. The `connectionListener` argument is
|
2015-11-28 00:30:32 +01:00
|
|
|
automatically set as a listener for the [`'secureConnection'`][] event. The
|
2016-03-14 23:52:28 +01:00
|
|
|
`options` object may contain the following fields:
|
2011-08-11 10:13:13 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
- `pfx`: A string or `Buffer` containing the private key, certificate and
|
|
|
|
CA certs of the server in PFX or PKCS12 format. (Mutually exclusive with
|
2016-03-14 23:52:28 +01:00
|
|
|
the `key`, `cert`, and `ca` options.)
|
2011-08-11 10:13:13 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
- `key`: A string or `Buffer` containing the private key of the server in
|
2016-03-14 23:52:28 +01:00
|
|
|
PEM format. To support multiple keys using different algorithms an array
|
|
|
|
can be provided. It can either be a plain array of keys or an array of
|
2015-11-05 21:04:26 +01:00
|
|
|
objects in the format `{pem: key, passphrase: passphrase}`. (Required)
|
2011-08-11 10:13:13 +02:00
|
|
|
|
2016-03-14 23:52:28 +01:00
|
|
|
- `passphrase`: A string containing the passphrase for the private key or pfx.
|
2011-08-11 10:13:13 +02:00
|
|
|
|
2016-03-14 23:52:28 +01:00
|
|
|
- `cert`: A string, `Buffer`, array of strings, or array of `Buffer`s
|
|
|
|
containing the certificate key of the server in PEM format. (Required)
|
2011-08-11 10:13:13 +02:00
|
|
|
|
2016-03-14 23:52:28 +01:00
|
|
|
- `ca`: A string, `Buffer`, array of strings, or array of `Buffer`s of trusted
|
2015-12-09 20:20:32 +01:00
|
|
|
certificates in PEM format. If this is omitted several well known "root"
|
2016-03-14 23:52:28 +01:00
|
|
|
CAs (like VeriSign) will be used. These are used to authorize connections.
|
2011-08-11 10:13:13 +02:00
|
|
|
|
2016-03-14 23:52:28 +01:00
|
|
|
- `crl` : Either a string or array of strings of PEM encoded CRLs (Certificate
|
|
|
|
Revocation List).
|
2011-08-11 10:13:13 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
- `ciphers`: A string describing the ciphers to use or exclude, separated by
|
|
|
|
`:`. The default cipher suite is:
|
2011-10-26 14:12:23 +02:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
ECDHE-RSA-AES128-GCM-SHA256:
|
|
|
|
ECDHE-ECDSA-AES128-GCM-SHA256:
|
|
|
|
ECDHE-RSA-AES256-GCM-SHA384:
|
|
|
|
ECDHE-ECDSA-AES256-GCM-SHA384:
|
|
|
|
DHE-RSA-AES128-GCM-SHA256:
|
|
|
|
ECDHE-RSA-AES128-SHA256:
|
|
|
|
DHE-RSA-AES128-SHA256:
|
|
|
|
ECDHE-RSA-AES256-SHA384:
|
|
|
|
DHE-RSA-AES256-SHA384:
|
|
|
|
ECDHE-RSA-AES256-SHA256:
|
|
|
|
DHE-RSA-AES256-SHA256:
|
|
|
|
HIGH:
|
|
|
|
!aNULL:
|
|
|
|
!eNULL:
|
|
|
|
!EXPORT:
|
|
|
|
!DES:
|
|
|
|
!RC4:
|
|
|
|
!MD5:
|
|
|
|
!PSK:
|
|
|
|
!SRP:
|
|
|
|
!CAMELLIA
|
|
|
|
```
|
2012-03-23 05:04:10 +01:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
The default cipher suite prefers GCM ciphers for [Chrome's 'modern
|
|
|
|
cryptography' setting] and also prefers ECDHE and DHE ciphers for Perfect
|
2016-03-14 23:52:28 +01:00
|
|
|
Forward Secrecy, while offering *some* backward compatibility.
|
2012-03-23 05:04:10 +01:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
128 bit AES is preferred over 192 and 256 bit AES in light of [specific
|
|
|
|
attacks affecting larger AES key sizes].
|
2012-03-23 05:04:10 +01:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
Old clients that rely on insecure and deprecated RC4 or DES-based ciphers
|
2016-03-14 23:52:28 +01:00
|
|
|
(like Internet Explorer 6) cannot complete the handshaking process with
|
|
|
|
the default configuration. If these clients _must_ be supported, the
|
2015-11-05 21:04:26 +01:00
|
|
|
[TLS recommendations] may offer a compatible cipher suite. For more details
|
|
|
|
on the format, see the [OpenSSL cipher list format documentation].
|
2015-05-22 11:20:26 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
- `ecdhCurve`: A string describing a named curve to use for ECDH key agreement
|
|
|
|
or false to disable ECDH.
|
2015-05-22 11:20:26 +02:00
|
|
|
|
2016-03-14 23:52:28 +01:00
|
|
|
Defaults to `prime256v1` (NIST P-256). Use [`crypto.getCurves()`][] to
|
|
|
|
obtain a list of available curve names. On recent releases,
|
2015-11-05 21:04:26 +01:00
|
|
|
`openssl ecparam -list_curves` will also display the name and description of
|
|
|
|
each available elliptic curve.
|
2015-05-22 11:20:26 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
- `dhparam`: A string or `Buffer` containing Diffie Hellman parameters,
|
|
|
|
required for Perfect Forward Secrecy. Use `openssl dhparam` to create it.
|
|
|
|
Its key length should be greater than or equal to 1024 bits, otherwise
|
|
|
|
it throws an error. It is strongly recommended to use 2048 bits or
|
2016-03-14 23:52:28 +01:00
|
|
|
larger for stronger security. If omitted or invalid, it is silently
|
2015-11-05 21:04:26 +01:00
|
|
|
discarded and DHE ciphers won't be available.
|
2015-05-22 11:20:26 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
- `handshakeTimeout`: Abort the connection if the SSL/TLS handshake does not
|
2016-03-14 23:52:28 +01:00
|
|
|
finish in the specified number of milliseconds. The default is 120 seconds.
|
2013-08-23 15:53:16 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
A `'clientError'` is emitted on the `tls.Server` object whenever a handshake
|
|
|
|
times out.
|
2013-08-23 15:53:16 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
- `honorCipherOrder` : When choosing a cipher, use the server's preferences
|
|
|
|
instead of the client preferences. Default: `true`.
|
2013-08-23 15:53:16 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
- `requestCert`: If `true` the server will request a certificate from
|
|
|
|
clients that connect and attempt to verify that certificate. Default:
|
|
|
|
`false`.
|
2013-08-23 15:53:16 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
- `rejectUnauthorized`: If `true` the server will reject any connection
|
|
|
|
which is not authorized with the list of supplied CAs. This option only
|
|
|
|
has an effect if `requestCert` is `true`. Default: `false`.
|
2014-01-17 19:46:49 +01:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
- `NPNProtocols`: An array or `Buffer` of possible NPN protocols. (Protocols
|
2016-03-14 23:52:28 +01:00
|
|
|
should be ordered by their priority.)
|
2014-01-17 19:46:49 +01:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
- `ALPNProtocols`: An array or `Buffer` of possible ALPN
|
2016-03-14 23:52:28 +01:00
|
|
|
protocols. (Protocols should be ordered by their priority.) When
|
2015-11-05 21:04:26 +01:00
|
|
|
the server receives both NPN and ALPN extensions from the client,
|
|
|
|
ALPN takes precedence over NPN and the server does not send an NPN
|
|
|
|
extension to the client.
|
2014-01-17 19:46:49 +01:00
|
|
|
|
2016-03-14 23:52:28 +01:00
|
|
|
- `SNICallback(servername, cb)`: A function that will be called if the client
|
|
|
|
supports SNI TLS extension. Two arguments will be passed to it:
|
|
|
|
`servername` and `cb`. `SNICallback` should invoke `cb(null, ctx)`, where
|
|
|
|
`ctx` is a SecureContext instance. (`tls.createSecureContext(...)` can be
|
|
|
|
used to get a proper SecureContext.) If `SNICallback` wasn't provided the
|
|
|
|
default callback with high-level API will be used (see below).
|
2014-02-03 22:32:13 +01:00
|
|
|
|
2016-03-14 23:52:28 +01:00
|
|
|
- `sessionTimeout`: An integer specifying the number of seconds after which
|
|
|
|
the TLS session identifiers and TLS session tickets created by the server
|
|
|
|
will time out. See [SSL_CTX_set_timeout] for more details.
|
2014-02-03 22:32:13 +01:00
|
|
|
|
2016-03-14 23:52:28 +01:00
|
|
|
- `ticketKeys`: A 48-byte `Buffer` instance consisting of a 16-byte prefix,
|
|
|
|
a 16-byte HMAC key, and a 16-byte AES key. This can be used to accept TLS
|
|
|
|
session tickets on multiple instances of the TLS server.
|
2014-02-03 22:32:13 +01:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
NOTE: Automatically shared between `cluster` module workers.
|
2014-02-03 22:32:13 +01:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
- `sessionIdContext`: A string containing an opaque identifier for session
|
2015-11-10 00:19:11 +01:00
|
|
|
resumption. If `requestCert` is `true`, the default is a 128 bit
|
2016-03-14 23:52:28 +01:00
|
|
|
truncated SHA1 hash value generated from the command-line. Otherwise, a
|
|
|
|
default is not provided.
|
2014-02-03 22:32:13 +01:00
|
|
|
|
2016-03-14 23:52:28 +01:00
|
|
|
- `secureProtocol`: The SSL method to use, e.g., `SSLv3_method` to force
|
|
|
|
SSL version 3. The possible values depend on the version of OpenSSL
|
|
|
|
installed in the environment and are defined in the constant [SSL_METHODS][].
|
2011-10-26 14:12:23 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
Here is a simple example echo server:
|
2011-10-26 14:12:23 +02:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
const tls = require('tls');
|
|
|
|
const fs = require('fs');
|
|
|
|
|
|
|
|
const options = {
|
|
|
|
key: fs.readFileSync('server-key.pem'),
|
|
|
|
cert: fs.readFileSync('server-cert.pem'),
|
|
|
|
|
|
|
|
// This is necessary only if using the client certificate authentication.
|
|
|
|
requestCert: true,
|
|
|
|
|
|
|
|
// This is necessary only if the client uses the self-signed certificate.
|
|
|
|
ca: [ fs.readFileSync('client-cert.pem') ]
|
|
|
|
};
|
|
|
|
|
|
|
|
var server = tls.createServer(options, (socket) => {
|
|
|
|
console.log('server connected',
|
|
|
|
socket.authorized ? 'authorized' : 'unauthorized');
|
|
|
|
socket.write('welcome!\n');
|
|
|
|
socket.setEncoding('utf8');
|
|
|
|
socket.pipe(socket);
|
|
|
|
});
|
|
|
|
server.listen(8000, () => {
|
|
|
|
console.log('server bound');
|
|
|
|
});
|
|
|
|
```
|
2011-10-26 14:12:23 +02:00
|
|
|
|
2015-11-05 21:04:26 +01:00
|
|
|
Or
|
2012-06-06 21:05:18 +02:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
const tls = require('tls');
|
|
|
|
const fs = require('fs');
|
|
|
|
|
|
|
|
const options = {
|
|
|
|
pfx: fs.readFileSync('server.pfx'),
|
2013-05-20 15:14:30 +02:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
// This is necessary only if using the client certificate authentication.
|
|
|
|
requestCert: true,
|
2013-05-20 15:14:30 +02:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
};
|
2015-11-05 21:04:26 +01:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
var server = tls.createServer(options, (socket) => {
|
|
|
|
console.log('server connected',
|
|
|
|
socket.authorized ? 'authorized' : 'unauthorized');
|
|
|
|
socket.write('welcome!\n');
|
|
|
|
socket.setEncoding('utf8');
|
|
|
|
socket.pipe(socket);
|
|
|
|
});
|
|
|
|
server.listen(8000, () => {
|
|
|
|
console.log('server bound');
|
|
|
|
});
|
|
|
|
```
|
2015-11-05 21:04:26 +01:00
|
|
|
|
|
|
|
You can test this server by connecting to it with `openssl s_client`:
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```
|
|
|
|
openssl s_client -connect 127.0.0.1:8000
|
|
|
|
```
|
2015-11-05 21:04:26 +01:00
|
|
|
|
|
|
|
## tls.getCiphers()
|
|
|
|
|
|
|
|
Returns an array with the names of the supported SSL ciphers.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
var ciphers = tls.getCiphers();
|
|
|
|
console.log(ciphers); // ['AES128-SHA', 'AES256-SHA', ...]
|
|
|
|
```
|
2013-05-20 15:14:30 +02:00
|
|
|
|
|
|
|
|
2015-12-02 17:17:19 +01:00
|
|
|
[OpenSSL cipher list format documentation]: https://www.openssl.org/docs/apps/ciphers.html#CIPHER_LIST_FORMAT
|
|
|
|
[Chrome's 'modern cryptography' setting]: https://www.chromium.org/Home/chromium-security/education/tls#TOC-Deprecation-of-TLS-Features-Algorithms-in-Chrome
|
2015-05-08 20:54:34 +02:00
|
|
|
[specific attacks affecting larger AES key sizes]: https://www.schneier.com/blog/archives/2009/07/another_new_aes.html
|
2015-12-02 17:17:19 +01:00
|
|
|
[BEAST attacks]: https://blog.ivanristic.com/2011/10/mitigating-the-beast-attack-on-tls.html
|
2016-01-31 13:51:08 +01:00
|
|
|
[`crypto.getCurves()`]: crypto.html#crypto_crypto_getcurves
|
|
|
|
[`tls.createServer()`]: #tls_tls_createserver_options_secureconnectionlistener
|
|
|
|
[`tls.createSecurePair()`]: #tls_tls_createsecurepair_context_isserver_requestcert_rejectunauthorized_options
|
2016-02-19 14:54:37 +01:00
|
|
|
[`tls.TLSSocket`]: #tls_class_tls_tlssocket
|
2015-11-28 00:30:32 +01:00
|
|
|
[`net.Server`]: net.html#net_class_net_server
|
|
|
|
[`net.Socket`]: net.html#net_class_net_socket
|
2016-01-31 13:51:08 +01:00
|
|
|
[`net.Server.address()`]: net.html#net_server_address
|
2015-11-28 00:30:32 +01:00
|
|
|
[`'secureConnect'`]: #tls_event_secureconnect
|
|
|
|
[`'secureConnection'`]: #tls_event_secureconnection
|
2015-05-22 11:20:26 +02:00
|
|
|
[Perfect Forward Secrecy]: #tls_perfect_forward_secrecy
|
2012-06-06 21:05:18 +02:00
|
|
|
[Stream]: stream.html#stream_stream
|
2015-12-02 17:17:19 +01:00
|
|
|
[SSL_METHODS]: https://www.openssl.org/docs/ssl/ssl.html#DEALING_WITH_PROTOCOL_METHODS
|
2012-06-06 21:05:18 +02:00
|
|
|
[tls.Server]: #tls_class_tls_server
|
2015-12-02 17:17:19 +01:00
|
|
|
[SSL_CTX_set_timeout]: https://www.openssl.org/docs/ssl/SSL_CTX_set_timeout.html
|
|
|
|
[RFC 4492]: https://www.rfc-editor.org/rfc/rfc4492.txt
|
|
|
|
[Forward secrecy]: https://en.wikipedia.org/wiki/Perfect_forward_secrecy
|
2014-01-05 12:07:54 +01:00
|
|
|
[DHE]: https://en.wikipedia.org/wiki/Diffie%E2%80%93Hellman_key_exchange
|
|
|
|
[ECDHE]: https://en.wikipedia.org/wiki/Elliptic_curve_Diffie%E2%80%93Hellman
|
2015-12-02 17:17:19 +01:00
|
|
|
[asn1.js]: https://npmjs.org/package/asn1.js
|
|
|
|
[OCSP request]: https://en.wikipedia.org/wiki/OCSP_stapling
|
2015-02-15 18:43:36 +01:00
|
|
|
[TLS recommendations]: https://wiki.mozilla.org/Security/Server_Side_TLS
|
2015-07-22 22:52:23 +02:00
|
|
|
[TLS Session Tickets]: https://www.ietf.org/rfc/rfc5077.txt
|
2016-01-31 13:51:08 +01:00
|
|
|
[`tls.TLSSocket.getPeerCertificate()`]: #tls_tlssocket_getpeercertificate_detailed
|
|
|
|
[`tls.createSecureContext()`]: #tls_tls_createsecurecontext_details
|
|
|
|
[`tls.connect()`]: #tls_tls_connect_options_callback
|