packages feed

openpgp-asciiarmor-0.1.1: bench/mark.hs

-- mark.hs: openpgp-asciiarmor benchmark suite
-- Copyright © 2018  Clint Adams
-- This software is released under the terms of the ISC license.
-- (See the LICENSE file).

{-# LANGUAGE FlexibleContexts, OverloadedStrings #-}

import Criterion.Main

import Data.Digest.CRC24

main :: IO ()
main = defaultMain [
  bgroup "crc" [ bench "crc24"  $ whnf crc24 "test"
               ]
                   ]