Crypto-4.2.5.1: Collects together existing Haskell cryptographic functions into a package

Copyright(c) Russell O'Connor 2006
LicenseBSD-style (see the file ReadMe.tex)
Safe HaskellSafe
LanguageHaskell98

Data.Digest.SHA2

Description

Implements SHA-256, SHA-384, SHA-512, and SHA-224 as defined in FIPS 180-2 http://csrc.nist.gov/publications/fips/fips180-2/fips180-2withchangenotice.pdf.

Synopsis

Documentation

sha256 :: (Bits a, Integral a) => [a] -> Hash256 Source #

sha256 currently requires that the bitSize of a divide 32

sha256Ascii :: String -> Hash256 Source #

shaXXXAscii assumes that all characters of the strings are ISO-latin-1 characters. ie. each characters fits in one octet.

type Hash256 = Hash8 Word32 Source #

sha512 :: (Bits a, Integral a) => [a] -> Hash512 Source #

sha384 currently requires that the bitSize of a divide 64

type Hash512 = Hash8 Word64 Source #

sha384 :: (Bits a, Integral a) => [a] -> Hash384 Source #

sha384 currently requires that the bitSize of a divide 64

data Hash384 Source #

Instances
Eq Hash384 Source # 
Instance details

Defined in Data.Digest.SHA2

Methods

(==) :: Hash384 -> Hash384 -> Bool #

(/=) :: Hash384 -> Hash384 -> Bool #

Ord Hash384 Source # 
Instance details

Defined in Data.Digest.SHA2

Show Hash384 Source # 
Instance details

Defined in Data.Digest.SHA2

sha224 :: (Bits a, Integral a) => [a] -> Hash224 Source #

sha224 currently requires that the bitSize of a divide 32

data Hash224 Source #

Instances
Eq Hash224 Source # 
Instance details

Defined in Data.Digest.SHA2

Methods

(==) :: Hash224 -> Hash224 -> Bool #

(/=) :: Hash224 -> Hash224 -> Bool #

Ord Hash224 Source # 
Instance details

Defined in Data.Digest.SHA2

Show Hash224 Source # 
Instance details

Defined in Data.Digest.SHA2

toOctets :: Hash h => h -> [Word8] Source #