Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

create hash in node js

const crypto = require('crypto');
const hashformat= crypto.createHmac('sha256', process.env.HASH_SECRET)
.update("hashData")
.digest('hex');
 
PREVIOUS NEXT
Tagged: #create #hash #node #js
ADD COMMENT
Topic
Name
4+6 =