aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/key_generator.rb
Commit message (Collapse)AuthorAgeFilesLines
* Add docs for CachingKeyGeneratorSantiago Pastorino2012-11-151-0/+6
|
* Add nodoc to DummyKeyGenerator since it's a private thingSantiago Pastorino2012-11-151-1/+1
|
* Rename secret_token_key to secret_key_baseSantiago Pastorino2012-11-031-1/+1
|
* Move ensure_secret_secure to DummyKeyGeneratorSantiago Pastorino2012-11-031-0/+24
|
* Cache generated keys per KeyGenerator instance using salt + key_sizeSantiago Pastorino2012-11-031-0/+14
|
* Sign cookies using key deriverSantiago Pastorino2012-11-031-0/+10
|
* Add ActiveSupport::KeyGenerator as a simple wrapper around PBKDF2Michael Koziarski2012-10-011-0/+23
This will be used to derive keys from the secret and a salt, in order to allow us to do things like encrypted cookie stores without using the secret for multiple purposes directly.