summaryrefslogtreecommitdiff
path: root/cryptonite-backport/Crypto/Internal/ByteArray.hs
diff options
context:
space:
mode:
authorjoe <joe@jerkface.net>2017-09-15 04:40:28 -0400
committerjoe <joe@jerkface.net>2017-09-15 04:40:28 -0400
commit9605ede14705ef81dde2ff58ecddd66cf3adb13f (patch)
treed708c4088eae04825cbbabd99958ef593560a62b /cryptonite-backport/Crypto/Internal/ByteArray.hs
parentd830e5d9a18646e8f9fecf4ce74ac0250a3e9021 (diff)
Separated back-ported cryptonite files.
Diffstat (limited to 'cryptonite-backport/Crypto/Internal/ByteArray.hs')
-rw-r--r--cryptonite-backport/Crypto/Internal/ByteArray.hs19
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 #-}
11module Crypto.Internal.ByteArray
12 ( module Data.ByteArray
13 , module Data.ByteArray.Mapping
14 , module Data.ByteArray.Encoding
15 ) where
16
17import Data.ByteArray
18import Data.ByteArray.Mapping
19import Data.ByteArray.Encoding