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 # | |
Cipher DES # | |
Defined in Crypto.Cipher.DES cipherInit :: ByteArray key => key -> CryptoFailable DES # cipherName :: DES -> String # cipherKeySize :: DES -> KeySizeSpecifier # | |
BlockCipher DES # | |
Defined in Crypto.Cipher.DES 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) # |