License | BSD-style |
---|---|
Maintainer | Vincent Hanquez <vincent@snarc.org> |
Stability | stable |
Portability | good |
Safe Haskell | None |
Language | Haskell2010 |
Synopsis
- data DES
Documentation
DES Context
Instances
Eq DES Source # | |
Cipher DES Source # | |
Defined in Crypto.Cipher.DES cipherInit :: ByteArray key => key -> CryptoFailable DES Source # cipherName :: DES -> String Source # cipherKeySize :: DES -> KeySizeSpecifier Source # | |
BlockCipher DES Source # | |
Defined in Crypto.Cipher.DES blockSize :: DES -> Int Source # ecbEncrypt :: ByteArray ba => DES -> ba -> ba Source # ecbDecrypt :: ByteArray ba => DES -> ba -> ba Source # cbcEncrypt :: ByteArray ba => DES -> IV DES -> ba -> ba Source # cbcDecrypt :: ByteArray ba => DES -> IV DES -> ba -> ba Source # cfbEncrypt :: ByteArray ba => DES -> IV DES -> ba -> ba Source # cfbDecrypt :: ByteArray ba => DES -> IV DES -> ba -> ba Source # ctrCombine :: ByteArray ba => DES -> IV DES -> ba -> ba Source # aeadInit :: ByteArrayAccess iv => AEADMode -> DES -> iv -> CryptoFailable (AEAD DES) Source # |