File tree Expand file tree Collapse file tree 2 files changed +13
-0
lines changed Expand file tree Collapse file tree 2 files changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -169,6 +169,8 @@ console.log(cert.verifySpkac(Buffer.from(spkac)));
169169added: v0.1.94
170170-->
171171
172+ * Extends: {stream.Transform}
173+
172174Instances of the ` Cipher ` class are used to encrypt data. The class can be
173175used in one of two ways:
174176
@@ -354,6 +356,8 @@ The `cipher.update()` method can be called multiple times with new data until
354356added: v0.1.94
355357-->
356358
359+ * Extends: {stream.Transform}
360+
357361Instances of the ` Decipher ` class are used to decrypt data. The class can be
358362used in one of two ways:
359363
@@ -950,6 +954,8 @@ console.log(aliceSecret === bobSecret);
950954added: v0.1.92
951955-->
952956
957+ * Extends: {stream.Transform}
958+
953959The ` Hash ` class is a utility for creating hash digests of data. It can be
954960used in one of two ways:
955961
@@ -1044,6 +1050,8 @@ This can be called many times with new data as it is streamed.
10441050added: v0.1.94
10451051-->
10461052
1053+ * Extends: {stream.Transform}
1054+
10471055The ` Hmac ` class is a utility for creating cryptographic HMAC digests. It can
10481056be used in one of two ways:
10491057
@@ -1252,6 +1260,8 @@ or `'private'` for private (asymmetric) keys.
12521260added: v0.1.92
12531261-->
12541262
1263+ * Extends: {stream.Writable}
1264+
12551265The ` Sign ` class is a utility for generating signatures. It can be used in one
12561266of two ways:
12571267
@@ -1377,6 +1387,8 @@ This can be called many times with new data as it is streamed.
13771387added: v0.1.92
13781388-->
13791389
1390+ * Extends: {stream.Writable}
1391+
13801392The ` Verify ` class is a utility for verifying signatures. It can be used in one
13811393of two ways:
13821394
Original file line number Diff line number Diff line change @@ -123,6 +123,7 @@ const customTypesMap = {
123123 'Stream' : 'stream.html#stream_stream' ,
124124 'stream.Duplex' : 'stream.html#stream_class_stream_duplex' ,
125125 'stream.Readable' : 'stream.html#stream_class_stream_readable' ,
126+ 'stream.Transform' : 'stream.html#stream_class_stream_transform' ,
126127 'stream.Writable' : 'stream.html#stream_class_stream_writable' ,
127128
128129 'Immediate' : 'timers.html#timers_class_immediate' ,
You can’t perform that action at this time.
0 commit comments