raaz-0.1.0: The raaz cryptographic library.

Safe HaskellNone
LanguageHaskell2010

Raaz.Cipher.AES

Contents

Synopsis

Documentation

data AES n mode Source #

The type associated with AES ciphers. Raaz provides AES variants with key lengths 128, 192 and 256. The key types for the above ciphers in cbc mode are given by the types (KEY128, IV), (KEY192, IV) (KEY256, IV) respectively.

Instances

Describable (AES 128 CBC) Source # 

Methods

name :: AES 128 CBC -> String Source #

description :: AES 128 CBC -> String Source #

Describable (AES 192 CBC) Source # 

Methods

name :: AES 192 CBC -> String Source #

description :: AES 192 CBC -> String Source #

Describable (AES 256 CBC) Source # 

Methods

name :: AES 256 CBC -> String Source #

description :: AES 256 CBC -> String Source #

Primitive (AES 128 CBC) Source #

The 128-bit aes cipher in cbc mode.

Associated Types

type Implementation (AES 128 CBC) :: * Source #

Methods

blockSize :: AES 128 CBC -> BYTES Int Source #

Primitive (AES 192 CBC) Source #

The 192-bit aes cipher in cbc mode.

Associated Types

type Implementation (AES 192 CBC) :: * Source #

Methods

blockSize :: AES 192 CBC -> BYTES Int Source #

Primitive (AES 256 CBC) Source #

The 256-bit aes cipher in cbc mode.

Associated Types

type Implementation (AES 256 CBC) :: * Source #

Methods

blockSize :: AES 256 CBC -> BYTES Int Source #

Cipher (AES 128 CBC) Source # 
Cipher (AES 192 CBC) Source # 
Cipher (AES 256 CBC) Source # 
type Key (AES 128 CBC) Source # 
type Key (AES 128 CBC) = (KEY128, IV)
type Key (AES 192 CBC) Source # 
type Key (AES 192 CBC) = (KEY192, IV)
type Key (AES 256 CBC) Source # 
type Key (AES 256 CBC) = (KEY256, IV)
type Implementation (AES 128 CBC) Source # 
type Implementation (AES 192 CBC) Source # 
type Implementation (AES 256 CBC) Source # 

data IV Source #

The IV used by the CBC mode.

Instances

Show IV Source #

Shown as a its base16 encoding.

Methods

showsPrec :: Int -> IV -> ShowS #

show :: IV -> String #

showList :: [IV] -> ShowS #

IsString IV Source #

Expects in base16.

Methods

fromString :: String -> IV #

Storable IV Source # 

Methods

sizeOf :: IV -> Int #

alignment :: IV -> Int #

peekElemOff :: Ptr IV -> Int -> IO IV #

pokeElemOff :: Ptr IV -> Int -> IV -> IO () #

peekByteOff :: Ptr b -> Int -> IO IV #

pokeByteOff :: Ptr b -> Int -> IV -> IO () #

peek :: Ptr IV -> IO IV #

poke :: Ptr IV -> IV -> IO () #

EndianStore IV Source # 

Methods

store :: Ptr IV -> IV -> IO () Source #

load :: Ptr IV -> IO IV Source #

adjustEndian :: Ptr IV -> Int -> IO () Source #

Encodable IV Source # 
Random IV Source # 

Methods

random :: Memory mem => RT mem IV Source #

Some AES cipher modes.

aes128cbc :: AES 128 CBC Source #

128-bit aes cipher in CBC mode.

aes192cbc :: AES 192 CBC Source #

128-bit aes cipher in CBC mode.

aes256cbc :: AES 256 CBC Source #

128-bit aes cipher in CBC mode.

aes128ctr :: AES 128 CTR Source #

Smart constructors for AES 128 ctr.