File tree 3 files changed +5
-5
lines changed
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -131,7 +131,7 @@ the native addon will also need to have a C/C++ toolchain installed.
131
131
132
132
For Linux developers, the necessary C/C++ toolchain packages are readily
133
133
available. [GCC][] is widely used in the Node.js community to build and
134
- test across a variety of plarforms . For many developers, the [LLVM][]
134
+ test across a variety of platforms . For many developers, the [LLVM][]
135
135
compiler infrastructure is also a good choice.
136
136
137
137
For Mac developers, [Xcode][] offers all the required compiler tools.
Original file line number Diff line number Diff line change @@ -85,8 +85,8 @@ all sessions). Methods implementing this technique are called "ephemeral".
85
85
Currently two methods are commonly used to achieve perfect forward secrecy (note
86
86
the character "E" appended to the traditional abbreviations):
87
87
88
- * [ DHE] [ ] : An ephemeral version of the Diffie Hellman key-agreement protocol.
89
- * [ ECDHE] [ ] : An ephemeral version of the Elliptic Curve Diffie Hellman
88
+ * [ DHE] [ ] : An ephemeral version of the Diffie- Hellman key-agreement protocol.
89
+ * [ ECDHE] [ ] : An ephemeral version of the Elliptic Curve Diffie- Hellman
90
90
key-agreement protocol.
91
91
92
92
Ephemeral methods may have some performance drawbacks, because key generation
@@ -1617,7 +1617,7 @@ changes:
1617
1617
client certificate.
1618
1618
* ` crl ` {string|string[ ] |Buffer|Buffer[ ] } PEM formatted CRLs (Certificate
1619
1619
Revocation Lists).
1620
- * ` dhparam ` {string|Buffer} Diffie Hellman parameters, required for
1620
+ * ` dhparam ` {string|Buffer} Diffie- Hellman parameters, required for
1621
1621
[ perfect forward secrecy] [ ] . Use ` openssl dhparam ` to create the parameters.
1622
1622
The key length must be greater than or equal to 1024 bits or else an error
1623
1623
will be thrown. Although 1024 bits is permissible, use 2048 bits or larger
Original file line number Diff line number Diff line change @@ -110,7 +110,7 @@ const { port1 } = new MessageChannel();
110
110
port1 .postMessage (typedArray1, [ typedArray1 .buffer ]);
111
111
112
112
// The following line prints the contents of typedArray1 -- it still owns its
113
- // memory and has been cloned, not transfered . Without `markAsUntransferable()`,
113
+ // memory and has been cloned, not transferred . Without `markAsUntransferable()`,
114
114
// this would print an empty Uint8Array. typedArray2 is intact as well.
115
115
console .log (typedArray1);
116
116
console .log (typedArray2);
You can’t perform that action at this time.
0 commit comments