1. ホーム
  2. javascript

[解決済み] Javascriptで文字列からHashを生成する

2022-03-19 08:55:36

質問

文字列を何らかの形でハッシュに変換する必要があります。 これはJavaScriptで可能ですか?

サーバーサイドの言語を活用していないので、そのような方法はとれません。

どのように解決するのですか?

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/