doc: add cleartextStream.getCipher() in tls

pull/24503/head
Shigeki Ohtsu 2012-03-23 13:04:10 +09:00 committed by Ben Noordhuis
parent 249c3c165a
commit 2cf5f040a5
1 changed files with 11 additions and 0 deletions

View File

@ -401,6 +401,17 @@ Example:
If the peer does not provide a certificate, it returns `null` or an empty
object.
### cleartextStream.getCipher()
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
http://www.openssl.org/docs/ssl/ssl.html#DEALING_WITH_CIPHERS for more
information.
### cleartextStream.address()
Returns the bound address and port of the underlying socket as reported by the