decipher.final([output_encoding])
Returns any remaining deciphered contents. If output_encoding
parameter is one of 'binary'
, 'base64'
or 'hex'
, a string is returned. If an output_encoding
is not provided, a Buffer
is returned.
Once the decipher.final()
method has been called, the Decipher
object can no longer be used to decrypt data. Attempts to call decipher.final()
more than once will result in an error being thrown.
Please login to continue.