scrambled_eggs

Easy data scrambler

Installation

Add this line to your application's Gemfile:

gem 'scrambled_eggs'

And then execute:

$ bundle

Or install it yourself as:

$ gem install scrambled_eggs

Usage

Default key is /etc/hostname file.

Scramble (encrypt)

egg = ScrambledEggs.new
scrambled = egg.scramble( data )

Descramble (decrypt)

egg = ScrambledEggs.new
descrambled = egg.descramble( scrambled )

Advanced

egg = ScrambledEggs.new( algorithm: 'aes-128-cbc', key: 'Password' )
scrambled = egg.scramble( data )
descrambled = egg.descramble( scrambled )

Author:

Copyright:

  • Copyright (c) 2015 sanadan

License:

  • MIT

Contributing

  1. Fork it ( https://github.com/sanadan/scrambled_eggs/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request