Skip to content

Commit

Permalink
Merge PR #16
Browse files Browse the repository at this point in the history
  • Loading branch information
kazu-yamamoto committed Sep 16, 2023
2 parents 50792f1 + bc880ce commit 2ea93fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Crypto/Cipher/Types/Block.hs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ import Foreign.Ptr
import Foreign.Storable

-- | an IV parametrized by the cipher
data IV c = forall byteArray . ByteArray byteArray => IV byteArray
data IV c = forall byteArray . ByteArray byteArray => IV !byteArray

instance BlockCipher c => ByteArrayAccess (IV c) where
withByteArray (IV z) f = withByteArray z f
Expand Down

0 comments on commit 2ea93fd

Please sign in to comment.