From 4b8a8229cfd88ac6be9636a0bc8695cdb3514e57 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Olivier=20Ch=C3=A9ron?= Date: Sun, 23 Feb 2020 08:40:55 +0100 Subject: [PATCH] Remove redundant where --- Crypto/MAC/CMAC.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Crypto/MAC/CMAC.hs b/Crypto/MAC/CMAC.hs index cfb8a49..a54b189 100644 --- a/Crypto/MAC/CMAC.hs +++ b/Crypto/MAC/CMAC.hs @@ -94,7 +94,7 @@ bxor = B.xor cipherIPT :: BlockCipher k => k -> [Word8] -cipherIPT = expandIPT . blockSize where +cipherIPT = expandIPT . blockSize -- Data type which represents the smallest irreducibule binary polynomial -- against specified degree.