小编典典

在Javascript中从字符串生成哈希

all

我需要将字符串转换为某种形式的哈希。这在 JavaScript 中可能吗?

我没有使用服务器端语言,所以我不能那样做。


阅读 105

收藏
2022-03-02

共1个答案

小编典典

String.prototype.hashCode = function() {
  var hash = 0, i, chr;
  if (this.length === 0) return hash;
  for (i = 0; i < this.length; i++) {
    chr   = this.charCodeAt(i);
    hash  = ((hash << 5) - hash) + chr;
    hash |= 0; // Convert to 32bit integer
  }
  return hash;
};

来源: http ://werxltd.com/wp/2010/05/13/javascript-implementation-of-javas-
string-hashcode-method/

2022-03-02