----------------------------------------------------------------------------- -- | -- Module : Data.Digest.SHA512 -- Copyright : (c) Russell O'Connor 2006 -- License : BSD-style (see the file CryptoReadMe.tex) -- -- Takes the SHA2 module supplied and wraps it so it -- takes [Octet] and returns [Octet] where the length of the result -- is always 64. -- and . -- ----------------------------------------------------------------------------- module Data.Digest.SHA512 ( -- * Function Types hash) where import Data.Digest.SHA2 as SHA2 import Codec.Utils -- | Take [Octet] and return [Octet] according to the standard. -- The length of the result is always 64 octets or 512 bits as required -- by the standard. hash :: [Octet] -> [Octet] hash = SHA2.toOctets . SHA2.sha512