diff options
Diffstat (limited to 'cryptonite-backport/Crypto/Internal/ByteArray.hs')
-rw-r--r-- | cryptonite-backport/Crypto/Internal/ByteArray.hs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/cryptonite-backport/Crypto/Internal/ByteArray.hs b/cryptonite-backport/Crypto/Internal/ByteArray.hs new file mode 100644 index 00000000..3a23152d --- /dev/null +++ b/cryptonite-backport/Crypto/Internal/ByteArray.hs | |||
@@ -0,0 +1,19 @@ | |||
1 | -- | | ||
2 | -- Module : Crypto.Internal.ByteArray | ||
3 | -- License : BSD-style | ||
4 | -- Maintainer : Vincent Hanquez <vincent@snarc.org> | ||
5 | -- Stability : stable | ||
6 | -- Portability : Good | ||
7 | -- | ||
8 | -- Simple and efficient byte array types | ||
9 | -- | ||
10 | {-# OPTIONS_HADDOCK hide #-} | ||
11 | module Crypto.Internal.ByteArray | ||
12 | ( module Data.ByteArray | ||
13 | , module Data.ByteArray.Mapping | ||
14 | , module Data.ByteArray.Encoding | ||
15 | ) where | ||
16 | |||
17 | import Data.ByteArray | ||
18 | import Data.ByteArray.Mapping | ||
19 | import Data.ByteArray.Encoding | ||