Metadata-Version: 2.1
Name: pyams-security
Version: 1.1.3
Summary: PyAMS security management package
Home-page: https://pyams.readthedocs.io
Author: Thierry Florac
Author-email: tflorac@ulthar.net
License: ZPL
Keywords: Pyramid PyAMS
Platform: UNKNOWN
Classifier: License :: OSI Approved :: Zope Public License
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python
Classifier: Framework :: Pyramid
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.5
Requires-Dist: setuptools
Requires-Dist: BTrees
Requires-Dist: ZODB
Requires-Dist: beaker
Requires-Dist: chameleon
Requires-Dist: hypatia
Requires-Dist: persistent
Requires-Dist: pyams-file
Requires-Dist: pyams-i18n
Requires-Dist: pyams-mail
Requires-Dist: pyams-site
Requires-Dist: pyams-utils
Requires-Dist: pyramid
Requires-Dist: pyramid-chameleon
Requires-Dist: pyramid-mailer
Requires-Dist: zodbupdate
Requires-Dist: zope.annotation
Requires-Dist: zope.component
Requires-Dist: zope.componentvocabulary
Requires-Dist: zope.container
Requires-Dist: zope.interface
Requires-Dist: zope.intid
Requires-Dist: zope.lifecycleevent
Requires-Dist: zope.location
Requires-Dist: zope.password
Requires-Dist: zope.principalannotation
Requires-Dist: zope.schema
Requires-Dist: zope.traversing
Provides-Extra: test
Requires-Dist: pyams-catalog ; extra == 'test'

======================
PyAMS_security package
======================

.. contents::


What is PyAMS?
==============

PyAMS (Pyramid Application Management Suite) is a small suite of packages written for applications
and content management with the Pyramid framework.

**PyAMS** is actually mainly used to manage web sites through content management applications (CMS,
see PyAMS_content package), but many features are generic and can be used inside any kind of web
application.

All PyAMS documentation is available on `ReadTheDocs <https://pyams.readthedocs.io>`_; source code
is available on `Gitlab <https://gitlab.com/pyams>`_ and pushed to `Github
<https://github.com/py-ams>`_.


What is PyAMS_security?
=======================

PyAMS_security is a core extension package for PyAMS which provides all main security-related
features; the package provides a custom authentication policy which is based on a custom "security
manager". This utility is a pluggable tool which is handling system users, local users and groups,
as well as OAuth authentication; external packages can also provide authentication based
on an LDAP directory.

PyAMS_security also provides utilities to extract credentials from queries, like HTTP basic
authentication or JWT tokens, and can also provide your own credentials extraction mechanisms.

Finally, PyAMS_security provides roles management, as well as custom schema fields to store
roles assigned to principals.


Changelog
=========

1.1.3
-----
 - small updates in policy management of *authenticated_user_id*

1.1.2
-----
 - updated doctests with configured cache

1.1.1
-----
 - removed dependency on *pyams_auth_http* package

1.1.0
-----
 - moved authentication plug-ins to dedicated packages (see pyams_auth_http, pyams_auth_jwt...)
 - moved PyAMS authentication policy to dedicated module
 - handle ConnectionStateError in authentication policy
 - updated doctests

1.0.5
-----
 - simple version switch to avoid mismatch in Buildout configuration file...  :(

1.0.4
-----
 - code cleanup

1.0.3
-----
 - handle ConnectionStateError in JWT authentication plug-in
 - updated doctests

1.0.2
-----
 - added support for HS512 and RS512 JWT encryption protocols

1.0.1
-----
 - updated imports in include file for tests integration

1.0.0
-----
 - initial release


