======
A small Node.js class to generate YouTube-like ids from one or many numbers. Use hashids when you do not want to expose your database ids to the user. Read full documentation at: http://hashids.org/node-js
-
Node it up: http://nodejs.org/download/
-
Install using npm:
npm install hashids
Read the CHANGELOG
at the bottom of this readme!
If you're looking for a client-side Bower version, there's a separate repo: https://github.com/ivanakimov/hashids.js/
BE CAREFUL WHICH VERSION OF HASHIDS YOU ARE USING.
Since future improvements to Hashids might alter produced hashes, it's a good idea to specify exact Hashids version in your package.json, if their consistency is important to you (if you are storing them in database):
"dependencies": {
"hashids": "1.0.1"
}
You can pass a unique salt value so your ids differ from everyone else's. I use "this is my salt" as an example.
var Hashids = require("hashids"),
hashids = new Hashids("this is my salt");
var id = hashids.encode(12345);
id
is now going to be:
NkK9
Notice during decoding, same salt value is used:
var Hashids = require("hashids"),
hashids = new Hashids("this is my salt");
var numbers = hashids.decode("NkK9");
numbers
is now going to be:
[ 12345 ]
Decoding will not work if salt is changed:
var Hashids = require("hashids"),
hashids = new Hashids("this is my pepper");
var numbers = hashids.decode("NkK9");
numbers
is now going to be:
[]
var Hashids = require("hashids"),
hashids = new Hashids("this is my salt");
var id = hashids.encode(683, 94108, 123, 5);
id
is now going to be:
aBMswoO2UB3Sj
You can also pass an array:
var arr = [683, 94108, 123, 5];
var id = hashids.encode(arr);
var Hashids = require("hashids"),
hashids = new Hashids("this is my salt");
var numbers = hashids.decode("aBMswoO2UB3Sj");
numbers
is now going to be:
[ 683, 94108, 123, 5 ]
Here we encode integer 1, and set the minimum id length to 8 (by default it's 0 -- meaning ids will be the shortest possible length).
var Hashids = require("hashids"),
hashids = new Hashids("this is my salt", 8);
var id = hashids.encode(1);
id
is now going to be:
gB0NV05e
var Hashids = require("hashids"),
hashids = new Hashids("this is my salt", 8);
var numbers = hashids.decode("gB0NV05e");
numbers
is now going to be:
[ 1 ]
Here we set the alphabet to consist of valid hex characters: "0123456789abcdef"
var Hashids = require("hashids"),
hashids = new Hashids("this is my salt", 0, "0123456789abcdef");
var id = hashids.encode(1234567);
id
is now going to be:
b332db5
MongoDB uses hex strings for their ObjectIds. You can convert them to Hashids like this:
var Hashids = require("hashids"),
hashids = new Hashids("this is my salt");
var id = hashids.encodeHex("507f191e810c19729de860ea");
var objectId = hashids.decodeHex(id);
id
will be:
yNyaoWeKWVINWqvaM9bw
objectId
will be as expected:
507f191e810c19729de860ea
The length of the hex string does not matter -- it does not have to be a MongoDB ObjectId.
The primary purpose of hashids is to obfuscate ids. It's not meant or tested to be used for security purposes or compression. Having said that, this algorithm does try to make these hashes unguessable and unpredictable:
var Hashids = require("hashids"),
hashids = new Hashids("this is my salt");
var id = hashids.encode(5, 5, 5, 5);
You don't see any repeating patterns that might show there's 4 identical numbers in the id:
1Wc8cwcE
Same with incremented numbers:
var Hashids = require("hashids"),
hashids = new Hashids("this is my salt");
var id = hashids.encode(1, 2, 3, 4, 5, 6, 7, 8, 9, 10);
id
will be :
kRHnurhptKcjIDTWC3sx
var Hashids = require("hashids"),
hashids = new Hashids("this is my salt");
var id1 = hashids.encode(1), /* NV */
id2 = hashids.encode(2), /* 6m */
id3 = hashids.encode(3), /* yD */
id4 = hashids.encode(4), /* 2l */
id5 = hashids.encode(5); /* rD */
This code was written with the intent of placing created hashes in visible places - like the URL. Which makes it unfortunate if generated hashes accidentally formed a bad word.
Therefore, the algorithm tries to avoid generating most common English curse words. This is done by never placing the following letters next to each other:
c, C, s, S, f, F, h, H, u, U, i, I, t, T
Hashids uses jasmine spec tests, particularly jasmine-node.
To install sudo npm install -g jasmine-node
then just run jasmine-node .
in the root folder.
1.0.1
- Auto-initialize a new instance of Hashids in case it wasn't initialized with "new" (thanks to @rfink)
1.0.0
-
Several public functions are renamed to be more appropriate:
- Function
encrypt()
changed toencode()
- Function
decrypt()
changed todecode()
- Function
encryptHex()
changed toencodeHex()
- Function
decryptHex()
changed todecodeHex()
Hashids was designed to encode integers, primary ids at most. We've had several requests to encrypt sensitive data with Hashids and this is the wrong algorithm for that. So to encourage more appropriate use,
encrypt/decrypt
is being "downgraded" toencode/decode
. - Function
-
Version tag added:
1.0
-
README.md
updated
0.3.3
.toString()
added inencryptHex()
: https://github.com/ivanakimov/hashids.node.js/pull/9 (thanks to @namuol)
0.3.2
- minor: contact email changed
- minor: internal version is accurate now
0.3.1
- minor: closure + readme update merged (thanks to @krunkosaurus)
- minor: a few cleanups
0.3.0
PRODUCED HASHES IN THIS VERSION ARE DIFFERENT THAN IN 0.1.4, DO NOT UPDATE IF YOU NEED THEM TO KEEP WORKING:
- Same algorithm as PHP version now
- Overall approximately 4x faster
- Consistent shuffle function uses slightly modified version of Fisher–Yates algorithm
- Generate large hash strings faster (where minHashLength is more than 1000 chars)
- When using minHashLength, hash character disorder has been improved
- Basic English curse words will now be avoided even with custom alphabet
- New unit tests with Jasmine
- Support for MongoDB ObjectId
- encrypt function now also accepts array of integers as input
- Passing JSLint now
0.1.4
- Global var leak for hashSplit (thanks to @BryanDonovan)
- Class capitalization (thanks to @BryanDonovan)
0.1.3
Warning: If you are using 0.1.2 or below, updating to this version will change your hashes.
- Updated default alphabet (thanks to @speps)
- Constructor removes duplicate characters for default alphabet as well (thanks to @speps)
0.1.2
Warning: If you are using 0.1.1 or below, updating to this version will change your hashes.
- Minimum hash length can now be specified
- Added more randomness to hashes
- Added unit tests
- Added example files
- Changed warnings that can be thrown
- Renamed
encode/decode
toencrypt/decrypt
- Consistent shuffle does not depend on md5 anymore
- Speed improvements
0.1.1
- Speed improvements
- Bug fixes
0.1.0
- First commit
Follow me @IvanAkimov
MIT License. See the LICENSE
file. You can use Hashids in open source projects and commercial products. Don't break the Internet. Kthxbye.