Metadata-Version: 1.0
Name: django-encrypt
Version: 0.1
Summary: A quick way to encrypt python objects and store
Home-page: UNKNOWN
Author: Joshua Williams
Author-email: jowillia@gmail.com
License: BSD
Description: Interface for storing arbitray python objects.  Uses a user's
        password as the cypher to store an object in TextField.
        Object must be able to be pickeled. Authentication is done by
        using django authenitication module.
        
        Models.py
        Methods Prototypes
        def set(self, user, password, obj):
        '''
        Setting an encrypted string. Password must be the
        user's password.  Can encrypt a object that can be
        pickeled.
        '''
        
        return 0 # Everything ok
        
        def get(self, user, password):
        '''
        Retreving an encrypted string.  Password must be the
        user's password.  Returns a python object.
        '''
        return object
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP
