cryptonite-0.29: Cryptography Primitives sink
LicenseBSD-style
MaintainerVincent Hanquez <vincent@snarc.org>
Stabilitystable
Portabilitygood
Safe HaskellNone
LanguageHaskell2010

Crypto.Cipher.AES

Description

 
Synopsis

Documentation

data AES128 #

AES with 128 bit key

Instances

Instances details
NFData AES128 # 
Instance details

Defined in Crypto.Cipher.AES

Methods

rnf :: AES128 -> () #

Cipher AES128 # 
Instance details

Defined in Crypto.Cipher.AES

BlockCipher128 AES128 # 
Instance details

Defined in Crypto.Cipher.AES

Methods

xtsEncrypt :: ByteArray ba => (AES128, AES128) -> IV AES128 -> DataUnitOffset -> ba -> ba #

xtsDecrypt :: ByteArray ba => (AES128, AES128) -> IV AES128 -> DataUnitOffset -> ba -> ba #

BlockCipher AES128 # 
Instance details

Defined in Crypto.Cipher.AES

Methods

blockSize :: AES128 -> Int #

ecbEncrypt :: ByteArray ba => AES128 -> ba -> ba #

ecbDecrypt :: ByteArray ba => AES128 -> ba -> ba #

cbcEncrypt :: ByteArray ba => AES128 -> IV AES128 -> ba -> ba #

cbcDecrypt :: ByteArray ba => AES128 -> IV AES128 -> ba -> ba #

cfbEncrypt :: ByteArray ba => AES128 -> IV AES128 -> ba -> ba #

cfbDecrypt :: ByteArray ba => AES128 -> IV AES128 -> ba -> ba #

ctrCombine :: ByteArray ba => AES128 -> IV AES128 -> ba -> ba #

aeadInit :: ByteArrayAccess iv => AEADMode -> AES128 -> iv -> CryptoFailable (AEAD AES128) #

data AES192 #

AES with 192 bit key

Instances

Instances details
NFData AES192 # 
Instance details

Defined in Crypto.Cipher.AES

Methods

rnf :: AES192 -> () #

Cipher AES192 # 
Instance details

Defined in Crypto.Cipher.AES

BlockCipher128 AES192 # 
Instance details

Defined in Crypto.Cipher.AES

Methods

xtsEncrypt :: ByteArray ba => (AES192, AES192) -> IV AES192 -> DataUnitOffset -> ba -> ba #

xtsDecrypt :: ByteArray ba => (AES192, AES192) -> IV AES192 -> DataUnitOffset -> ba -> ba #

BlockCipher AES192 # 
Instance details

Defined in Crypto.Cipher.AES

Methods

blockSize :: AES192 -> Int #

ecbEncrypt :: ByteArray ba => AES192 -> ba -> ba #

ecbDecrypt :: ByteArray ba => AES192 -> ba -> ba #

cbcEncrypt :: ByteArray ba => AES192 -> IV AES192 -> ba -> ba #

cbcDecrypt :: ByteArray ba => AES192 -> IV AES192 -> ba -> ba #

cfbEncrypt :: ByteArray ba => AES192 -> IV AES192 -> ba -> ba #

cfbDecrypt :: ByteArray ba => AES192 -> IV AES192 -> ba -> ba #

ctrCombine :: ByteArray ba => AES192 -> IV AES192 -> ba -> ba #

aeadInit :: ByteArrayAccess iv => AEADMode -> AES192 -> iv -> CryptoFailable (AEAD AES192) #

data AES256 #

AES with 256 bit key

Instances

Instances details
NFData AES256 # 
Instance details

Defined in Crypto.Cipher.AES

Methods

rnf :: AES256 -> () #

Cipher AES256 # 
Instance details

Defined in Crypto.Cipher.AES

BlockCipher128 AES256 # 
Instance details

Defined in Crypto.Cipher.AES

Methods

xtsEncrypt :: ByteArray ba => (AES256, AES256) -> IV AES256 -> DataUnitOffset -> ba -> ba #

xtsDecrypt :: ByteArray ba => (AES256, AES256) -> IV AES256 -> DataUnitOffset -> ba -> ba #

BlockCipher AES256 # 
Instance details

Defined in Crypto.Cipher.AES

Methods

blockSize :: AES256 -> Int #

ecbEncrypt :: ByteArray ba => AES256 -> ba -> ba #

ecbDecrypt :: ByteArray ba => AES256 -> ba -> ba #

cbcEncrypt :: ByteArray ba => AES256 -> IV AES256 -> ba -> ba #

cbcDecrypt :: ByteArray ba => AES256 -> IV AES256 -> ba -> ba #

cfbEncrypt :: ByteArray ba => AES256 -> IV AES256 -> ba -> ba #

cfbDecrypt :: ByteArray ba => AES256 -> IV AES256 -> ba -> ba #

ctrCombine :: ByteArray ba => AES256 -> IV AES256 -> ba -> ba #

aeadInit :: ByteArrayAccess iv => AEADMode -> AES256 -> iv -> CryptoFailable (AEAD AES256) #