Hoogle Search

Within LTS Haskell 24.3 (ghc-9.10.2)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. RespSecretNotRandom :: ErrorPosition -> InspectionError

    cacophony Crypto.Noise.Validation

    No documentation available.

  2. genSaltRandom :: RandomGen b => b -> (Salt, b)

    pwstore-fast Crypto.PasswordStore

    Generate a Salt with 128 bits of data taken from a given random number generator. Returns the salt and the updated random number generator. This is meant to be used with makePasswordSalt by people who would prefer to either use their own random number generator or avoid the IO monad.

  3. c_randombytes_buf :: Ptr CChar -> CInt -> IO ()

    saltine Crypto.Saltine.Internal.Util

    No documentation available.

  4. data SystemRandom

    crypto-random-api Crypto.Random.API

    This is a simple generator that pull bytes from the system entropy directly. Its randomness and security properties are absolutely depends on the underlaying system implementation.

  5. genRandomBytes :: CPRG g => Int -> g -> (ByteString, g)

    crypto-random-api Crypto.Random.API

    Generate bytes using the cprg in parameter. If the number of bytes requested is really high, it's preferable to use genRandomBytes for better memory efficiency.

  6. genRandomBytes' :: CPRG g => Int -> g -> ([ByteString], g)

    crypto-random-api Crypto.Random.API

    Generate bytes using the cprg in parameter. This is not tail recursive and an excessive len (>= 2^29) parameter would result in stack overflow.

  7. getSystemRandomGen :: IO SystemRandom

    crypto-random-api Crypto.Random.API

    Get a random number generator based on the standard system entropy source

  8. withRandomBytes :: CPRG g => g -> Int -> (ByteString -> a) -> (a, g)

    crypto-random-api Crypto.Random.API

    this is equivalent to using Control.Arrow first with genRandomBytes. namely it generate len bytes and map the bytes to the function f

  9. getRandomValues :: (MonadDOM m, IsArrayBufferView array) => Crypto -> array -> m ArrayBufferView

    jsaddle-dom JSDOM.Generated.Crypto

    Mozilla Crypto.getRandomValues documentation

  10. getRandomValues_ :: (MonadDOM m, IsArrayBufferView array) => Crypto -> array -> m ()

    jsaddle-dom JSDOM.Generated.Crypto

    Mozilla Crypto.getRandomValues documentation

Page 5 of many | Previous | Next