New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

integer-obfuscator

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

integer-obfuscator

0.1.0
Rubygems
Version published
Maintainers
1
Created
Source

Integer Obfuscator

This is a tool for obfuscating 32-bits integers. More specifically, IntegerObfuscator will one-to-one transform a 32-bit integer to another 32-bit integer using a 32-bit block cipher based on SKIPJACK.

This is useful when you want to transform sequentially generated IDs (e.g. database IDs) into integers that don't have an obvious ordering.

Installation

gem install integer-obfuscator

Example

require 'rubygems'
require 'integer_obfuscator'

c = IntegerObfuscator.new("my secret key")
c.obfuscate(1)            # => 418026769
c.obfuscate(2)            # => 1524067781
c.obfuscate(3)            # => 1476269236
c.unobfuscate(418026769)  # => 1
c.unobfuscate(1524067781) # => 2
c.unobfuscate(1476269236) # => 3

Warnings

This code...

  • is not intended to be cryptographically secure.
  • is slow (i.e., pure Ruby implementation).
  • only handles integers up to 32-bits in size.

References

This is based directly on the Perl Crypt::Skip32 module and the Greg Rose's original C implementation.

  • http://search.cpan.org/~esh/Crypt-Skip32-0.15/lib/Crypt/Skip32.pm
  • http://www.qualcomm.com.au/PublicationsDocs/skip32.c

Copyright (c) 2010-2011 Pat Deegan, PhD & Associates, LLC. Released under the MIT license. See the license file for details.

FAQs

Package last updated on 22 Mar 2011

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