Go to file
2011-08-14 21:25:27 +02:00
OpenId2 Remove qsUrl and utf8-string 2011-07-19 17:57:31 +03:00
Web/Authenticate Added Kerberos source file and added to modules 2011-08-14 21:25:27 +02:00
.gitignore OpenID v2 support. 2010-10-05 08:37:04 +02:00
authenticate.cabal Added Kerberos source file and added to modules 2011-08-14 21:25:27 +02:00
browserid.hs Added BrowserId support 2011-07-21 18:03:59 +03:00
facebook.hs Fixed facebook tokens 2011-06-10 08:25:45 +03:00
LICENSE Rpxnow module written. 2009-05-08 09:08:46 +03:00
openid2.hs OpenId uses xml-enumerator and tagsoup 2011-07-19 17:44:53 +03:00
README Formatted README a bit 2009-07-14 20:52:09 +03:00
rpxnow.hs Fixed rpxnow JSON code 2011-06-13 07:04:53 +03:00
Setup.lhs Rpxnow module written. 2009-05-08 09:08:46 +03:00

Authentication methods for Haskell web applications.

Note for Rpxnow: 
By default on some (all?) installs wget does not come with root certificates
for SSL.  If this is the case then Web.Authenticate.Rpxnow.authenticate will
fail as wget cannot establish a secure connection to rpxnow's servers.

A simple *nix solution, if potentially insecure (man in the middle attacks as
you are downloading the certs) is to grab a copy of the certs extracted from
those that come with firefox, hosted by CURL at
http://curl.haxx.se/ca/cacert.pem , put them somewhere (for ex,
~/.wget/cacert.pem) and then edit your ~/.wgetrc to include:
ca_certificate=~/.wget/cacert.pem

This should fix the problem.