├── .dir-locals.el ├── .github └── workflows │ └── ccpp.yml ├── .gitignore ├── COPYING ├── ECP.rst ├── Makefile.in ├── NEWS ├── README.md ├── auth_mellon.h ├── auth_mellon_cache.c ├── auth_mellon_compat.h ├── auth_mellon_config.c ├── auth_mellon_cookie.c ├── auth_mellon_diagnostics.c ├── auth_mellon_handler.c ├── auth_mellon_httpclient.c ├── auth_mellon_session.c ├── auth_mellon_util.c ├── autogen.sh ├── configure.ac ├── doc ├── mellon-attribute-map.xsl ├── mellon_create_metadata.8 └── user_guide │ ├── Guardfile │ ├── README │ ├── images │ ├── chrome_SAML_Chrome_Panel.png │ ├── chrome_SAML_Chrome_Panel.svg │ ├── saml-tracer.png │ ├── saml-tracer.svg │ └── saml-web-sso.svg │ └── mellon_user_guide.adoc ├── lasso_compat.h ├── mellon_create_metadata.sh └── mod_auth_mellon.c /.dir-locals.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latchset/mod_auth_mellon/HEAD/.dir-locals.el -------------------------------------------------------------------------------- /.github/workflows/ccpp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latchset/mod_auth_mellon/HEAD/.github/workflows/ccpp.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latchset/mod_auth_mellon/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latchset/mod_auth_mellon/HEAD/COPYING -------------------------------------------------------------------------------- /ECP.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latchset/mod_auth_mellon/HEAD/ECP.rst -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latchset/mod_auth_mellon/HEAD/Makefile.in -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latchset/mod_auth_mellon/HEAD/NEWS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latchset/mod_auth_mellon/HEAD/README.md -------------------------------------------------------------------------------- /auth_mellon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latchset/mod_auth_mellon/HEAD/auth_mellon.h -------------------------------------------------------------------------------- /auth_mellon_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latchset/mod_auth_mellon/HEAD/auth_mellon_cache.c -------------------------------------------------------------------------------- /auth_mellon_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latchset/mod_auth_mellon/HEAD/auth_mellon_compat.h -------------------------------------------------------------------------------- /auth_mellon_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latchset/mod_auth_mellon/HEAD/auth_mellon_config.c -------------------------------------------------------------------------------- /auth_mellon_cookie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latchset/mod_auth_mellon/HEAD/auth_mellon_cookie.c -------------------------------------------------------------------------------- /auth_mellon_diagnostics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latchset/mod_auth_mellon/HEAD/auth_mellon_diagnostics.c -------------------------------------------------------------------------------- /auth_mellon_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latchset/mod_auth_mellon/HEAD/auth_mellon_handler.c -------------------------------------------------------------------------------- /auth_mellon_httpclient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latchset/mod_auth_mellon/HEAD/auth_mellon_httpclient.c -------------------------------------------------------------------------------- /auth_mellon_session.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latchset/mod_auth_mellon/HEAD/auth_mellon_session.c -------------------------------------------------------------------------------- /auth_mellon_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latchset/mod_auth_mellon/HEAD/auth_mellon_util.c -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latchset/mod_auth_mellon/HEAD/autogen.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latchset/mod_auth_mellon/HEAD/configure.ac -------------------------------------------------------------------------------- /doc/mellon-attribute-map.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latchset/mod_auth_mellon/HEAD/doc/mellon-attribute-map.xsl -------------------------------------------------------------------------------- /doc/mellon_create_metadata.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latchset/mod_auth_mellon/HEAD/doc/mellon_create_metadata.8 -------------------------------------------------------------------------------- /doc/user_guide/Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latchset/mod_auth_mellon/HEAD/doc/user_guide/Guardfile -------------------------------------------------------------------------------- /doc/user_guide/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latchset/mod_auth_mellon/HEAD/doc/user_guide/README -------------------------------------------------------------------------------- /doc/user_guide/images/chrome_SAML_Chrome_Panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latchset/mod_auth_mellon/HEAD/doc/user_guide/images/chrome_SAML_Chrome_Panel.png -------------------------------------------------------------------------------- /doc/user_guide/images/chrome_SAML_Chrome_Panel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latchset/mod_auth_mellon/HEAD/doc/user_guide/images/chrome_SAML_Chrome_Panel.svg -------------------------------------------------------------------------------- /doc/user_guide/images/saml-tracer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latchset/mod_auth_mellon/HEAD/doc/user_guide/images/saml-tracer.png -------------------------------------------------------------------------------- /doc/user_guide/images/saml-tracer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latchset/mod_auth_mellon/HEAD/doc/user_guide/images/saml-tracer.svg -------------------------------------------------------------------------------- /doc/user_guide/images/saml-web-sso.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latchset/mod_auth_mellon/HEAD/doc/user_guide/images/saml-web-sso.svg -------------------------------------------------------------------------------- /doc/user_guide/mellon_user_guide.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latchset/mod_auth_mellon/HEAD/doc/user_guide/mellon_user_guide.adoc -------------------------------------------------------------------------------- /lasso_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latchset/mod_auth_mellon/HEAD/lasso_compat.h -------------------------------------------------------------------------------- /mellon_create_metadata.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latchset/mod_auth_mellon/HEAD/mellon_create_metadata.sh -------------------------------------------------------------------------------- /mod_auth_mellon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latchset/mod_auth_mellon/HEAD/mod_auth_mellon.c --------------------------------------------------------------------------------