Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What would be the best possible way to generate API keys and hash passwords in Nodejs?

Tags:

node.js

I am using my own authentication and sort of worried about the present security of my API. What would you suggest would be a good way to generate API keys? And what would be a better way to hash the password?

like image 678
Hick Avatar asked Oct 26 '12 19:10

Hick


Video Answer


1 Answers

For api keys I would suggest you node-uuid. For hashing passwords - builtin crypto. For api secrets you can also use node-uuid + crypto combined. Something like that (node repl):

> require('node-uuid')()
'5d2962e4-55c8-460c-aa7b-9586905779cb'
> require('crypto').createHash('sha256').update(_).update('salt').digest('hex');
'06f905820cafb3b34bd7ba8729acf6d671446ff09ffb0aaa7f0290c936fc6c68'
like image 159
Anatoliy Avatar answered Oct 06 '22 03:10

Anatoliy