packages feed

hdigest-1.0: hdigest.cabal

Name:                hdigest
Version:             1.0
Synopsis:            Server-side HTTP Digest (RFC2617) in the CGI monad
Description:
  For web applications running in a CGI monad container, this module
  provides a simple interface to generate HTTP Digest authentication
  challenges and to process the responses from clients. It implements
  RFC2617, but accepts the quirky responses generated by some
  non-compliant browsers.
  .
  This module was originally implemented for Serialist
  (<http://serialist.net>) and is deployed there in a FastCGI
  environment using the fastcgi package. It has been tested against a
  variety of browsers, including Firefox, Safari, IE, Opera, and others.
Category:            Web
Cabal-Version:       >= 1.6
Build-Type:          Simple
License:             BSD3
License-file:        COPYING
Author:              Jamey Sharp
Copyright:           © 2009 Jamey Sharp
Maintainer:          Jamey Sharp <jamey@minilop.net>

Library
  Exposed-Modules:   Network.HTTP.Digest
  GHC-Options:       -Wall
  Build-Depends:     base >= 3, base < 5,
                     cgi,
                     Crypto,
                     network,
                     parsec,
                     random,
                     time

Source-Repository head
  Type:              git
  Location:          git://minilop.net/git/hdigest