Get your own Node server
// Import the crypto module
const crypto = require('crypto');

// Create a Verify object
const verify = crypto.createVerify('RSA-SHA256');

console.log('Verify object created with RSA-SHA256 algorithm');

              
Verify object created with RSA-SHA256 algorithm