Skip to content

Instantly share code, notes, and snippets.

@bit-app-3000
Forked from jlevy/simple-hash.js
Created December 11, 2024 13:16
Show Gist options
  • Save bit-app-3000/d0fbe67b05f8c7e8e588d2349ab4de27 to your computer and use it in GitHub Desktop.
Save bit-app-3000/d0fbe67b05f8c7e8e588d2349ab4de27 to your computer and use it in GitHub Desktop.

Revisions

  1. @jlevy jlevy revised this gist Feb 15, 2024. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion simple-hash.js
    Original file line number Diff line number Diff line change
    @@ -40,7 +40,7 @@ const cyrb64 = (str, seed = 0) => {
    return [h2>>>0, h1>>>0];
    };

    // An improved, *insecure* 32-bit hash that's short, fast, and has no dependencies.
    // An improved, *insecure* 64-bit hash that's short, fast, and has no dependencies.
    // Output is always 14 characters.
    const cyrb64Hash = (str, seed = 0) => {
    const [h2, h1] = cyrb64(str, seed);
  2. @jlevy jlevy revised this gist Feb 15, 2024. 1 changed file with 37 additions and 5 deletions.
    42 changes: 37 additions & 5 deletions simple-hash.js
    Original file line number Diff line number Diff line change
    @@ -1,8 +1,9 @@
    // This is a simple, *insecure* 32-bit hash that's short, fast, and has no dependencies.
    // For algorithmic use cases, such as bucketing in hashtables, where security isn't needed
    // and 32 bits is enough (that is, rare collisions are acceptable).
    // It's way simpler than sha1 (and all its deps) or similar, and with a short, clean
    // (base 36 alphanumeric) result. Output is always 7 characters.
    // These hashes are for algorithmic use cases, such as bucketing in hashtables, where security isn't
    // needed and 32 or 64 bits is enough (that is, rare collisions are acceptable). These are way simpler
    // than sha1 (and all its deps) or similar, and with a short, clean (base 36 alphanumeric) result.

    // A simple, *insecure* 32-bit hash that's short, fast, and has no dependencies.
    // Output is always 7 characters.
    // Loosely based on the Java version; see
    // https://stackoverflow.com/questions/6122571/simple-non-secure-hash-function-for-javascript
    const simpleHash = str => {
    @@ -14,3 +15,34 @@ const simpleHash = str => {
    // Convert to 32bit unsigned integer in base 36 and pad with "0" to ensure length is 7.
    return (hash >>> 0).toString(36).padStart(7, '0');
    };

    // An improved alternative:

    // cyrb53 (c) 2018 bryc (github.com/bryc). License: Public domain. Attribution appreciated.
    // A fast and simple 64-bit (or 53-bit) string hash function with decent collision resistance.
    // Largely inspired by MurmurHash2/3, but with a focus on speed/simplicity.
    // See https://stackoverflow.com/questions/7616461/generate-a-hash-from-string-in-javascript/52171480#52171480
    // https://github.com/bryc/code/blob/master/jshash/experimental/cyrb53.js
    const cyrb64 = (str, seed = 0) => {
    let h1 = 0xdeadbeef ^ seed, h2 = 0x41c6ce57 ^ seed;
    for(let i = 0, ch; i < str.length; i++) {
    ch = str.charCodeAt(i);
    h1 = Math.imul(h1 ^ ch, 2654435761);
    h2 = Math.imul(h2 ^ ch, 1597334677);
    }
    h1 = Math.imul(h1 ^ (h1 >>> 16), 2246822507);
    h1 ^= Math.imul(h2 ^ (h2 >>> 13), 3266489909);
    h2 = Math.imul(h2 ^ (h2 >>> 16), 2246822507);
    h2 ^= Math.imul(h1 ^ (h1 >>> 13), 3266489909);
    // For a single 53-bit numeric return value we could return
    // 4294967296 * (2097151 & h2) + (h1 >>> 0);
    // but we instead return the full 64-bit value:
    return [h2>>>0, h1>>>0];
    };

    // An improved, *insecure* 32-bit hash that's short, fast, and has no dependencies.
    // Output is always 14 characters.
    const cyrb64Hash = (str, seed = 0) => {
    const [h2, h1] = cyrb64(str, seed);
    return h2.toString(36).padStart(7, '0') + h1.toString(36).padStart(7, '0');
    }
  3. @jlevy jlevy revised this gist Feb 15, 2024. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion simple-hash.js
    Original file line number Diff line number Diff line change
    @@ -8,7 +8,7 @@
    const simpleHash = str => {
    let hash = 0;
    for (let i = 0; i < str.length; i++) {
    const char = str.codePointAt(i);
    const char = str.charCodeAt(i);
    hash = (hash << 5) - hash + char;
    }
    // Convert to 32bit unsigned integer in base 36 and pad with "0" to ensure length is 7.
  4. @jlevy jlevy revised this gist Feb 15, 2024. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion simple-hash.js
    Original file line number Diff line number Diff line change
    @@ -8,7 +8,7 @@
    const simpleHash = str => {
    let hash = 0;
    for (let i = 0; i < str.length; i++) {
    const char = str.charCodeAt(i);
    const char = str.codePointAt(i);
    hash = (hash << 5) - hash + char;
    }
    // Convert to 32bit unsigned integer in base 36 and pad with "0" to ensure length is 7.
  5. @jlevy jlevy revised this gist Feb 15, 2024. 1 changed file with 4 additions and 3 deletions.
    7 changes: 4 additions & 3 deletions simple-hash.js
    Original file line number Diff line number Diff line change
    @@ -2,14 +2,15 @@
    // For algorithmic use cases, such as bucketing in hashtables, where security isn't needed
    // and 32 bits is enough (that is, rare collisions are acceptable).
    // It's way simpler than sha1 (and all its deps) or similar, and with a short, clean
    // (base 36 alphanumeric) result. Loosely based on the Java version; see
    // (base 36 alphanumeric) result. Output is always 7 characters.
    // Loosely based on the Java version; see
    // https://stackoverflow.com/questions/6122571/simple-non-secure-hash-function-for-javascript
    const simpleHash = str => {
    let hash = 0;
    for (let i = 0; i < str.length; i++) {
    const char = str.charCodeAt(i);
    hash = (hash << 5) - hash + char;
    hash &= hash; // Convert to 32bit integer
    }
    return new Uint32Array([hash])[0].toString(36);
    // Convert to 32bit unsigned integer in base 36 and pad with "0" to ensure length is 7.
    return (hash >>> 0).toString(36).padStart(7, '0');
    };
  6. @jlevy jlevy revised this gist Feb 15, 2024. 1 changed file with 5 additions and 4 deletions.
    9 changes: 5 additions & 4 deletions simple-hash.js
    Original file line number Diff line number Diff line change
    @@ -1,7 +1,8 @@
    // This is a simple, *insecure* hash that's short, fast, and has no dependencies.
    // For algorithmic use, where security isn't needed, it's way simpler than sha1 (and all its deps)
    // or similar, and with a short, clean (base 36 alphanumeric) result.
    // Loosely based on the Java version; see
    // This is a simple, *insecure* 32-bit hash that's short, fast, and has no dependencies.
    // For algorithmic use cases, such as bucketing in hashtables, where security isn't needed
    // and 32 bits is enough (that is, rare collisions are acceptable).
    // It's way simpler than sha1 (and all its deps) or similar, and with a short, clean
    // (base 36 alphanumeric) result. Loosely based on the Java version; see
    // https://stackoverflow.com/questions/6122571/simple-non-secure-hash-function-for-javascript
    const simpleHash = str => {
    let hash = 0;
  7. @jlevy jlevy created this gist Oct 23, 2019.
    14 changes: 14 additions & 0 deletions simple-hash.js
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,14 @@
    // This is a simple, *insecure* hash that's short, fast, and has no dependencies.
    // For algorithmic use, where security isn't needed, it's way simpler than sha1 (and all its deps)
    // or similar, and with a short, clean (base 36 alphanumeric) result.
    // Loosely based on the Java version; see
    // https://stackoverflow.com/questions/6122571/simple-non-secure-hash-function-for-javascript
    const simpleHash = str => {
    let hash = 0;
    for (let i = 0; i < str.length; i++) {
    const char = str.charCodeAt(i);
    hash = (hash << 5) - hash + char;
    hash &= hash; // Convert to 32bit integer
    }
    return new Uint32Array([hash])[0].toString(36);
    };