WMSigner

WebMoney authentication module

Latest on Hackage:0.1.0.0

This package is not currently in any snapshots. If you're interested in using it, we recommend adding it to Stackage Nightly. Doing so will make builds more reliable, and allow stackage.org to host generated Haddocks.

MIT licensed and maintained by Ilya Smelkov

Pure haskell implementation WMSigner authentication module.

Simple examples:

import Data.Digest.Webmoney

signer = newSigner (exponent :: [Word8) (modulus :: [Word8])

main = do
  putStrLn $ signUnsafe signer "message" -- static version
  sign signer "message" >>= putStrLn     -- randomized version