Posts in 2020
-
python-cas Flask Example
February 03, 2020 in CAS
An example project to demo how to integrate python-cas into a Flask app.
python-cas is Python CAS (Central Authentication Server) client library support CAS 1.0/2.0/3.0. It was initially split from django-cas-ng to support any Python app to easily implement a CAS client. This post is an example project to demo how to …
-
django-cas-ng Example
January 26, 2020 in CAS
An example project to demo how easy to integrate with django-cas-ng
django-cas-ng is Django CAS (Central Authentication Service) 1.0/2.0/3.0 client library to support SSO (Single Sign On) and SLO (Single Logout)! To demo how easy to integrate with django-cas-ng, here is an example project to show how to use …
-
A Comparison of Django CAS clients
January 20, 2020 in CAS
A Compare of Django CAS clients: django-cas-ng, django-cas-client and django-cas
Here is a comparison of some exist Django CAS clients: django-cas-ng, django-cas-client and django-cas. If you want to add new repo to the following table, please create an issue. Note: Data is fetched in real time and alway up to date. …
Posts in 2018
-
Integrate with Django admin site
August 25, 2018 in CAS
Integrate django-cas-ng with Django admin site authentication
Problem I'm using django-cas-ng framework to authenticate users. The main problem is that the admin page still uses the default login view. Methods used this far: 1.- Using env var From docs: CAS_ADMIN_PREFIX: The URL prefix of the Django …
-
CAS Single Logout (SLO)
February 23, 2018 in CAS
How CAS single logout (SLO) works?
NOTE: Single Logout (SLO) need CAS Server support. With Single Logout (SLO), user gets logged out not only from the CAS Server, but also from all visited CAS client applications. django-cas-ng proudly support SLO since 3.5.0. The implementation is …
-
CAS History
February 03, 2018 in CAS
CAS (Central Authentication Server) Protocol History
CAS is a simple central authentication server protocol. It was initially conceived and developed by Shawn Bayern of Yale University Technology and Planning. It was later maintained by Drew Mazurek at Yale. CAS 1.0 implemented single-sign-on. CAS 2.0 …
-
CAS 101
January 02, 2018 in CAS
A short introduction CAS (Central Authentication Service) key conception and flow to newbie.
CAS Introduction The Central Authentication Service (CAS) is a single-sign-on / single-sign-off protocol for the web. It permits a user to access multiple applications while providing their credentials (such as userid and password) only once to a …