0.0
No commit activity in last 3 years
No release in over 3 years
Easy data scrambler. Default by hostname.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

 Project Readme

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

Scramble (encrypt)

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

Descramble (decrypt)

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

Default key is /etc/hostname file.

Advanced

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

Copyright

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