method TLSSocket.prototype.getCipher
Jump to headingTLSSocket.prototype.getCipher(): CipherNameAndProtocolReturns an object containing information on the negotiated cipher suite.
For example, a TLSv1.2 protocol with AES256-SHA cipher:
{
    "name": "AES256-SHA",
    "standardName": "TLS_RSA_WITH_AES_256_CBC_SHA",
    "version": "SSLv3"
}
See SSL_CIPHER_get_name for more information.