0 votes
in NodeJS Essentials by
Which of the following is used to decrypt data in Node.js?

A) crypto.createDecipher()

B) crypto.decrypt()

C) crypto.hash()

D) crypto.encode()

1 Answer

0 votes
by

Answer: A

Explanation: The crypto.createDecipher() method is used to decrypt data in Node.js.

...