Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

Commit

Permalink
Add doc note about STARTTLS
Browse files Browse the repository at this point in the history
  • Loading branch information
ry committed Mar 29, 2011
1 parent c0b461d commit 1768c72
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions doc/api/tls.markdown
Expand Up @@ -51,6 +51,19 @@ signed by one of the specified CAs. If `s.authorized === false` then the error
can be found in `s.authorizationError`.


### STARTTLS

In the v0.4 branch no function exists for starting a TLS session on an
already existing TCP connection. This is possible it just requires a bit of
work. The technique is to use `tls.createSecurePair()` which returns two
streams: an encrypted stream and a plaintext stream. The encrypted stream is then
piped to the socket, the plaintext stream is what the user interacts with thereafter.

[Here is some code that does it.](http://gist.github.com/848444)




### tls.Server

This class is a subclass of `net.Server` and has the same methods on it.
Expand Down

0 comments on commit 1768c72

Please sign in to comment.