Code Monkey home page Code Monkey logo

go-hashids's Introduction

go-hashids Build Status GoDoc

Go (golang) v1 implementation of http://www.hashids.org under MIT License (same as the original implementations)

Original implementations by Ivan Akimov

Setup

go get github.com/speps/go-hashids

Example

package main

import "fmt"
import "github.com/speps/go-hashids"

func main() {
    hd := hashids.NewData()
    hd.Salt = "this is my salt"
    hd.MinLength = 30
    h := hashids.NewWithData(hd)
    e, _ := h.Encode([]int{45, 434, 1313, 99})
    fmt.Println(e)
    d, _ := h.DecodeWithError(e)
    fmt.Println(d)
}

Test results

=== RUN   TestEncryptDecrypt
--- PASS: TestEncryptDecrypt (0.00s)
        hashids_test.go:22: [45 434 1313 99] -> woQ2vqjnG7nnhzEsDkiYadKa3O71br -> [45 434 1313 99]
=== RUN   TestEncryptDecryptInt64
--- PASS: TestEncryptDecryptInt64 (0.00s)
        hashids_test.go:49: [45 434 1313 99 9223372036854775807] -> ZvGlaahBptQNfPOuPjJ51zO3wVzP01 -> [45 434 1313 99 9223372036854775807]
=== RUN   TestEncryptWithKnownHash
--- PASS: TestEncryptWithKnownHash (0.00s)
        hashids_test.go:75: [45 434 1313 99] -> 7nnhzEsDkiYa
=== RUN   TestDecryptWithKnownHash
--- PASS: TestDecryptWithKnownHash (0.00s)
        hashids_test.go:92: 7nnhzEsDkiYa -> [45 434 1313 99]
=== RUN   TestDefaultLength
--- PASS: TestDefaultLength (0.00s)
        hashids_test.go:115: [45 434 1313 99] -> 7nnhzEsDkiYa -> [45 434 1313 99]
=== RUN   TestMinLength
--- PASS: TestMinLength (0.00s)
=== RUN   TestCustomAlphabet
--- PASS: TestCustomAlphabet (0.00s)
        hashids_test.go:150: [45 434 1313 99] -> MAkhkloFAxAoskax -> [45 434 1313 99]
=== RUN   TestDecryptWithError
--- PASS: TestDecryptWithError (0.00s)
PASS

Thanks to all the contributors

Let me know if I forgot anyone of course.

Changelog

2014/09/13

  • Updated to Hashids v1.0.0 (should be compatible with other implementations, let me know if not, was checked against the Javascript version)
  • Changed API
    • Encrypt/Decrypt are now Encode/Decode
    • HashID is now constructed from HashIDData containing alphabet, salt and minimum length

go-hashids's People

Contributors

baijum avatar cgt avatar haarts avatar md2perpe avatar peterhellberg avatar roosmaa avatar speps avatar zouxifeng avatar

Watchers

 avatar  avatar  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.