Metadata-Version: 1.0
Name: django-agent-trust
Version: 0.1.0
Summary: A framework for managing agent trust, such as public vs. private computers.
Home-page: https://bitbucket.org/psagers/django-agent-trust
Author: Peter Sagerson
Author-email: psagersDjwublJf@ignorare.net
License: BSD
Description: .. vim: ft=rst
        
        This project has tools for managing trusted user agents. For example, you might
        allow the user to indicate whether they are using a public or private computer
        and implement different policies for each. This uses Django 1.4's signed cookie
        facility and operates independently of sessions.
        
        Short list of features:
        
            - ``request.agent.is_trusted`` tells you whether the request came from a
              trusted agent.
            - APIs to trust or revoke the agent that made a given request.
            - Global, per-user, and per-agent settings can set the duration of agent
              trust as well as an inactivity timeout.
            - Supports session-scoped agent trust for consistency of authorization
              policies.
            - Revoke all of a user's previously trusted agents at any time.
        
        This is an early release and forward API compatibility is not guaranteed.
        Feedback is welcome.
        
        ..  The mechanisms by which a user is allowed to designate trusted agents is left
            entirely to clients of this library. For an application of this API using
            one-time passwords, see `django-otp-agents
            <http://pypi.python.org/pypi/django-otp-agents>`_, part of the `django-otp
            <http://pypi.python.org/pypi/django-otp>`_ suite.
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python :: 2
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Topic :: Security
Classifier: Topic :: Software Development :: Libraries :: Python Modules
