Decipher.prototype.setAutoPadding - Node documentation
method Decipher.prototype.setAutoPadding

Usage in Deno

import { Decipher } from "node:crypto";
Decipher.prototype.setAutoPadding(auto_padding?: boolean): this

When data has been encrypted without standard block padding, callingdecipher.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

optional
auto_padding: boolean

Return Type

this

for method chaining.