| Copyright | Copyright © 2021 Lars Kuhtz <lakuhtz@gmail.com> |
|---|---|
| License | MIT |
| Maintainer | Lars Kuhtz <lakuhtz@gmail.com> |
| Stability | experimental |
| Safe Haskell | None |
| Language | Haskell2010 |
Data.Hash.SHA2
Contents
Description
SHA-2 Hash Functions
Synopsis
- newtype Sha2_224 = Sha2_224 ShortByteString
- newtype Sha2_256 = Sha2_256 ShortByteString
- newtype Sha2_384 = Sha2_384 ShortByteString
- newtype Sha2_512 = Sha2_512 ShortByteString
- newtype Sha2_512_224 = Sha2_512_224 ShortByteString
- newtype Sha2_512_256 = Sha2_512_256 ShortByteString
- module Data.Hash.Class.Mutable
SHA-2
SHA-2 (Secure Hash Algorithm 2) is a family of cryptographic hash functions standardized in NIST FIPS 180-4, first published in 2001. These functions conform to NIST FIPS 180-4.
Constructors
| Sha2_224 ShortByteString |
Instances
Constructors
| Sha2_256 ShortByteString |
Instances
Constructors
| Sha2_384 ShortByteString |
Instances
Constructors
| Sha2_512 ShortByteString |
Instances
newtype Sha2_512_224 Source #
Constructors
| Sha2_512_224 ShortByteString |
Instances
newtype Sha2_512_256 Source #
Constructors
| Sha2_512_256 ShortByteString |
Instances
module Data.Hash.Class.Mutable