Sha256: e9429e3baf59bf59dfb823e98b0323ce3324232b8d3de06c1a15078afb378c79

Contents?: true

Size: 1.17 KB

Versions: 3

Compression:

Stored size: 1.17 KB

Contents

= devise_aes_encryptable

Adds AES encryption support for Devise

= Synopsis

== Installation
1. Add <tt>devise_aes_encryptable</tt> to your Gemfile
2. <tt>bundle install</tt>

== Configuration 
In <tt>config/initializers/devise.rb</tt>
  config.encryptor = :aes256

== Decryption
  ::AES.decrypt(encrypted_password, Devise.pepper)
or
  ::Devise::Encryptors::Aes256.decrypt(encrypted_password, Devise.pepper)
  
== Contributing to devise_aes_encryptable
 
* Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet
* Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it
* Fork the project
* Start a feature/bugfix branch
* Commit and push until you are happy with your contribution
* Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
* Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
* Be awesome

== Copyright

Copyright (c) 2010 Carl Hicks. See LICENSE.txt for
further details.

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
devise_aes_encryptable-0.2.3 README.rdoc
devise_aes_encryptable-0.2.2 README.rdoc
devise_aes_encryptable-0.2.1 README.rdoc