sha512

Pure Haskell SHA-256, HMAC-SHA256 (docs.ppad.tech/sha256).
git clone git://git.ppad.tech/sha512.git
Log | Files | Refs | README | LICENSE

commit 332e5a88d027fa5f834c4f4ce0159d61ba4b27c0
parent 22a555ed4a677c40415a30ac3c5d9ac62ff4bcde
Author: Jared Tobin <jared@jtobin.io>
Date:   Sat,  5 Oct 2024 19:18:22 +0400

lib: initial skeleton

Diffstat:
Abench/Main.hs | 5+++++
Alib/Crypto/Hash/SHA512.hs | 3+++
Atest/Main.hs | 5+++++
3 files changed, 13 insertions(+), 0 deletions(-)

diff --git a/bench/Main.hs b/bench/Main.hs @@ -0,0 +1,5 @@ + +module Main where + +main :: IO () +main = pure () diff --git a/lib/Crypto/Hash/SHA512.hs b/lib/Crypto/Hash/SHA512.hs @@ -0,0 +1,3 @@ + +module Crypto.Hash.SHA512 where + diff --git a/test/Main.hs b/test/Main.hs @@ -0,0 +1,5 @@ + +module Main where + +main :: IO () +main = pure ()