• Returns: {Object}
      • name {string} OpenSSL name for the cipher suite.
      • standardName {string} IETF name for the cipher suite.
      • version {string} The minimum TLS protocol version supported by this cipher suite.

    Returns an object containing information on the negotiated cipher suite.

    For example:

    1. {
    2. "name": "AES128-SHA256",
    3. "standardName": "TLS_RSA_WITH_AES_128_CBC_SHA256",
    4. "version": "TLSv1.2"
    5. }

    See SSL_CIPHER_get_name for more information.