method Decipher.prototype.setAutoPadding
Jump to headingDecipher.prototype.setAutoPadding(auto_padding?: boolean): thisWhen data has been encrypted without standard block padding, calling decipher.setAutoPadding(false) will disable automatic padding to prevent decipher.final() from checking for and
removing padding.
Turning auto padding off will only work if the input data's length is a multiple of the ciphers block size.
The decipher.setAutoPadding() method must be called before decipher.final().
Parameters Jump to heading
optional
Jump to headingauto_padding: booleanReturn Type Jump to heading
thisfor method chaining.