File tree 2 files changed +6
-24
lines changed
2 files changed +6
-24
lines changed Original file line number Diff line number Diff line change @@ -937,7 +937,7 @@ changes:
937
937
938
938
Type: End-of-Life
939
939
940
- The [ ` tls.CryptoStream ` ] [ ] class was removed. Please use
940
+ The ` tls.CryptoStream ` class was removed. Please use
941
941
[ ` tls.TLSSocket ` ] [ ] instead.
942
942
943
943
### DEP0043: ` tls.SecurePair `
@@ -3866,7 +3866,6 @@ When an `args` array is passed to [`child_process.execFile`][] or [`child_proces
3866
3866
[ `timeout.ref()` ] : timers.md#timeoutref
3867
3867
[ `timeout.refresh()` ] : timers.md#timeoutrefresh
3868
3868
[ `timeout.unref()` ] : timers.md#timeoutunref
3869
- [ `tls.CryptoStream` ] : tls.md#class-tlscryptostream
3870
3869
[ `tls.SecureContext` ] : tls.md#tlscreatesecurecontextoptions
3871
3870
[ `tls.SecurePair` ] : tls.md#class-tlssecurepair
3872
3871
[ `tls.TLSSocket` ] : tls.md#class-tlstlssocket
Original file line number Diff line number Diff line change @@ -547,28 +547,11 @@ description are taken from deps/openssl/openssl/crypto/x509/x509_txt.c
547
547
* ` 'CERT_REJECTED' ` : Certificate rejected.
548
548
* ` 'HOSTNAME_MISMATCH' ` : Hostname mismatch.
549
549
550
- ## Class: ` tls.CryptoStream `
551
-
552
- <!-- YAML
553
- added: v0.3.4
554
- deprecated: v0.11.3
555
- -->
556
-
557
- > Stability: 0 - Deprecated: Use [ ` tls.TLSSocket ` ] [ ] instead.
558
-
559
- The ` tls.CryptoStream ` class represents a stream of encrypted data. This class
560
- is deprecated and should no longer be used.
561
-
562
- ### ` cryptoStream.bytesWritten `
563
-
564
- <!-- YAML
565
- added: v0.3.4
566
- deprecated: v0.11.3
567
- -->
568
-
569
- The ` cryptoStream.bytesWritten ` property returns the total number of bytes
570
- written to the underlying socket _ including_ the bytes required for the
571
- implementation of the TLS protocol.
550
+ When certificate errors like ` UNABLE_TO_VERIFY_LEAF_SIGNATURE ` ,
551
+ ` DEPTH_ZERO_SELF_SIGNED_CERT ` , or ` UNABLE_TO_GET_ISSUER_CERT ` occur, Node.js
552
+ appends a hint suggesting that if the root CA is installed locally,
553
+ try running with the ` --use-system-ca ` flag to direct developers towards a
554
+ secure solution, to prevent unsafe workarounds.
572
555
573
556
## Class: ` tls.SecurePair `
574
557
You can’t perform that action at this time.
0 commit comments