| 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 ecbEncrypt :: DES -> ByteString -> ByteString # ecbDecrypt :: DES -> ByteString -> ByteString # cbcEncrypt :: DES -> IV DES -> ByteString -> ByteString # cbcDecrypt :: DES -> IV DES -> ByteString -> ByteString # cfbEncrypt :: DES -> IV DES -> ByteString -> ByteString # cfbDecrypt :: DES -> IV DES -> ByteString -> ByteString # ctrCombine :: DES -> IV DES -> ByteString -> ByteString # xtsEncrypt :: (DES, DES) -> IV DES -> DataUnitOffset -> ByteString -> ByteString # xtsDecrypt :: (DES, DES) -> IV DES -> DataUnitOffset -> ByteString -> ByteString # aeadInit :: Byteable iv => AEADMode -> DES -> iv -> Maybe (AEAD DES) # | |
| Cipher DES Source # | |
Defined in Crypto.Cipher.DES Methods cipherInit :: Key DES -> DES # cipherName :: DES -> String # cipherKeySize :: DES -> KeySizeSpecifier # | |