从 Node 中的字符串生成安全数字哈希

发布于 2025-01-11 07:45:53 字数 249 浏览 0 评论 0原文

我想从 Node.js 中的字符串生成固定长度的安全数字代码。界面看起来像这样:

hashStringToNumericCode("arandomhash", 6) => "041558"

这个想法是使用生成的代码作为一种密码。所以它不需要是唯一的,但应该是随机分布的。假设输入字符串是 SHA-1 哈希函数的输出。换句话说,假设输入字符串是随机分布的。

如何实施?

I would like to generate a secure digit code of fixed length from a string in Node. The interface would look something like:

hashStringToNumericCode("arandomhash", 6) => "041558"

The idea would be to use the generated code as a type of password. So it doesn't need to be unique, but it should be randomly distributed. Assume that the input string is the output of a SHA-1 hash function. In other words, assume that the input string is randomly distributed.

How could that be implemented?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

空心↖ 2025-01-18 07:45:53
function hashStringToNumericCode (word, length) {
  let num = 1
  for (let i = 0; i < word.length; i++) {
    const bufferValue = Buffer.from(word[i])
    const intValue = parseInt(bufferValue.toString('hex'), 16)
    num *= intValue
  }
  let modulusNumber = ''
  for (let i = 0; i < length; i++) {
    modulusNumber += '9'
  }
  modulusNumber = parseInt(modulusNumber)
  num %= modulusNumber
  console.log(num)
}
function hashStringToNumericCode (word, length) {
  let num = 1
  for (let i = 0; i < word.length; i++) {
    const bufferValue = Buffer.from(word[i])
    const intValue = parseInt(bufferValue.toString('hex'), 16)
    num *= intValue
  }
  let modulusNumber = ''
  for (let i = 0; i < length; i++) {
    modulusNumber += '9'
  }
  modulusNumber = parseInt(modulusNumber)
  num %= modulusNumber
  console.log(num)
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文