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)));
169
169
added: v0.1.94
170
170
-->
171
171
172
+ * Extends: {stream.Transform}
173
+
172
174
Instances of the ` Cipher ` class are used to encrypt data. The class can be
173
175
used in one of two ways:
174
176
@@ -354,6 +356,8 @@ The `cipher.update()` method can be called multiple times with new data until
354
356
added: v0.1.94
355
357
-->
356
358
359
+ * Extends: {stream.Transform}
360
+
357
361
Instances of the ` Decipher ` class are used to decrypt data. The class can be
358
362
used in one of two ways:
359
363
@@ -950,6 +954,8 @@ console.log(aliceSecret === bobSecret);
950
954
added: v0.1.92
951
955
-->
952
956
957
+ * Extends: {stream.Transform}
958
+
953
959
The ` Hash ` class is a utility for creating hash digests of data. It can be
954
960
used in one of two ways:
955
961
@@ -1044,6 +1050,8 @@ This can be called many times with new data as it is streamed.
1044
1050
added: v0.1.94
1045
1051
-->
1046
1052
1053
+ * Extends: {stream.Transform}
1054
+
1047
1055
The ` Hmac ` class is a utility for creating cryptographic HMAC digests. It can
1048
1056
be used in one of two ways:
1049
1057
@@ -1252,6 +1260,8 @@ or `'private'` for private (asymmetric) keys.
1252
1260
added: v0.1.92
1253
1261
-->
1254
1262
1263
+ * Extends: {stream.Writable}
1264
+
1255
1265
The ` Sign ` class is a utility for generating signatures. It can be used in one
1256
1266
of two ways:
1257
1267
@@ -1377,6 +1387,8 @@ This can be called many times with new data as it is streamed.
1377
1387
added: v0.1.92
1378
1388
-->
1379
1389
1390
+ * Extends: {stream.Writable}
1391
+
1380
1392
The ` Verify ` class is a utility for verifying signatures. It can be used in one
1381
1393
of two ways:
1382
1394
Original file line number Diff line number Diff line change @@ -123,6 +123,7 @@ const customTypesMap = {
123
123
'Stream' : 'stream.html#stream_stream' ,
124
124
'stream.Duplex' : 'stream.html#stream_class_stream_duplex' ,
125
125
'stream.Readable' : 'stream.html#stream_class_stream_readable' ,
126
+ 'stream.Transform' : 'stream.html#stream_class_stream_transform' ,
126
127
'stream.Writable' : 'stream.html#stream_class_stream_writable' ,
127
128
128
129
'Immediate' : 'timers.html#timers_class_immediate' ,
You can’t perform that action at this time.
0 commit comments