name: hoauth version: 0.1.0 category: Network,Protocol,OAuth license: BSD3 license-file: LICENSE author: Diego Souza maintainer: Diego Souza stability: experimental build-type: Simple cabal-version: >= 1.6 tested-with: GHC==6.8.2,GHC==6.10.4 synopsis: A Haskell implementation of OAuth 1.0 protocol. description: This library implements all PLAINTEXT, HMAC-SHA1 and RSA-SHA1 signatures as defined in the specification 1.0. Currently it supports only /consumer/ related functions, but there are plans to add support /service providers/ as well. More info at: library build-depends: base>=3&&<=4,bytestring>=0.9.0.1,SHA>=1.4.0,RSA>=1.0.2,base64-string>=0.1,utf8-string>=0.3.3 exposed-modules: Network.Protocol.OAuth.Consumer,Network.Protocol.OAuth.Request,Network.Protocol.OAuth.Signature hs-source-dirs: src/main/haskell ghc-options: -Wall -fwarn-tabs flag test Description: Build the hoauth test suite. Default: False executable test_hoauth build-depends: base>=3&&<=4,bytestring>=0.9.0.1,SHA>=1.4.0,RSA>=1.0.2,base64-string>=0.1,utf8-string>=0.3.3,HUnit>=1.2.0.0 ghc-options: -fno-ignore-asserts -fwarn-tabs hs-source-dirs: src/main/haskell,src/test/haskell main-is: Tests.hs if !flag(test) buildable: False source-repository head type: darcs location: http://projects.bitforest.org/hoauth/