Giter VIP home page Giter VIP logo

scramble's Introduction

Go implementation of Pseudo encrypt

An implementation that scrambles id and encodes them as a string, similar to (Instagram/YouTube id encodings). All functions are bijective functions (on the positive domain), ie. they will shuffle all integers from int32 (resp. int64) with zero collisions and can be undone.

Implements the postgresql pseudo encrypt.

Scramble32(x)

 x  | pseudo_encrypt
-----+----------------
 -10 |    -1270576520
  -9 |     -236348969
  -8 |    -1184061109
  -7 |      -25446276
  -6 |    -1507538963
  -5 |     -518858927
  -4 |    -1458116927
  -3 |     -532482573
  -2 |     -157973154
  -1 |    -1105881908
   0 |     1777613459
   1 |      561465857
   2 |      436885871
   3 |      576481439
   4 |      483424269
   5 |     1905133426
   6 |      971249312
   7 |     1926833684
   8 |      735327624
   9 |     1731020007
  10 |      792482838

For convenience, these numbers can be encoded as strings (Instagram/YouTube like id encodings).

encoding := scramble.AlphabethEncoder32{Alphabeth: scramble.AlphaNumeric}
slug:= encoding.Encode( scramble.Scramble32(4) ) // returns "NTySG"
originalID:= Unscramble32(encoding.Decode(slug)) // gives 4

See readme_test.go

Using the Interface

import(
  "github.com/go-scramble/scramble"
)

func example(){
  obscurer := NewObscurer64(CharsetEncoder64{Charset: AlphaNumeric})

  internalID := int64(4)
  urlSlug := obscurer.Obscure(internalID) // "67LllQ9fWvf"
  decodedID := obscurer.Unobscure("67LllQ9fWvf") // int64(4)

}

scramble's People

Contributors

patwie avatar

Stargazers

Bogdan U avatar  avatar Brandon Raabe avatar

Watchers

 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.