Go to file
Michael Snoyman 7129baff18 Version bump
2013-02-13 13:35:42 +02:00
authenticate Version bump 2013-02-13 13:35:42 +02:00
authenticate-oauth added deriving clause 2012-12-02 14:28:17 +09:00
.gitignore OpenID v2 support. 2010-10-05 08:37:04 +02:00
.travis.yml Initial travis 2012-10-21 14:07:04 +02:00
README Formatted README a bit 2009-07-14 20:52:09 +03:00
sources.txt Initial travis 2012-10-21 14:07:04 +02: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.