crypto-api-0.11: A generic interface for cryptographic operations

Safe HaskellSafe-Inferred

Crypto.Types

Description

Type aliases used throughout the crypto-api modules.

Synopsis

Documentation

data IV k Source

Initilization Vectors for BlockCipher implementations (IV k) are used for various modes and guarrenteed to be blockSize bits long. The common ways to obtain an IV are to generate one (getIV or getIVIO) or to use one provided with the ciphertext (using the Serialize instance of IV).

zeroIV also exists and is of particular use for starting ctr mode with a fresh key.

Constructors

IV 

Instances

Eq (IV k) 
Ord (IV k) 
Show (IV k) 
BlockCipher k => Serialize (IV k) 

type BitLength = IntSource

The length of a field (usually a ByteString) in bits

type ByteLength = IntSource

The length fo a field in bytes.