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