Plugins - CookieStore
Add to favoritesThis is a session store for Rails that store the session data in the session cookie itself instead of storing an ID in a cookie and relying on external storage to store the data.
It has two variants:
* CookieStore::Checksummed
* CookieStore::Encrypted
CookieStore::Checksummed is an extremly fast but somewhat insecure session store that use a checksum to prevent hackers from manipulating the data but the session data itself is fully readable.
CookieStore::Encrypted use OpenSSL to encrypt the cookie to prevent both reading and manipulating the session data.
http://trac.tuxie.se/trac/tuxie/wiki/CookieStore
svn://svn.tuxie.se/cookie_store/trunk
Rails' (MIT)
Misc. Enhancements
