Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

The SPID/CIE OIDC Federation SDK, written in Python

License

NotificationsYou must be signed in to change notification settings

italia/spid-cie-oidc-django

Repository files navigation

CI buildMaintainabilityTest CoveragePython versionpy-versionsGitHub issuesGet invitedJoin the #spid openid

SPID/CIE OIDC Federation is a suite of Django applications designed tomake it easy to build anOpenid Connect Federation,each of these can be installed separately within a django project. These are the following:

ApplicationDescription
spid_cie_oidc.accountsCustomizable application that extends the django User model.
spid_cie_oidc.entityOpenID Connect Federation django app that implements OIDC Federation 1.0 Entity Statements, metadata discovery, Trust Chain, Trust Marks and Metadata policy. Technical specifications:OIDC Federation Entity
spid_cie_oidc.authorityOpenID Connect Federation API and models forOIDC Federation Trust Chain/Intermediate,Technical specifications andtutorial.
spid_cie_oidc.onboardingOpenID Connect Federation onboarding demo service and tools
spid_cie_oidc.relying_partyOpenID Connect Relying Party and test suite for OIDC Providers
spid_cie_oidc.providerOpenID Connect Provider and test suite for OIDC Relying Parties

Summary


RP Auth demoAn onboarded Relying Party with a succesful authentication.

Setup

All the Django apps are available in the folderspid_cie_oidc/.The examples projects are available in the folderexamples/.

There is a substantial difference between an app and a project.The app is installed using a common python package manager, such aspoetry orpip,and can be used, inherited, and integrated into other projects.

A project is a service configuration that integrates one or more applications.In this repository we have three example projects:

  • federation_authority
  • relying_party
  • provider

Federation Authority loads all the applications for development needs, acting as both authority, SPID RP and SPID OP.This allows us to make a demo by starting a single service. See admin pagehttp://127.0.0.1:8000/admin/ and user login pagehttp://127.0.0.1:8000/oidc/rp/landing/.

Then we have also another Relying Party, as indipendent project, and another Provider configured with the CIE profile.Relying party and Provider are examples that only integratespid_cie_oidc.entity andspid_cie_oidc.provider or.relying_party as applications.

Read thesetup documentation to get started.

Docker

Docker image

docker pull ghcr.io/italia/spid-cie-oidc-django:latest

Docker compose

Install Docker using the packages distributed from the official website and the following tools.

sudo pip install docker-compose

Please do your customizations in eachsettingslocal.py files and/or in the example dumps json file.

Change hostnames from 127.0.0.1 to which one configured in the compose file, in the settingslocal.py files and in the dumps/example.json files.In our example we rename:

We can do that with the following steps:

  • Executebash docker-prepare.sh
  • Customize the example data and settings contained inexamples-docker/ if needed (not necessary for a quick demo)

Run the stack

sudo docker-compose up

Configure a proper DNS resolution for trust-anchor.org. In GNU/Linux we can configure it in/etc/hosts:

127.0.0.1   localhost  trust-anchor.org relying-party.org cie-provider.org wallet.trust-anchor.org

Point your web browser tohttp://relying-party.org:8001/oidc/rp/landing and do your first oidc authentication.

Usage

The demo proposes a small federation composed by the following entities:

  • Federation Authority, acts as trust anchor and onboarding system. It's available athttp://127.0.0.1:8000/. It has also an embedded Spid provider and a embedded Relying Party available at/oidc/rp/landing.
  • OpenID Relying Party, available athttp://127.0.0.1:8001/
  • CIE OpenID Provider, available athttp://127.0.0.1:8002/

In the docker example we have only the Federation Authority with an embedded SPID OP and a RP.

Examples Users and Passwords:

  • adminoidcadmin
  • useroidcuser

OpenAPI Schema 3

Each application has an exportable OAS3 available at/rest/schema.json with a browsable reDoc UI at/rest/api/docs.

RP Auth demoThe reDoc OAS3 browsable page.

Tools

The OnBoarding app comes with the following collection of tools:

  • JWK
    • Create a jwk
    • Convert a private JWK to PEM
    • Convert a public JWK to PEM
    • Convert a private PEM to JWK
    • Convert a public PEM to JWK
    • JWT decode and verification
  • Federation
    • Resolve entity statement
    • Apply policy
  • Validators
    • Validate OP metadata spid
    • Validate OP metadata cie
    • Validate RP metadata spid
    • Validate RP metadata cie
    • Validate Authn Request spid
    • Validate Authn Request cie
    • Validate Entity Configuration
    • Trust mark validation
  • Schemas
    • Authorization Endpoint
    • Introspection Endpoint
    • Metadata
    • Token Endpoint
    • Revocation Endpoint
    • Jwt client Assertion

OIDC ToolsOIDC tools facilitates the lives of developers and service operators, here a simple interface to decode and verify a JWT.

To explore a federation on the commandline, use theofcli tool. It can be used to export federation metadata to json files for further analysis.

Contribute

Your contribution is welcome, no question is useless and no answer is obvious, we need you.

Contribute as end user

Please open an issue if you've discoveerd a bug or if you want to ask some features.

Contribute as developer

Please open your Pull Requests on thedev branch.Please consider the following branches:

  • main: where we merge the code before tag a new stable release.
  • dev: where we push our code during development.
  • other-custom-name: where a new feature/contribution/bugfix will be handled, revisioned and then merged to dev branch.

Backup and share your demo data

# backup your data (upgrade example data), -e excludes../manage.py dumpdata -e admin -e spid_cie_oidc_relying_party -e spid_cie_oidc_provider -e spid_cie_oidc_relying_party_test -e auth -e contenttypes -e sessions --indent 2 > dumps/example.json

In this project we adoptSemver andConventional commits specifications.

Implementation notes

All the operation related to JWT signature and encryption are built on top ofIdentityPythoncryptojwt

This project proposes an implementation of the italian OIDC Federation profile withautomatic_client_registration and the adoption of the trust marks as mandatory.

If you're looking for a fully compliant implementation of OIDC Federation 1.0,with a full support of explicit client registration, please look at idpy'sfedservice.

General Features

  • SPID and CIE OpenID Connect Provider
  • SPID and CIE OpenID Connect Relying Party
  • OIDC Federation onboarding demo service
  • OIDC Federation 1.0
    • Trust Anchor and Intermediary
    • Automatic client registration
    • Entity profiles and Trust marks
    • Trust chain storage and discovery
    • Entity statement resolve endpoint
    • Fetch statement endpoing
    • List entities endpoint
    • Advanced List endpoint
    • Federation CLI
      • RP: build trust chains for all the available OPs
      • OP: build trust chains for all the available RPs
  • Multitenancy, a single service can configure many entities like RPs, OP, Trust Anchors and intermediaries
  • gettext compliant (i18n)
  • Bootstrap Italia Design templates

License and Authors

This software is released under the Apache 2 License by:

In this project we use themetadata policy codewritten by Roland Hedberg and licensed under the same Apache 2 license.

About

The SPID/CIE OIDC Federation SDK, written in Python

Topics

Resources

License

Security policy

Stars

Watchers

Forks

Packages

 
 
 

[8]ページ先頭

©2009-2025 Movatter.jp