0

如何在移动服务 API 方法中为字符串生成 SHA-1(或其他哈希)?

我在 .NET 中找不到任何加密 API。

4

1 回答 1

0

你看过cypto.createHash()函数和相关的hash.update()hash.digest()函数吗?

用法:

  var crypto = require('crypto')
      , sha1sum = crypto.createHash('sha1');

  sha1sum.update("foo");
  console.log(sha1sum.digest('hex'));
  // "0beer45dfsab5ea389fd0sdfuj309bcis9"
于 2013-11-07T00:18:40.217 回答