You are here: Home

Modified items

All recently modified items, latest first.
RPMPackage python-tdb-1.3.11-1.lbn19.x86_64
Python bindings for libtdb
RPMPackage python-tdb-1.3.11-1.lbn19.x86_64
Python bindings for libtdb
RPMPackage python-tdb-1.2.12-1.fc19.armv6hl
Python bindings for libtdb
RPMPackage python-smsprovider-2.8-1.lbn19.noarch
LinOTP is an open solution for strong two-factor authentication with One Time Passwords. LinOTP 2 is also open as far as its modular architecture is concerned. LinOTP 2 aims to not bind you to any decision of the authentication protocol or it does not dictate you where your user information should be stored. This is achieved by its new, totally modular architecture. This package contains the LinOTP SMSProvider.
RPMPackage python-shortuuid-0.4.2-1.lbn19.noarch
A library that generates short, pretty, unambiguous unique IDs by using an extensive, case-sensitive alphabet and omitting similar-looking letters and numbers.
RPMPackage python-rhsm-1.17.1-2.lbn19.x86_64
A small library for communicating with the REST interface of a Red Hat Unified Entitlement Platform. This interface is used for the management of system entitlements, certificates, and access to content.
RPMPackage python-rhsm-1.17.1-2.lbn19.x86_64
A small library for communicating with the REST interface of a Red Hat Unified Entitlement Platform. This interface is used for the management of system entitlements, certificates, and access to content.
RPMPackage python-rhsm-1.10.8-1.fc19.armv6hl
A small library for communicating with the REST interface of a Red Hat Unified Entitlement Platform. This interface is used for the management of system entitlements, certificates, and access to content.
RPMPackage python-pamprovider-2.8-1.lbn19.noarch
LinOTP is an open solution for strong two-factor authentication with One Time Passwords. LinOTP 2 is also open as far as its modular architecture is concerned. LinOTP 2 aims to not bind you to any decision of the authentication protocol or it does not dictate you where your user information should be stored. This is achieved by its new, totally modular architecture. This package contains a PAM module for LinOTP written in python.
RPMPackage python-openid-teams-1.1-3.lbn19.noarch
Teams extension implementation for python-openid
RPMPackage python-openid-cla-1.2-1.lbn19.noarch
CLA extension implementation for python-openid
RPMPackage python-openid-2.2.5-7.lbn19.noarch
The OpenID library with batteries included. Features of the 2.x.x series include: * Refined and easy-to-use API. * Extensive documentation. * Many storage implemetations including file-based, sqlite, postgresql, and mysql. * Simple examples to help you get started. * Licensed under the Apache Software License. * Includes a Simple Registration API * Versions 1.x.x supports protocol version 1; versions 2.x.x support both major OpenID protocol versions transparently
RPMPackage python-oauthlib-1.0.3-1.lbn19.noarch
OAuthLib is a generic utility which implements the logic of OAuth without assuming a specific HTTP request object or web framework. Use it to graft OAuth client support onto your favorite HTTP library, or provider support onto your favourite web framework. If you're a maintainer of such a library, write a thin veneer on top of OAuthLib and get OAuth support for very little effort.
RPMPackage python-oauth2-1.5.211-4.fc19.noarch
Oauth2 was originally forked from Leah Culver and Andy Smith's oauth.py code. Some of the tests come from a fork by Vic Fryzel, while a revamped Request class and more tests were merged in from Mark Paschal's fork. A number of notable differences exist between this code and its forefathers: - 100% unit test coverage. - The DataStore object has been completely ripped out. While creating unit tests for the library I found several substantial bugs with the implementation and confirmed with Andy Smith that it was never fully baked. - Classes are no longer prefixed with OAuth. - The Request class now extends from dict. - The library is likely no longer compatible with Python 2.3. - The Client class works and extends from httplib2. It's a thin wrapper that handles automatically signing any normal HTTP request you might wish to make.
RPMPackage python-oauth-1.0.1-6.fc19.noarch
Library for OAuth version 1.0a.
RPMPackage python-ldapetl-1.1.1-2.lbn19.noarch
Provides ldapload and ldaptransform scripts alongside a range of useful and extensible infrastructure for performing large-scale LDAP migrations, loads etc
RPMPackage python-djangosaml2-0.11.0-1.lbn19.noarch
djangosaml2 is a Django application that integrates the PySAML2 library into your project. This mean that you can protect your Django based project with a service provider based on PySAML. This way it will talk SAML2 with your Identity Provider allowing you to use this authentication mechanism.
RPMPackage python-django-oauth2-provider-0.2.6.1-1.lbn19.noarch
django-oauth2-provider is a Django application that provides customizable OAuth2-authentication for your Django projects.
RPMPackage python-django-mellon-1.2.5-1.lbn19.noarch
SAML 2.0 authentication for Django Usage You need to have the Python binding for the Lasso library installed, you can find source and package for Debian on http://lasso.entrouvert.org/download/. Add mellon to your installed apps: INSTALLED_APPS = ( ... 'mellon', ) Add the SAMLBacked to your authentication backends: AUTHENTICATION_BACKENDS = ( ... 'mellon.backends.SAMLBackend', ) Add mellon urls to your urls: urlpatterns = patterns('', ... url(r'^/accounts/mellon', include('mellon.urls')), ) If SAML 2.0 should be your only authentication method you can define mellon_login as you main LOGIN_URL: LOGIN_URL = 'mellon_login' LOGOUT_URL = 'mellon_logout' Yout metadata will be downloadable through HTTP on http://youapplication/base/accounts/mellon/metadata If your identity provider ask for your assertion consumer URL it's on http://youapplication/base/accounts/mellon/login If your identity provider ask for your logout URL it's on http://youapplication/base/accounts/mellon/logout Session After an authentication attributes are stored in the session using a dictionnary, the key is mellon_session. The dictionnary contains: issuer: the EntityID of the identity provider name_id_content: the value of the NameID name_id_format: the format of the NameID authn_instant: the ISO8601 date of the authentication on the identity provider, optional. session_not_on_or_after: the ISO8691 date after which the local session should be closed. Note that we automatically set the expiration of the Django session to this value if it's available. authn_context_class_ref: the authentication method of the current authentication on the identity provider. You can restrict authorized authentication methods using the setting MELLON_AUTHN_CLASSREF. all attributes extracted from the assertion. Settings All generic setting apart from MELLON_IDENTITY_PROVIDERS can be overridden in the identity provider settings by removing the MELLON_ prefix. MELLON_IDENTITY_PROVIDERS A list of dictionaries, only one key is mandatory in those dictionaries METADATA it should contain the UTF-8 content of the metadata file of the identity provider or if it starts with a slash the absolute path toward a metadata file. All other keys are override of generic settings. MELLON_PUBLIC_KEYS List of public keys of this service provider, add multiple keys for doing key roll-over MELLON_PRIVATE_KEY The PKCS#8 PEM encoded private key, if not provided request will not be signed. MELLON_PRIVATE_KEY_PASSWORD Password for the private key if needed, default is None MELLON_NAME_ID_FORMATS NameID formats to advertise in the metadata file, default is (). MELLON_NAME_ID_POLICY_FORMAT The NameID format to request, default is None. MELLON_FORCE_AUTHN Whether to force authentication on each authencation request, default is False. MELLON_ADAPTER A list of class providings methods handling SAML authorization, user lookup and provisioning. Optional methods on theses classes are authorize(idp, saml_attributes) -> boolean If any adapter returns False, the authentication is refused. It's possible to raise PermissionDenied to show a specific message on the login interface. lookup_user(idp, saml_attributes) -> User / None Each adapter is called in the order of the settings, the first return value which is not None is kept as the authenticated user. provision(user, idp, saml_attributes -> None This method is there to fill an existing user fields with data from the SAML attributes or to provision any kind of object in the application. Settings of the default adapter The following settings are used by the default adapter mellon.adapters.DefaulAdapter if you use your own adapter you can ignore them. If your adapter inherit from the default adapter those settings can still be applicable. MELLON_REALM The default realm to associate to user created with the default adapter, default is 'saml'. MELLON_PROVISION Whether to create user if their username does not already exists, default is True. MELLON_USERNAME_TEMPLATE The template to build and/or retrieve a user from its username based on received attributes, the syntax is the one from the str.format() method of Python. Available variables are: realm idp (current setting for the idp issuing the assertion) attributes The default value is {attributes{name_id_content]}@realm. Another example could be {atttributes[uid][0]} to set the passed username as the username of the newly created user. MELLON_ATTRIBUTE_MAPPING Maps templates based on SAML attributes to field of the user model. Default is {}. To copy standard LDAP attributes into your Django user model could for example do that: MELLON_ATTRIBUTE_MAPPING = { 'email': '{attributes[mail][0]', 'first_name': '{attributes[gn][0]}', 'last_name': '{attributes[sn][0]}', } MELLON_SUPERUSER_MAPPING Attributes superuser flags to user if a SAML attribute contains a given value, default is {}. Ex.: MELLON_SUPERUSER_MAPPING = { 'roles': 'Admin', } MELLON_AUTHN_CLASSREF Authorized authentication class references, default is (). Empty value means everything is authorized. Authentication class reference must be obtained from your identity provider but SHOULD come from the SAML 2.0 specification. MELLON_GROUP_ATTRIBUTE Name of the SAML attribute to map to Django group names, default is None. Ex.: MELLON_GROUP_ATTRIBUTE = 'role' MELLON_CREATE_GROUP Whether to create group or only assign existing groups, default is True. MELLON_ERROR_URL URL for the continue link when authentication fails, default is None. If not ERROR_URL is None, the RelayState is used. If there is no RelayState, the LOGIN_REDIRECT_URL, which defaults to /, is used. MELLON_ERROR_REDIRECT_AFTER_TIMEOUT Timeout in seconds before automatically redirecting the user to the continue URL when authentication has failed. Default is 120 seconds.
RPMPackage python-django-authopenid-1.0.2-3.lbn19.noarch
Django authentification application with openid using django auth contrib. This application allow a user to connect to you website with a legacy account (username/password) or an openid url.