prod124njac/prod124njac-back-b/authsec_node/Backend/Functions/generateRandomHash.js

14 lines
300 B
JavaScript
Raw Normal View History

2024-09-18 04:14:45 +00:00
const crypto = require("crypto")
function generateRandomHash(length = 32) {
// Generate random bytes
const randomBytes = crypto.randomBytes(length)
// Convert bytes to hexadecimal representation
const hash = randomBytes.toString("hex")
return hash
}
module.exports = generateRandomHash