saltine-0.0.0.5: src/Crypto/Saltine/Internal/Util.hs
module Crypto.Saltine.Internal.Util where
import Foreign.C
import Foreign.Ptr
import System.IO.Unsafe
import Control.Applicative
import qualified Data.ByteString as S
import Data.ByteString (ByteString)
import Data.ByteString.Unsafe
import Data.Monoid
-- | @snd . cycleSucc@ computes the 'succ' of a 'Bounded', 'Eq' 'Enum'
-- with wraparound. The @fst . cycleSuc@ is whether the wraparound
-- occurred (i.e. @fst . cycleSucc == (== maxBound)@).
cycleSucc :: (Bounded a, Enum a, Eq a) => a -> (Bool, a)
cycleSucc a = (top, if top then minBound else succ a)
where top = a == maxBound
-- | Treats a 'ByteString' as a little endian bitstring and increments
-- it.
nudgeBS :: ByteString -> ByteString
nudgeBS i = fst $ S.unfoldrN (S.length i) go (True, i) where
go (toSucc, bs) = do
(hd, tl) <- S.uncons bs
let (top, hd') = cycleSucc hd
if toSucc
then return (hd', (top, tl))
else return (hd, (top && toSucc, tl))
-- | Computes the orbit of a endomorphism... in a very brute force
-- manner. Exists just for the below property.
--
-- prop> length . orbit nudgeBS . S.pack . replicate 0 == (256^)
orbit :: Eq a => (a -> a) -> a -> [a]
orbit f a0 = orbit' (f a0) where
orbit' a = if a == a0 then [a0] else a : orbit' (f a)
-- | 0-pad a 'ByteString'
pad :: Int -> ByteString -> ByteString
pad n = mappend (S.replicate n 0)
-- | Remove a 0-padding from a 'ByteString'
unpad :: Int -> ByteString -> ByteString
unpad = S.drop
-- | Converts a C-convention errno to an Either
handleErrno :: CInt -> (a -> Either String a)
handleErrno err a = case err of
0 -> Right a
-1 -> Left "failed"
n -> Left ("unexpected error code: " ++ show n)
unsafeDidSucceed :: IO CInt -> Bool
unsafeDidSucceed = go . unsafePerformIO
where go 0 = True
go _ = False
-- | Convenience function for accessing constant C vectors
-- Manual unfold of: @constVectors = runContT . mapM (ContT . V.unsafeWith)@
constVectors :: [ByteString] -> ([CStringLen] -> IO b) -> IO b
constVectors =
foldr (\v kk -> \k -> (unsafeUseAsCStringLen v) (\a -> kk (\as -> k (a:as)))) ($ [])
-- | Slightly safer cousin to 'buildUnsafeCVector' that remains in the
-- 'IO' monad.
buildUnsafeCVector' :: Int -> (Ptr CChar -> IO b) -> IO (b, ByteString)
buildUnsafeCVector' n k = do
let bs = S.replicate n 0
out <- unsafeUseAsCString bs k
return (out, bs)
-- | Extremely unsafe function, use with utmost care! Builds a new
-- Vector using a ccall which is given access to the raw underlying
-- pointer. Overwrites are UNCHECKED and 'unsafePerformIO' is used so
-- it's difficult to predict the timing of the 'ByteString' creation.
buildUnsafeCVector :: Int -> (Ptr CChar -> IO b) -> (b, ByteString)
buildUnsafeCVector n = unsafePerformIO . buildUnsafeCVector' n
-- | Build a sized random 'ByteString' using Sodium's bindings to
-- @/dev/urandom@.
randomVector :: Int -> IO ByteString
randomVector n =
snd <$> buildUnsafeCVector' n (`c_randombytes_buf` fromIntegral n)
-- | To prevent a dependency on package 'errors'
hush :: Either s a -> Maybe a
hush = either (const Nothing) Just
foreign import ccall "randombytes_buf"
c_randombytes_buf :: Ptr CChar -> CInt -> IO ()