@@ -570,7 +570,7 @@ added: v1.0.0
570570* ` options ` {Object} [ ` stream.transform ` options] [ ]
571571 * ` plaintextLength ` {number}
572572 * ` encoding ` {string} The string encoding to use when ` buffer ` is a string.
573- * Returns: {Cipher} for method chaining.
573+ * Returns: {Cipher} The same ` Cipher ` instance for method chaining.
574574
575575When using an authenticated encryption mode (` GCM ` , ` CCM ` , ` OCB ` , and
576576` chacha20-poly1305 ` are
@@ -590,7 +590,7 @@ added: v0.7.1
590590-->
591591
592592* ` autoPadding ` {boolean} ** Default:** ` true `
593- * Returns: {Cipher} for method chaining.
593+ * Returns: {Cipher} The same ` Cipher ` instance for method chaining.
594594
595595When using block encryption algorithms, the ` Cipher ` class will automatically
596596add padding to the input data to the appropriate block size. To disable the
@@ -870,7 +870,7 @@ changes:
870870* ` options ` {Object} [ ` stream.transform ` options] [ ]
871871 * ` plaintextLength ` {number}
872872 * ` encoding ` {string} String encoding to use when ` buffer ` is a string.
873- * Returns: {Decipher} for method chaining.
873+ * Returns: {Decipher} The same Decipher for method chaining.
874874
875875When using an authenticated encryption mode (` GCM ` , ` CCM ` , ` OCB ` , and
876876` chacha20-poly1305 ` are
@@ -905,7 +905,7 @@ changes:
905905
906906* ` buffer ` {string|Buffer|ArrayBuffer|TypedArray|DataView}
907907* ` encoding ` {string} String encoding to use when ` buffer ` is a string.
908- * Returns: {Decipher} for method chaining.
908+ * Returns: {Decipher} The same Decipher for method chaining.
909909
910910When using an authenticated encryption mode (` GCM ` , ` CCM ` , ` OCB ` , and
911911` chacha20-poly1305 ` are
@@ -931,7 +931,7 @@ added: v0.7.1
931931-->
932932
933933* ` autoPadding ` {boolean} ** Default:** ` true `
934- * Returns: {Decipher} for method chaining.
934+ * Returns: {Decipher} The same Decipher for method chaining.
935935
936936When data has been encrypted without standard block padding, calling
937937` decipher.setAutoPadding(false) ` will disable automatic padding to prevent
0 commit comments