TLS (SSL)

    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
    server must have a private key. A private key is created like this:

    1. openssl genrsa -out ryans-key.pem 2048

    All servers and some clients need to have a certificate. Certificates are public
    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:

    1. openssl req -new -sha256 -key ryans-key.pem -out ryans-csr.pem

    To create a self-signed certificate with the CSR, do this:

    1. openssl x509 -req -in ryans-csr.pem -signkey ryans-key.pem -out ryans-cert.pem

    Alternatively you can send the CSR to a Certificate Authority for signing.

    For Perfect Forward Secrecy, it is required to generate Diffie-Hellman
    parameters:

    1. openssl dhparam -outform PEM -out dhparam.pem 2048

    To create .pfx or .p12, do this:

    1. openssl pkcs12 -export -in agent5-cert.pem -inkey agent5-key.pem \
    2. -certfile ca-cert.pem -out agent5.pfx
    • in: certificate
    • inkey: private key
    • certfile: all CA certs concatenated in one file like
      cat ca1-cert.pem ca2-cert.pem > ca-cert.pem

    Node.js is compiled with SSLv2 and SSLv3 protocol support by default, but these
    protocols are disabled. They are considered insecure and could be easily
    compromised as was shown by CVE-2014-3566. However, in some situations, it
    may cause problems with legacy clients/servers (such as Internet Explorer 6).
    If you wish to enable SSLv2 or SSLv3, run node with the --enable-ssl2 or
    --enable-ssl3 flag respectively. In future versions of Node.js SSLv2 and
    SSLv3 will not be compiled in by default.

    There is a way to force node into using SSLv3 or SSLv2 only mode by explicitly
    specifying secureProtocol to 'SSLv3_method' or 'SSLv2_method'.

    The default protocol method Node.js uses is SSLv23_method which would be more
    accurately named AutoNegotiate_method. This method will try and negotiate
    from the highest level down to whatever the client supports. To provide a
    secure default, Node.js (since v0.10.33) explicitly disables the use of SSLv3
    and SSLv2 by setting the secureOptions to be
    SSL_OP_NO_SSLv3|SSL_OP_NO_SSLv2 (again, unless you have passed
    --enable-ssl3, or --enable-ssl2, or SSLv3_method as secureProtocol).

    If you have set secureOptions to anything, we will not override your
    options.

    The ramifications of this behavior change:

    • If your application is behaving as a secure server, clients who are SSLv3
      only will now not be able to appropriately negotiate a connection and will be
      refused. In this case your server will emit a clientError event. The error
      message will include 'wrong version number'.
    • If your application is behaving as a secure client and communicating with a
      server that doesn’t support methods more secure than SSLv3 then your connection
      won’t be able to negotiate and will fail. In this case your client will emit a
      an error event. The error message will include 'wrong version number'.

    Client-initiated renegotiation attack mitigation

    The TLS protocol lets the client renegotiate certain aspects of the TLS session.
    Unfortunately, session renegotiation requires a disproportional amount of
    server-side resources, which makes it a potential vector for denial-of-service
    attacks.

    To mitigate this, renegotiations are limited to three times every 10 minutes. An
    error is emitted on the tls.TLSSocket instance when the threshold is
    exceeded. The limits are configurable:

    • tls.CLIENT_RENEG_LIMIT: renegotiation limit, default is 3.

    • tls.CLIENT_RENEG_WINDOW: renegotiation window in seconds, default is
      10 minutes.

    Don’t change the defaults unless you know what you are doing.

    To test your server, connect to it with openssl s_client -connect address:port
    and tap R<CR> (that’s the letter R followed by a carriage return) a few
    times.

    NPN and SNI

    NPN (Next Protocol Negotiation) and SNI (Server Name Indication) are TLS
    handshake extensions allowing you:

    • NPN - to use one TLS server for multiple protocols (HTTP, SPDY)
    • SNI - to use one TLS server for multiple hostnames with different SSL
      certificates.

    Perfect Forward Secrecy

    The term ““ or “Perfect Forward Secrecy” describes a feature of
    key-agreement (i.e. key-exchange) methods. Practically it means that even if the
    private key of a (your) server is compromised, communication can only be
    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
    handshake (in contrary to the same key for all sessions). Methods implementing
    this technique, thus offering Perfect Forward Secrecy, are called “ephemeral”.

    Currently two methods are commonly used to achieve Perfect Forward Secrecy (note
    the character “E” appended to the traditional abbreviations):

    • DHE - An ephemeral version of the Diffie Hellman key-agreement protocol.
    • - An ephemeral version of the Elliptic Curve Diffie Hellman
      key-agreement protocol.

    Ephemeral methods may have some performance drawbacks, because key generation
    is expensive.

    Modifying the Default Cipher Suite

    Node.js is built with a default suite of enabled and disabled ciphers.
    Currently, the default cipher suite is:

    1. ECDHE-RSA-AES256-SHA384:DHE-RSA-AES256-SHA384:ECDHE-RSA-AES256-SHA256:
    2. DHE-RSA-AES256-SHA256:ECDHE-RSA-AES128-SHA256:DHE-RSA-AES128-SHA256:
    3. HIGH:!aNULL:!eNULL:!EXPORT:!DES:!RC4:!MD5:!PSK:!SRP:!CAMELLIA

    This default can be overridden entirely using the --cipher-list command line
    switch or NODE_CIPHER_LIST environment variable. For instance:

    Setting the environment variable would have the same effect:

    1. NODE_CIPHER_LIST=ECDHE-RSA-AES256-SHA384:DHE-RSA-AES256-SHA384

    CAUTION: The default cipher suite 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
    --cipher-list and NODE_CIPHER_LIST options should only be used if
    absolutely necessary.

    It is possible for the built-in default cipher suite to change from one release
    of Node.js to another. For instance, v0.10.38 uses a different default than
    v0.12.2. Such changes can cause issues with applications written to assume
    certain specific defaults. To help buffer applications against such changes,
    the --enable-legacy-cipher-list command line switch or NODE_LEGACY_CIPHER_LIST
    environment variable can be set to specify a specific preset default:

    1. # Use the v0.10.38 defaults
    2. node --enable-legacy-cipher-list=v0.10.38
    3. // or
    4. NODE_LEGACY_CIPHER_LIST=v0.10.38
    5. # Use the v0.12.2 defaults
    6. node --enable-legacy-cipher-list=v0.12.2
    7. // or
    8. NODE_LEGACY_CIPHER_LIST=v0.12.2

    Currently, the values supported for the enable-legacy-cipher-list switch and
    NODE_LEGACY_CIPHER_LIST environment variable include:

    1. v0.10.38 - To enable the default cipher suite used in v0.10.38
    2. ECDHE-RSA-AES128-SHA256:AES128-GCM-SHA256:RC4:HIGH:!MD5:!aNULL:!EDH
    3. ECDHE-RSA-AES128-SHA256:AES128-GCM-SHA256:HIGH:!RC4:!MD5:!aNULL:!EDH
    4. v0.12.2 - To enable the default cipher suite used in v0.12.2
    5. ECDHE-RSA-AES128-SHA256:DHE-RSA-AES128-SHA256:AES128-GCM-SHA256:RC4:
    6. HIGH:!MD5:!aNULL
    7. v.0.12.3 - To enable the default cipher suite used in v0.12.3
    8. ECDHE-RSA-AES128-SHA256:DHE-RSA-AES128-SHA256:AES128-GCM-SHA256:HIGH:
    9. !RC4:!MD5:!aNULL

    These legacy cipher suites are also made available for use via the
    getLegacyCiphers() method:

    1. var tls = require('tls');
    2. console.log(tls.getLegacyCiphers('v0.10.38'));

    CAUTION: Changes to the default cipher suite are typically made in order to
    strengthen the default security for applications running within Node.js.
    Reverting back to the defaults used by older releases can weaken the security
    of your applications. The legacy cipher suites should only be used if absolutely
    necessary.

    tls.getCiphers()

    Returns an array with the names of the supported SSL ciphers.

    Example:

    1. var ciphers = tls.getCiphers();
    2. console.log(ciphers); // ['AES128-SHA', 'AES256-SHA', ...]

    Returns the legacy default cipher suite for the specified Node.js release.

    Example:
    var cipher_suite = tls.getLegacyCiphers(‘v0.10.38’);

    tls.createServer(options[, secureConnectionListener])

    Creates a new . The connectionListener argument is
    automatically set as a listener for the secureConnection event. The
    options object has these possibilities:

    • pfx: A string or Buffer containing the private key, certificate and
      CA certs of the server in PFX or PKCS12 format. (Mutually exclusive with
      the key, cert and ca options.)

    • key: A string or Buffer containing the private key of the server in
      PEM format. (Could be an array of keys). (Required)

    • passphrase: A string of passphrase for the private key or pfx.

    • cert: A string or Buffer containing the certificate key of the server in
      PEM format. (Could be an array of certs). (Required)

    • ca: An array of strings or Buffers of trusted certificates in PEM
      format. If this is omitted several well known “root” CAs will be used,
      like VeriSign. These are used to authorize connections.

    • crl : Either a string or list of strings of PEM encoded CRLs (Certificate
      Revocation List)

    • ciphers: A string describing the ciphers to use or exclude, separated by
      :. The default cipher suite is:

      1. ECDHE-RSA-AES256-SHA384ECDHE-RSA-AES256-SHA256:
      2. DHE-RSA-AES256-SHA256:ECDHE-RSA-AES128-SHA256:DHE-RSA-AES128-SHA256:
      3. HIGH:!aNULL:!eNULL:!EXPORT:!DES:!RC4:!MD5:!PSK:!SRP:!CAMELLIA

      The default cipher suite prefers ECDHE and DHE ciphers for Perfect Forward
      secrecy, while offering some backward compatibility. Old clients which
      rely on insecure and deprecated RC4 or DES-based ciphers (like Internet
      Explorer 6) aren’t able to complete the handshake with the default
      configuration. If you absolutely must support these clients, the
      may offer a compatible cipher suite. For more details
      on the format, see the OpenSSL cipher list format documentation.

    • ecdhCurve: A string describing a named curve to use for ECDH key agreement
      or false to disable ECDH.

      Defaults to prime256v1. Consult for more details.

    • dhparam: DH parameter file to use for DHE key agreement. Use
      openssl dhparam command to create it. If the file is invalid to
      load, it is silently discarded.

    • handshakeTimeout: Abort the connection if the SSL/TLS handshake does not
      finish in this many milliseconds. The default is 120 seconds.

      A 'clientError' is emitted on the tls.Server object whenever a handshake
      times out.

    • honorCipherOrder : When choosing a cipher, use the server’s preferences
      instead of the client preferences. Default: true.

      Although, this option is disabled by default, it is recommended that you
      use this option in conjunction with the ciphers option to mitigate
      BEAST attacks.

      Note: If SSLv2 is used, the server will send its list of preferences to the
      client, and the client chooses the cipher. Support for SSLv2 is disabled
      unless node.js was configured with ./configure --with-sslv2.

    • requestCert: If true the server will request a certificate from
      clients that connect and attempt to verify that certificate. Default:
      false.

    • 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.

    • checkServerIdentity(servername, cert): Provide an override for checking
      server’s hostname against the certificate. Should return an error if verification
      fails. Return undefined if passing.

    • NPNProtocols: An array or Buffer of possible NPN protocols. (Protocols
      should be ordered by their priority).

    • SNICallback(servername, cb): A function that will be called if client
      supports SNI TLS extension. Two argument will be passed to it: servername,
      and cb. SNICallback should invoke cb(null, ctx), where ctx is a
      SecureContext instance.
      (You can use tls.createSecureContext(...) to get proper
      SecureContext). If SNICallback wasn’t provided - default callback with
      high-level API will be used (see below).

    • ticketKeys: A 48-byte instance consisting of 16-byte prefix,
      16-byte hmac key, 16-byte AES key. You could use it to accept tls session
      tickets on multiple instances of tls server.

      NOTE: Automatically shared between cluster module workers.

    • sessionIdContext: A string containing an opaque identifier for session
      resumption. If requestCert is true, the default is MD5 hash value
      generated from command-line. Otherwise, the default is not provided.

    • secureProtocol: The SSL method to use, e.g. SSLv3_method to force
      SSL version 3. The possible values depend on your installation of
      OpenSSL and are defined in the constant SSL_METHODS.

    • secureOptions: Set server options. For example, to disable the SSLv3
      protocol set the SSL_OP_NO_SSLv3 flag. See
      for all available options.

    Here is a simple example echo server:

    Or

    1. var tls = require('tls');
    2. var fs = require('fs');
    3. var options = {
    4. pfx: fs.readFileSync('server.pfx'),
    5. // This is necessary only if using the client certificate authentication.
    6. requestCert: true,
    7. };
    8. var server = tls.createServer(options, function(socket) {
    9. console.log('server connected',
    10. socket.authorized ? 'authorized' : 'unauthorized');
    11. socket.write("welcome!\n");
    12. socket.setEncoding('utf8');
    13. socket.pipe(socket);
    14. });
    15. server.listen(8000, function() {
    16. console.log('server bound');
    17. });

    You can test this server by connecting to it with openssl s_client:

    1. openssl s_client -connect 127.0.0.1:8000

    tls.connect(options[, callback])

    tls.connect(port[, host][, options][, callback])

    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:

    • host: Host the client should connect to

    • port: Port the client should connect to

    • socket: Establish secure connection on a given socket rather than
      creating a new socket. If this option is specified, host and port
      are ignored.

    • path: Creates unix socket connection to path. If this option is
      specified, host and port are ignored.

    • ciphers: A string describing the ciphers to use or exclude.

      Defaults to
      ECDHE-RSA-AES128-SHA256AES128-GCM-SHA256:HIGH:!RC4:!MD5:!aNULL.
      Consult the OpenSSL cipher list format documentation for details
      on the format.

      The full list of available ciphers can be obtained via .

      ECDHE-RSA-AES128-SHA256, DHE-RSA-AES128-SHA256 and
      AES128-GCM-SHA256 are TLS v1.2 ciphers and used when Node.js is
      linked against OpenSSL 1.0.1 or newer, such as the bundled version
      of OpenSSL.

    • pfx: A string or Buffer containing the private key, certificate and
      CA certs of the client in PFX or PKCS12 format.

    • key: A string or Buffer containing the private key of the client in
      PEM format. (Could be an array of keys).

    • passphrase: A string of passphrase for the private key or pfx.

    • cert: A string or Buffer containing the certificate key of the client in
      PEM format. (Could be an array of certs).

    • ca: An array of strings or Buffers of trusted certificates in PEM
      format. If this is omitted several well known “root” CAs will be used,
      like VeriSign. These are used to authorize connections.

    • 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.

    • NPNProtocols: An array of strings or Buffers containing supported NPN
      protocols. Buffers should have following format: 0x05hello0x05world,
      where first byte is next protocol name’s length. (Passing array should
      usually be much simpler: ['hello', 'world'].)

    • servername: Servername for SNI (Server Name Indication) TLS extension.

    • secureProtocol: The SSL method to use, e.g. SSLv3_method to force
      SSL version 3. The possible values depend on your installation of
      OpenSSL and are defined in the constant SSL_METHODS.

    • session: A Buffer instance, containing TLS session.

    The callback parameter will be added as a listener for the
    event.

    tls.connect() returns a tls.TLSSocket object.

    Here is an example of a client of echo server as described previously:

    1. var tls = require('tls');
    2. var fs = require('fs');
    3. var options = {
    4. // These are necessary only if using the client certificate authentication
    5. key: fs.readFileSync('client-key.pem'),
    6. cert: fs.readFileSync('client-cert.pem'),
    7. // This is necessary only if the server uses the self-signed certificate
    8. ca: [ fs.readFileSync('server-cert.pem') ]
    9. };
    10. var socket = tls.connect(8000, options, function() {
    11. console.log('client connected',
    12. socket.authorized ? 'authorized' : 'unauthorized');
    13. process.stdin.pipe(socket);
    14. process.stdin.resume();
    15. });
    16. socket.setEncoding('utf8');
    17. socket.on('data', function(data) {
    18. console.log(data);
    19. });
    20. socket.on('end', function() {
    21. server.close();
    22. });

    Or

    1. var tls = require('tls');
    2. var fs = require('fs');
    3. var options = {
    4. pfx: fs.readFileSync('client.pfx')
    5. };
    6. var socket = tls.connect(8000, options, function() {
    7. console.log('client connected',
    8. socket.authorized ? 'authorized' : 'unauthorized');
    9. process.stdin.pipe(socket);
    10. process.stdin.resume();
    11. });
    12. socket.setEncoding('utf8');
    13. socket.on('data', function(data) {
    14. console.log(data);
    15. });
    16. socket.on('end', function() {
    17. server.close();
    18. });

    Class: tls.TLSSocket

    Wrapper for instance of net.Socket, replaces internal socket read/write
    routines to perform transparent encryption/decryption of incoming/outgoing data.

    new tls.TLSSocket(socket, options)

    Construct a new TLSSocket object from existing TCP socket.

    socket is an instance of net.Socket

    options is an object that might contain following properties:

    • secureContext: An optional TLS context object from
      tls.createSecureContext( ... )

    • isServer: If true - TLS socket will be instantiated in server-mode

    • server: An optional instance

    • requestCert: Optional, see tls.createSecurePair

    • rejectUnauthorized: Optional, see

    • NPNProtocols: Optional, see tls.createServer

    • : Optional, see

    • session: Optional, a Buffer instance, containing TLS session

    • requestOCSP: Optional, if true - OCSP status request extension would
      be added to client hello, and OCSPResponse event will be emitted on socket
      before establishing secure communication

    Creates a credentials object, with the optional details being a
    dictionary with keys:

    • pfx : A string or buffer holding the PFX or PKCS12 encoded private
      key, certificate and CA certificates
    • key : A string holding the PEM encoded private key
    • passphrase : A string of passphrase for the private key or pfx
    • cert : A string holding the PEM encoded certificate
    • ca : Either a string or list of strings of PEM encoded CA
      certificates to trust.
    • crl : Either a string or list of strings of PEM encoded CRLs
      (Certificate Revocation List)
    • 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.
    • honorCipherOrder : When choosing a cipher, use the server’s preferences
      instead of the client preferences. For further details see tls module
      documentation.

    If no ‘ca’ details are given, then node.js will use the default
    publicly trusted list of CAs as given in
    .

    tls.createSecurePair([context][, isServer][, requestCert][, rejectUnauthorized])

    Creates a new secure pair object with two streams, one of which reads/writes
    encrypted data, and one reads/writes cleartext data.
    Generally the encrypted one is piped to/from an incoming encrypted data stream,
    and the cleartext one is used as a replacement for the initial encrypted stream.

    • context: A secure context object from tls.createSecureContext( … )

    • isServer: A boolean indicating whether this tls connection should be
      opened as a server or a client.

    • requestCert: A boolean indicating whether a server should request a
      certificate from a connecting client. Only applies to server connections.

    • rejectUnauthorized: A boolean indicating whether a server should
      automatically reject clients with invalid certificates. Only applies to
      servers with requestCert enabled.

    tls.createSecurePair() returns a SecurePair object with cleartext and
    encrypted stream properties.

    NOTE: cleartext has the same APIs as

    Class: SecurePair

    Returned by tls.createSecurePair.

    Event: ‘secure’

    The event is emitted from the SecurePair once the pair has successfully
    established a secure connection.

    Similarly to the checking for the server ‘secureConnection’ event,
    pair.cleartext.authorized should be checked to confirm whether the certificate
    used properly authorized.

    Class: tls.Server

    This class is a subclass of net.Server and has the same methods on it.
    Instead of accepting just raw TCP connections, this accepts encrypted
    connections using TLS or SSL.

    Event: ‘secureConnection’

    This event is emitted after a new connection has been successfully
    handshaked. The argument is an instance of tls.TLSSocket. It has all the
    common stream methods and events.

    socket.authorized is a boolean value which indicates if the
    client has 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, you unauthorized connections may be accepted.
    socket.npnProtocol is a string containing selected NPN protocol.
    socket.servername is a string containing servername requested with
    SNI.

    Event: ‘clientError’

    function (exception, tlsSocket) { }

    When a client connection emits an ‘error’ event before secure connection is
    established - it will be forwarded here.

    tlsSocket is the tls.TLSSocket that the error originated from.

    Event: ‘newSession’

    function (sessionId, sessionData, callback) { }

    Emitted on creation of TLS session. May be used to store sessions in external
    storage. callback must be invoked eventually, otherwise no data will be
    sent or received from secure connection.

    NOTE: adding this event listener will have an effect only on connections
    established after addition of event listener.

    Event: ‘resumeSession’

    function (sessionId, callback) { }

    Emitted when client wants to resume previous TLS session. Event listener may
    perform lookup in external storage using given sessionId, and invoke
    callback(null, sessionData) once finished. If 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 socket.

    NOTE: adding this event listener will have an effect only on connections
    established after addition of event listener.

    Event: ‘OCSPRequest’

    function (certificate, issuer, callback) { }

    Emitted when the client sends a certificate status request. You could parse
    server’s current certificate to obtain OCSP url and certificate id, and after
    obtaining OCSP response invoke callback(null, resp), where resp is a
    Buffer instance. Both certificate and issuer are a Buffer
    DER-representations of the primary and issuer’s certificates. They could be used
    to obtain OCSP certificate id and OCSP endpoint url.

    Alternatively, callback(null, null) could be called, meaning that there is no
    OCSP response.

    Calling callback(err) will result in a socket.destroy(err) call.

    Typical flow:

    1. Client connects to server and sends OCSPRequest to it (via status info
      extension in ClientHello.)
    2. Server receives request and invokes OCSPRequest event listener if present
    3. Server grabs OCSP url from either certificate or issuer and performs an
      OCSP request to the CA
    4. Server receives OCSPResponse from CA and sends it back to client via
      callback argument
    5. Client validates the response and either destroys socket or performs a
      handshake.

    NOTE: issuer could be null, if the certificate is self-signed or if the issuer
    is not in the root certificates list. (You could provide an issuer via ca
    option.)

    NOTE: adding this event listener will have an effect only on connections
    established after addition of event listener.

    NOTE: you may want to use some npm module like to parse the
    certificates.

    server.listen(port[, host][, callback])

    Begin accepting connections on the specified port and host. If the
    host is omitted, the server will accept connections directed to any
    IPv4 address (INADDR_ANY).

    This function is asynchronous. The last parameter callback will be called
    when the server has been bound.

    See net.Server for more information.

    server.close()

    Stops the server from accepting new connections. This function is
    asynchronous, the server is finally closed when the server emits a 'close'
    event.

    server.address()

    Returns the bound address, the address family name and port of the
    server as reported by the operating system. See for
    more information.

    Add secure context that will be used if client request’s SNI hostname is
    matching passed hostname (wildcards can be used). context can contain
    key, cert, ca and/or any other properties from tls.createSecureContext
    options argument.

    server.maxConnections

    Set this property to reject connections when the server’s connection count
    gets high.

    server.connections

    The number of concurrent connections on the server.

    Class: CryptoStream

    1. Stability: 0 - Deprecated. Use tls.TLSSocket instead.

    This is an encrypted stream.

    cryptoStream.bytesWritten

    A proxy to the underlying socket’s bytesWritten accessor, this will return
    the total bytes written to the socket, including the TLS overhead.

    Class: CleartextStream

    The CleartextStream class in Node.js version v0.10.39 and prior has been
    deprecated and removed.

    This is a wrapped version of that does transparent encryption
    of written data and all required TLS negotiation.

    This instance implements a duplex Stream interfaces. It has all the
    common stream methods and events.

    Event: ‘secureConnect’

    This event is emitted after a new connection has been successfully handshaked.
    The listener will be called no matter if the server’s certificate was
    authorized or not. It is up to the user 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 NPN was used - you can check
    tlsSocket.npnProtocol for negotiated protocol.

    Event: ‘OCSPResponse’

    function (response) { }

    This event will be emitted if requestOCSP option was set. response is a
    buffer object, containing server’s OCSP response.

    Traditionally, the response is a signed object from the server’s CA that
    contains information about server’s certificate revocation status.

    tlsSocket.encrypted

    Static boolean value, always true. May be used to distinguish TLS sockets
    from regular ones.

    tlsSocket.authorized

    A boolean that is true if the peer certificate was signed by one of the
    specified CAs, otherwise false

    tlsSocket.authorizationError

    The reason why the peer’s certificate has not been verified. This property
    becomes available only when tlsSocket.authorized === false.

    tlsSocket.getPeerCertificate([ detailed ])

    Returns an object representing the peer’s certificate. The returned object has
    some properties corresponding to the field of the certificate. If detailed
    argument is true - the full chain with issuer property will be returned,
    if false - only the top certificate without issuer property.

    Example:

    1. { subject:
    2. { C: 'UK',
    3. ST: 'Acknack Ltd',
    4. L: 'Rhys Jones',
    5. O: 'node.js',
    6. OU: 'Test TLS Certificate',
    7. CN: 'localhost' },
    8. issuerInfo:
    9. { C: 'UK',
    10. ST: 'Acknack Ltd',
    11. L: 'Rhys Jones',
    12. O: 'node.js',
    13. OU: 'Test TLS Certificate',
    14. CN: 'localhost' },
    15. issuer:
    16. { ... another certificate ... },
    17. raw: < RAW DER buffer >,
    18. valid_from: 'Nov 11 09:52:22 2009 GMT',
    19. valid_to: 'Nov 6 09:52:22 2029 GMT',
    20. fingerprint: '2A:7A:C2:DD:E5:F9:CC:53:72:35:99:7A:02:5A:71:38:52:EC:8A:DF',

    If the peer does not provide a certificate, it returns null or an empty
    object.

    Returns an object representing the cipher name and the SSL/TLS
    protocol version of the current connection.

    Example:
    { name: ‘AES256-SHA’, version: ‘TLSv1/SSLv3’ }

    See SSL_CIPHER_get_name() and SSL_CIPHER_get_version() in
    for more
    information.

    tlsSocket.renegotiate(options, callback)

    Initiate TLS renegotiation process. The options may contain the following
    fields: rejectUnauthorized, requestCert (See
    for details). callback(err) will be executed with null as err,
    once the renegotiation is successfully completed.

    NOTE: Can be used to request peer’s certificate after the secure connection
    has been established.

    ANOTHER NOTE: When running as the server, socket will be destroyed
    with an error after handshakeTimeout timeout.

    tlsSocket.setMaxSendFragment(size)

    Set maximum TLS fragment size (default and maximum value is: 16384, minimum
    is: 512). Returns true on success, false otherwise.

    Smaller fragment size decreases buffering latency on the client: large
    fragments are buffered by the TLS layer until the entire fragment is received
    and its integrity is verified; large fragments can span multiple roundtrips,
    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.

    tlsSocket.getSession()

    Return ASN.1 encoded TLS session or undefined if none was negotiated. Could
    be used to speed up handshake establishment when reconnecting to the server.

    tlsSocket.getTLSTicket()

    NOTE: Works only with client TLS sockets. Useful only for debugging, for
    session reuse provide session option to tls.connect.

    Return TLS session ticket or undefined if none was negotiated.

    tlsSocket.address()

    Returns the bound address, the address family name and port of the
    underlying socket as reported by the operating system. Returns an
    object with three properties, e.g.
    { port: 12346, family: 'IPv4', address: '127.0.0.1' }

    tlsSocket.remoteAddress

    The string representation of the remote IP address. For example,
    '74.125.127.100' or '2001a005::68'.

    tlsSocket.remoteFamily

    The string representation of the remote IP family. 'IPv4' or 'IPv6'.

    tlsSocket.remotePort

    The numeric representation of the remote port. For example, .

    tlsSocket.localAddress

    The numeric representation of the local port.