Skip to content
Snippets Groups Projects
Main.hs 285 B
Newer Older
  • Learn to ignore specific revisions
  • Jean-Paul Calderone's avatar
    Jean-Paul Calderone committed
    -- | Generate a random Ristretto-flavored PrivacyPass signing key.
    
    module Main
      ( main
      ) where
    
    
    import Prelude hiding
      ( putStrLn
      )
    
    import Data.Text.IO
      ( putStrLn
      )
    
    
    import PaymentServer.Ristretto
      ( randomSigningKey
      )
    
    main :: IO ()
    main = randomSigningKey >>= putStrLn