šŸš€ Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more →
Socket
Sign inDemoInstall
Socket

obfuscated_identifier

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

obfuscated_identifier

1.0.0
Rubygems
Version published
Maintainers
1
Created
Source

Obfuscated Identifier

Build Status

Hide your Rails primary key without the need for token generation and additional index space.

Obfuscate Identifier uses an obfuscation algorithm to generate a unique identifier for your existing primary key. As long as you have the key that was used to create the identifier then you can get back to the original primary key.

This removes the need for tricks like generating a random number and storing indexing it as the primary key is still used to retrieve the object.

There are a huge number of options when creating a system like this here are some of the considerations whilst creating this gem:

  • Identifiers must be unique
  • Identifiers must be reversible
  • Identifiers should be consistent, repeat generation should create the same output
  • Patterns within identifiers should not be 'obvious' (sequences should be avoided)
  • The algorithm should not be overly complex
  • The algorithm should 'relatively' computationally inexpensive

Notes:

Obfuscation is not encryption. It's important to note that this isn't really hiding anything, if someone really wants to work out your primary key they probably can. This favors simplicity over the quality of the identifier generated.

This was a very quick stab at an implementation. Pull requests and comments are hugely appreciated!

Installation

Add this line to your application's Gemfile:

gem 'obfusicated_identifier'

And then execute:

$ bundle

Or install it yourself as:

$ gem install obfusicated_identifier

Usage

TODO: Write usage instructions here

Contributing

  • Fork it
  • Create your feature branch (git checkout -b my-new-feature)
  • Commit your changes (git commit -am 'Add some feature')
  • Push to the branch (git push origin my-new-feature)
  • Create new Pull Request

FAQs

Package last updated on 13 Feb 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts