From 796bbef3c2c5bb1ed775260dcd8553d5cb4771a5 Mon Sep 17 00:00:00 2001 From: Vincent Hanquez Date: Sat, 11 Apr 2015 16:03:42 +0100 Subject: [PATCH] [DES] remove unnecessary imports --- Crypto/Cipher/DES/Serialization.hs | 2 -- 1 file changed, 2 deletions(-) diff --git a/Crypto/Cipher/DES/Serialization.hs b/Crypto/Cipher/DES/Serialization.hs index b955ee0..4a9d243 100644 --- a/Crypto/Cipher/DES/Serialization.hs +++ b/Crypto/Cipher/DES/Serialization.hs @@ -17,9 +17,7 @@ import Crypto.Cipher.DES.Primitive (Block(..)) import Crypto.Internal.ByteArray import Crypto.Internal.Endian -import Data.Word (Word64) import Foreign.Storable -import Foreign.Ptr (castPtr, plusPtr, Ptr) toBS :: Block -> B.ByteString toBS (Block w) = byteArrayAllocAndFreeze 8 $ \ptr -> poke ptr (toBE64 w)