git.fiddlerwoaroof.com
name mode size
.gitignore 100644 0 kb
COPYING.md 100644 1 kb
README.md 100644 1 kb
cl-oid-connect.asd 100644 1 kb
cl-oid-connect.lisp 100644 5 kb
demo.lisp 100644 2 kb
objects.lisp 100644 6 kb
package.lisp 100644 2 kb
utils.lisp 100644 7 kb
README.md
# Introduction Eventually, this repository will just contain an implementation of various social authentication protocols in common lisp. Right now, the only supported protocols are OpenID Connect and Facebook Login. The OpenID Connect implementation has only been tested against Google. More testing to follow. This repository also contains a "demo" application that uses the openid-connect library: a very simple app that just authorizes the user against the chosen provider and then dumps the info returned by that provider. # Installation notes This project implements the OpenId Connect API. In its current state, it can authenticate a user against Google and display the informaiton Google sends back. The only tricky requirement it has is cljwt, a library for parsing JSON Web Tokens, which is not in quicklisp but can be gotten from <https://github.com/fiddlerwoaroof/cljwt>. (This is my fork, I've made a couple changes since the original library didn't support the signature algorithm Google uses). Note, however, that my fork of cljwt doesn't actually verify any signatures: it just decodes the data and assumes the validity of the signature. (c) 2015 Edward Langley, distributed under a 2-clause BSD License