Top "Node-crypto" questions

Node.

How do I use Node.js Crypto to create a HMAC-SHA1 hash?

I want to create a hash of I love cupcakes (signed with the key abcdeg) How can I create that …

javascript node.js algorithm hash node-crypto
Using SHA-256 with NodeJS Crypto

I'm trying to hash a variable in NodeJS like so: var crypto = require('crypto'); var hash = crypto.createHash('sha256'); …

node.js node-crypto
SALT and HASH password in nodejs w/ crypto

I am trying to figure out how to salt and hash a password in nodejs using the crypto module. I …

node.js node-crypto
How to create a pair private/public keys using Node.js crypto?

I have to generate two keys (private and public) to encrypt a text with the public and let the user …

node.js node-crypto
How to encrypt data that needs to be decrypted in node.js?

We are using bcrypt for hashing passwords and data that never needs to be decrypted. What should we do to …

javascript node.js encryption cryptography node-crypto
How to create random-salt-hash with crypto

I want to create a salt-hash using node.js crypto lib without having to parse any hardcoded data. What do …

javascript node.js cryptography node-crypto
Do i need to install crypto module from npm?

I am making use of crypto module in my app. It seems like there is crypto module distributed in nodejs …

node.js npm node-crypto
Node.js and crypto library

I'm having weird issues with Node's crypto library. I wrote this simple AES testing script: var cipher = crypto.createCipher('aes-256…

node.js encryption aes node-crypto
EVP_DecryptFinal_ex:bad decrypt when using Node.js

Using the following node js: var crypto = require('crypto'); var encrypt = function (input, password, callback) { var m = crypto.createHash('md5…

node.js encryption openssl cryptography node-crypto
nodejs crypto module vs crypto-js

I'm quite new to NodeJs and trying to figure out how to use the "crypto" module. While playing around with …

javascript node.js cryptojs node-crypto