cryptonite-0.25: Cryptography Primitives sink

LicenseBSD-style
MaintainerVincent Hanquez <vincent@snarc.org>
Stabilitystable
Portabilitygood
Safe HaskellNone
LanguageHaskell2010

Crypto.Cipher.DES

Description

 
Synopsis

Documentation

data DES #

DES Context

Instances
Eq DES # 
Instance details

Defined in Crypto.Cipher.DES

Methods

(==) :: DES -> DES -> Bool #

(/=) :: DES -> DES -> Bool #

Cipher DES # 
Instance details

Defined in Crypto.Cipher.DES

BlockCipher DES # 
Instance details

Defined in Crypto.Cipher.DES

Methods

blockSize :: DES -> Int #

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

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

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

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

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

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

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

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