Skip to content

Commit 3716e99

Browse files
committed
Merge pull request #96 from tdurk93/patch-1
s/TSL/TLS/
2 parents a4800be + 8ae55b6 commit 3716e99

File tree

1 file changed

+2
-2
lines changed
  • pages/articles/cryptography/how-to-use-the-tls-module

1 file changed

+2
-2
lines changed

pages/articles/cryptography/how-to-use-the-tls-module/content.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## What is TLS?
22

3-
[Transport Layer Security](http://en.wikipedia.org/wiki/Transport_Layer_Security) (or TSL) is the successor to Secure Sockets Layer (or SSL). It, along with SSL, are the de-facto standard cryptographic protocols for secure communications over the web. TSL encrypts communications on top of a network transport layer (typically tcp), and uses public-key cryptography to encrypt messages.
3+
[Transport Layer Security](http://en.wikipedia.org/wiki/Transport_Layer_Security) (or TLS) is the successor to Secure Sockets Layer (or SSL). It, along with SSL, are the de-facto standard cryptographic protocols for secure communications over the web. TLS encrypts communications on top of a network transport layer (typically tcp), and uses public-key cryptography to encrypt messages.
44

55
### Public-Key Cryptography
66

@@ -10,7 +10,7 @@ In TLS connections, the public key is called a *[certificate](http://en.wikipedi
1010

1111
### History of TLS/SSL Support in Node.JS
1212

13-
TLS support in node is relatively new. The first stable version of node.js to support TSL and HTTPS was the v0.4 branch, which was released in early 2011. Since then, the primary focus of the core developers has shifted from TLS/HTTPS to Windows support in the v0.5 branch. As such, the TSL APIs in node are still a little rough around the edges, and documentation leaves something to be desired.
13+
TLS support in node is relatively new. The first stable version of node.js to support TLS and HTTPS was the v0.4 branch, which was released in early 2011. Since then, the primary focus of the core developers has shifted from TLS/HTTPS to Windows support in the v0.5 branch. As such, the TLS APIs in node are still a little rough around the edges, and documentation leaves something to be desired.
1414

1515
## The tls Module
1616

0 commit comments

Comments
 (0)