diff --git a/Crypto/Cipher/Benchmarks.hs b/Crypto/Cipher/Benchmarks.hs
--- a/Crypto/Cipher/Benchmarks.hs
+++ b/Crypto/Cipher/Benchmarks.hs
@@ -53,6 +53,7 @@
 data Mode = ECB
           | CBC
           | CTR
+          | CFB
           | XTS
           | OCB
           | CCM
@@ -76,6 +77,7 @@
 modeToBench :: BlockCipher cipher => cipher -> Mode -> Maybe (B.ByteString -> B.ByteString)
 modeToBench cipher ECB = Just $ ecbEncrypt cipher
 modeToBench cipher CBC = Just $ cbcEncrypt cipher nullIV
+modeToBench cipher CFB = Just $ cfbEncrypt cipher nullIV
 modeToBench cipher CTR = Just $ ctrCombine cipher nullIV
 modeToBench cipher XTS
     | blockSize cipher == 16 = Just $ xtsEncrypt (cipher, cipher) nullIV 0
diff --git a/crypto-cipher-benchmarks.cabal b/crypto-cipher-benchmarks.cabal
--- a/crypto-cipher-benchmarks.cabal
+++ b/crypto-cipher-benchmarks.cabal
@@ -1,5 +1,5 @@
 Name:                crypto-cipher-benchmarks
-Version:             0.0.3
+Version:             0.0.4
 Synopsis:            Generic cryptography cipher benchmarks
 Description:         Generic cryptography cipher benchmarks
 License:             BSD3
@@ -20,7 +20,7 @@
                    , byteable >= 0.1.1
                    , securemem >= 0.1.1
                    , criterion
-                   , crypto-cipher-types >= 0.0.5
+                   , crypto-cipher-types >= 0.0.6
                    , mtl
                    , pretty
   ghc-options:       -Wall -fwarn-tabs
