Metadata-Version: 1.1
Name: flask-secretbox-session
Version: 0.1.0
Summary: Flask client side session serializer, using Sodium SecretBox authenticated encryption
Home-page: https://github.com/rsdy/flask-secretbox-session
Author: Peter Parkanyi
Author-email: me@rhapsodhy.hu
License: BSD
Description: Flask-SecretBox-Session
        =======================
        
        This is a Flask session serializer that encrypts the session using crypto_secretbox.
        Flask-SecretBox-Session is a drop-in replacement for the default Flask session serializer.
        
        Usage
        -----
        
            from secretbox_session import SecretboxCookieSessionInterface
            app.session_interface = SecretboxCookieSessionInterface()
        
        To override the key used for storing the timestamp for avoiding clashes with
        your own session objects, you can use the `timestamp_key` named argument, like
        so:
        
            app.session_interface = SecretboxCookieSessionInterface(timestamp_key='__timestamp')
        
        The default value of `timestamp_key` is `'__session_timestamp__'`.
        
        License
        -------
        Distributed under the [2-clause BSD](http://opensource.org/licenses/BSD-2-Clause).
        
Keywords: Flask session API NaCl libsodium
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: BSD License
Classifier: Topic :: Security :: Cryptography
Classifier: Topic :: Security
