Crypto-4.2.5.2: Common Cryptographic Algorithms in Pure Haskell
Copyright(c) Russell O'Connor 2006
LicenseBSD-style (see the file ReadMe.tex)
Safe HaskellSafe-Inferred
LanguageHaskell2010

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

SHA-224

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

sha224 currently requires that the bitSize of a divide 32

sha224Ascii :: String -> Hash224 Source #

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

data Hash224 Source #

Instances

Instances details
Show Hash224 Source # 
Instance details

Defined in Data.Digest.SHA2

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

SHA-256

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

sha256 currently requires that the bitSize of a divide 32

sha256Ascii :: String -> Hash256 Source #

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

type Hash256 = Hash8 Word32 Source #

SHA-384

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

sha384 currently requires that the bitSize of a divide 64

sha384Ascii :: String -> Hash384 Source #

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

data Hash384 Source #

Instances

Instances details
Show Hash384 Source # 
Instance details

Defined in Data.Digest.SHA2

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

SHA-512

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

sha384 currently requires that the bitSize of a divide 64

sha512Ascii :: String -> Hash512 Source #

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

type Hash512 = Hash8 Word64 Source #

Utilities

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