Open In App

Node.js crypto.verify() Function

Last Updated : 23 Jul, 2025
Comments
Improve
Suggest changes
Like Article
Like
Report

The crypto.verify()  is a method of the inbuilt module of node.js crypto that is used to verify the signature of data that is hashed using different kinds of hashing functions Like SHA256 algorithm etc.

Syntax:

crypto.verify(algorithm, data, publicKey, signature)

Parameters:

  • algorithm:  It is a string-type value. A signature can be verified by applying the name of signature algorithms, like ‘SHA256’. The algorithm must be the same in which the signature was created.
  • data: The data argument must be an instance of the buffer,  Typed Array, or Data View.
  • key: It should be the public key of the key object. If you do have not any public keys then you can create private and public keys using crypto.generateKeyPairSync() method.
  • signature: The signature argument must be an instance of Buffer, Typed Array, or Data View.

Returned value: This function returns a boolean value. Return True if a signature is verified else false.

Example:

Filename: index.js

JavaScript
// Importing Required Modules
const crypto = require('crypto');
const buffer = require('buffer');

// Creating a private key
const { privateKey, publicKey } = crypto.generateKeyPairSync('rsa', {
                                          modulusLength: 2048,
});
// Using Hashing Algorithm
const algorithm = "SHA256";

// Converting string to buffer
let data = Buffer.from("I Love GeeksForGeeks");

// Sign the data and returned signature in buffer
let signature = crypto.sign(algorithm, data, privateKey);

// Verifying signature using crypto.verify() function
let isVerified = crypto.verify(algorithm, data, publicKey, signature);

// Printing the result
console.log(`Is signature verified: ${isVerified}`);

Run index.js using the below command:

node index.js

Output:

Reference:https://nodejs.org/api/crypto.html#crypto_crypto_verify_algorithm_data_key_signature


Similar Reads