GithubHelp home page GithubHelp logo

harsh's Introduction

hashids

Build Status

Harsh is a Rust implementation of the Hashids JavaScript library to generate YouTube-like ids from numbers. Use it when you don't want to expose your database ids to the user: http://hashids.org/javascript

Quick example

let harsh = HarshBuilder::new().init().unwrap();

let id = harsh.encode(&[1, 2, 3]).unwrap(); // "o2fXhV"
let numbers = harsh.decode(id).unwrap(); // [1, 2, 3]

Make your ids unique:

Pass a project name to make your ids unique:

let harsh = HarshBuilder::new().salt("My Project").init().unwrap();
let id = harsh.encode(&[1, 2, 3]).unwrap(); // "Z4UrtW"

let harsh = HarshBuilder::new().salt("My Other Project").init().unwrap();
let id = harsh.encode(&[1, 2, 3]).unwrap(); // "gPUasb"

Use padding to make your ids longer:

Note that ids are only padded to fit at least a certain length. It doesn't mean that your ids will be exactly that length.

let harsh = HarshBuilder::new().init().unwrap(); // no padding
let id = harsh.encode(&[1]).unwrap() // "jR"

let harsh = HarshBuilder::new().length(10).init().unwrap(); // pad to length 10
let id = harsh.encode(&[1]).unwrap() // "VolejRejNm"

Pass a custom alphabet:

let harsh = HarshBuilder::new().alphabet("abcdefghijklmnopqrstuvwxyz").init().unwrap(); // all lowercase
let id = harsh.encode(&[1, 2, 3]).unwrap(); // "mdfphx"

Encode hex instead of numbers:

Useful if you want to encode Mongo's ObjectIds. Note that there is no limit on how large of a hex number you can pass (it does not have to be Mongo's ObjectId).

let harsh = HarshBuilder::new().init().unwrap();

let id = harsh.encode_hex("507f1f77bcf86cd799439011").unwrap(); // "y42LW46J9luq3Xq9XMly"
let hex = harsh.decode_hex("y42LW46J9luq3Xq9XMly").unwrap(); // "507f1f77bcf86cd799439011" 

Pitfalls

  1. When decoding, output is always an array of numbers (even if you encode only one number):

    let harsh = HarshBuilder::new().init().unwrap();
    
    let id = harsh.encode(&[1]).unwrap();
    println!("{:?}", harsh.decode(&id).unwrap()); // [1]
  2. Encoding negative numbers is not supported.

  3. If you pass bogus input to encode(), an empty string will be returned:

    let harsh = HarshBuilder::new().init().unwrap();
    
    let id = harsh.decode("a123"); // note lack of unwrap call; would panic here
    println!("{:?}", id); // "None"
  4. Do not use this library as a security tool and do not encode sensitive data. This is not an encryption library.

Randomness

The primary purpose of Hashids is to obfuscate ids. It's not meant or tested to be used as a security or compression tool. Having said that, this algorithm does try to make these ids random and unpredictable:

No repeating patterns showing there are 3 identical numbers in the id:

let harsh = HarshBuilder::new().init().unwrap();
println!("{}", harsh.encode(&[5, 5, 5]).unwrap()); // A6t1tQ

Same with incremented numbers:

let harsh = HarshBuilder::new().init().unwrap();

println!("{}", harsh.encode(&[1, 2, 3, 4, 5, 6, 7, 8, 9, 10]).unwrap()); // wpfLh9iwsqt0uyCEFjHM

println!("{}", harsh.encode(&[1]).unwrap()); // jR
println!("{}", harsh.encode(&[2]).unwrap()); // k5
println!("{}", harsh.encode(&[3]).unwrap()); // l5
println!("{}", harsh.encode(&[4]).unwrap()); // mO
println!("{}", harsh.encode(&[5]).unwrap()); // nR

Curses! #$%@

This code was written with the intent of placing created ids in visible places, like the URL. Therefore, the algorithm tries to avoid generating most common English curse words by generating ids that never have the following letters next to each other:

c, f, h, i, s, t, u

Support

Have a question? Open an issue here, or find the author of the original JavaScript library:

@IvanAkimov or ivanakimov.com

Maybe one of these days I'll get around to fixing my website up. :)

Changelog

0.1.5

  • Fix panic when decoding values containing characters not found in alphabet

0.1.3

  • Remove dependency on clippy. (Still using clippy, but just as cargo clippy now.)

0.1.2

  • Changed HarshFactory to HarshBuilder in order to stop rubbing my OCD the wrong way1
  • Updated dependencies
  1. I apologize for the inconvenience this causes, but we all know this is better in the long run; if I stay sane, I can continue to keep this lib up to date!

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

harsh's People

Contributors

archer884 avatar knnut avatar

Watchers

James Cloos avatar Ewout ter Hoeven avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.