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

14 lines
300 B
JavaScript
Raw Normal View History

2024-09-19 03:58:56 +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