Skip to content

lotusk/hashids-scala

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Hashids.scala aaa Stories in Ready

A small Scala library to generate YouTube-like hashes from one or many numbers.

Ported from Java hashids-java by John Ky

What is it?

hashids (Hash ID's) creates short, unique, decryptable hashes from unsigned (long) integers.

It was designed for websites to use in URL shortening, tracking stuff, or making pages private (or at least unguessable).

This algorithm tries to satisfy the following requirements:

  1. Hashes must be unique and decryptable.
  2. They should be able to contain more than one integer (so you can use them in complex or clustered systems).
  3. You should be able to specify minimum hash length.
  4. Hashes should not contain basic English curse words (since they are meant to appear in public places - like the URL).

Instead of showing items as 1, 2, or 3, you could show them as U6dc, u87U, and HMou. You don't have to store these hashes in the database, but can encrypt + decrypt on the fly.

All (long) integers need to be greater than or equal to zero.

Getting hashids-scala

hashids-scala is currently under development.

If you're using SBT, add the following lines to your build file:

resolvers ++= Seq("snapshots", "releases").map(Resolver.sonatypeRepo)

libraryDependencies += "com.timesprint" %% "hashids-scala" % "1.0.0"

Usage

Import the package

import org.hashids._

Encrypting one number

You can pass a unique salt value so your hashes differ from everyone else's. "this is my salt" is used as an example.

val hashids = Hashids("this is my salt")
val hash = hashids.encode(12345L)

hash is now going to be:

"NkK9"

Decrypting

Notice during decryption, same salt value is used:

val hashids = Hashids("this is my salt")
val numbers = hashids.decode("NkK9")

numbers is now going to be:

List(12345L): Seq[Long]

Decrypting with different salt

Decryption will not work if salt is changed:

val hashids = Hashids("this is my pepper")
val numbers = hashids.decode("NkK9")

numbers is now going to be:

List(): Seq[Long]

Encrypting several numbers

val hashids = Hashids("this is my salt")
val hash = hashids.encode(683L, 94108L, 123L, 5L)

hash is now going to be:

"aBMswoO2UB3Sj"

Decrypting is done the same way

val hashids = Hashids("this is my salt")
val numbers = hashids.decode("aBMswoO2UB3Sj")

numbers is now going to be:

List(683L, 94108L, 123L, 5L): Seq[Long]

Encrypting and specifying minimum hash length

Here we encrypt integer 1, and set the minimum hash length to 8 (by default it's 0 -- meaning hashes will be the shortest possible length).

val hashids = Hashids("this is my salt", 8)
val hash = hashids.encode(1L)

hash is now going to be:

"gB0NV05e"

Decrypting

val hashids = Hashids("this is my salt", 8)
val numbers = hashids.decode("gB0NV05e")

numbers is now going to be:

List(1L): Seq[Long]

Specifying custom hash alphabet

Here we set the alphabet to consist of only four letters: "0123456789abcdef"

val hashids = Hashids("this is my salt", 0, "0123456789abcdef")
val hash = hashids.encode(1234567L)

hash is now going to be:

"b332db5"

Randomness

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:

Repeating numbers

val hashids = Hashids("this is my salt")
val hash = hashids.encode(5L, 5L, 5L, 5L)

You don't see any repeating patterns that might show there's 4 identical numbers in the hash:

"1Wc8cwcE"

Same with incremented numbers:

val hashids = Hashids("this is my salt")
val hash = hashids.encode(1L, 2L, 3L, 4L, 5L, 6L, 7L, 8L, 9L, 10L)

hash will be :

"kRHnurhptKcjIDTWC3sx"

Incrementing number hashes:

val hashids = Hashids("this is my salt")
val hash1 = hashids.encode(1L) /* NV */
val hash2 = hashids.encode(2L) /* 6m */
val hash3 = hashids.encode(3L) /* yD */
val hash4 = hashids.encode(4L) /* 2l */
val hash5 = hashids.encode(5L) /* rD */

Implicit Scala Syntax

hashids-scala also supports Scala idiomatic syntax for obtaining the hashids codec object from implicit scope. Import org.hashids.syntax._ to enable this support.

In the following examples, the Long and Seq[Long] is pimped to support the encodeHashid method while String is pimped to support the decodeHashid method.

import org.hashids._
import org.hashids.syntax._

implicit val hashids = Hashids("this is my salt")
val hash1 = 12345L.encodeHashid
val hash2 = List(1L, 2L, 3L).encodeHashid
val unhashed = "NkK9".decodeHashid

In future the library will be updated to implement this syntax using type traits.

Bad hashes

This library was written with the intent of placing these hashes in visible places - like the URL. If a unique hash is created for each user, it would be unfortunate if the hash ended up accidentally being a bad word. Imagine auto-creating a URL with hash for your user that looks like this - http://example.com/user/a**hole

Therefore, this algorithm tries to avoid generating most common English curse words with the default alphabet. 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

Scaladoc

Scala API docs

Contact

Follow me @newhoggy or @IvanAkimov

License

MIT License. See the LICENSE file.

About

Implement Hashids latest v1.0.0

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Scala 98.5%
  • Shell 1.5%