secp256k1

Pure Haskell cryptographic primitives on the secp256k1 elliptic curve.
git clone git://git.ppad.tech/secp256k1.git
Log | Files | Refs | LICENSE

commit 0514ab10d8df8dba93885db6a47b0d659e296238
parent a146be59b0d6a394ec3c7be2f6baeba74b1c283f
Author: Jared Tobin <jared@jtobin.io>
Date:   Sat, 23 Mar 2024 14:09:40 +0400

test: add suite skeleton

Diffstat:
Mppad-secp256k1.cabal | 16++++++++++++++++
Atest/Main.hs | 4++++
2 files changed, 20 insertions(+), 0 deletions(-)

diff --git a/ppad-secp256k1.cabal b/ppad-secp256k1.cabal @@ -30,6 +30,22 @@ library , base16-bytestring , bytestring +test-suite secp256k1-tests + type: exitcode-stdio-1.0 + default-language: Haskell2010 + hs-source-dirs: test + main-is: Main.hs + + ghc-options: + -rtsopts -Wall + + build-depends: + base + , bytestring + , ppad-secp256k1 + , tasty + , tasty-hunit + benchmark secp256k1-bench type: exitcode-stdio-1.0 default-language: Haskell2010 diff --git a/test/Main.hs b/test/Main.hs @@ -0,0 +1,4 @@ +module Main where + +main :: IO +main = pure ()