Skip to content

Instantly share code, notes, and snippets.

@romuloctba
Forked from zfael/nodejs.signfile.js
Created June 3, 2020 07:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save romuloctba/18505f4791d081382d01c2301530b2c6 to your computer and use it in GitHub Desktop.
Save romuloctba/18505f4791d081382d01c2301530b2c6 to your computer and use it in GitHub Desktop.
Node.JS - CRYPTO How to sign a file
//how to execute: node sign.js <path file> <path private key>
//output: signature of file
var crypto = require('crypto');
var fs = require('fs');
var args = process.argv.slice(2);
var fileName = args[0];
var keyPath = args[1];
//openssl genrsa -out key.pem 1024
var privatePem = fs.readFileSync(keyPath);
var key = privatePem.toString();
var sign = crypto.createSign('RSA-SHA256');
var buffer = fs.readFileSync(fileName);
sign.update(buffer);
var sig = sign.sign(key, 'hex');
console.log(sig);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment