License | BSD-style |
---|---|
Maintainer | Vincent Hanquez <vincent@snarc.org> |
Stability | stable |
Portability | good |
Safe Haskell | None |
Language | Haskell98 |
Crypto.Cipher.DES
Description
Synopsis
- data DES
Documentation
DES Context
Instances
Eq DES Source # | |
BlockCipher DES Source # | |
Defined in Crypto.Cipher.DES Methods blockSize :: DES -> Int Source # ecbEncrypt :: DES -> ByteString -> ByteString Source # ecbDecrypt :: DES -> ByteString -> ByteString Source # cbcEncrypt :: DES -> IV DES -> ByteString -> ByteString Source # cbcDecrypt :: DES -> IV DES -> ByteString -> ByteString Source # cfbEncrypt :: DES -> IV DES -> ByteString -> ByteString Source # cfbDecrypt :: DES -> IV DES -> ByteString -> ByteString Source # ctrCombine :: DES -> IV DES -> ByteString -> ByteString Source # xtsEncrypt :: (DES, DES) -> IV DES -> DataUnitOffset -> ByteString -> ByteString Source # xtsDecrypt :: (DES, DES) -> IV DES -> DataUnitOffset -> ByteString -> ByteString Source # aeadInit :: Byteable iv => AEADMode -> DES -> iv -> Maybe (AEAD DES) Source # | |
Cipher DES Source # | |
Defined in Crypto.Cipher.DES Methods cipherInit :: Key DES -> DES Source # cipherName :: DES -> String Source # cipherKeySize :: DES -> KeySizeSpecifier Source # |