Hoogle Search

Within LTS Haskell 24.58 (ghc-9.10.3)

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

  1. zipPixelComponent3 :: Storable (PixelBaseComponent px) => (PixelBaseComponent px -> PixelBaseComponent px -> PixelBaseComponent px -> PixelBaseComponent px) -> Image px -> Image px -> Image px -> Image px

    JuicyPixels Codec.Picture.Types

    Combine, pixel by pixel and component by component the values of 3 different images. Usage example:

    averageBrightNess c1 c2 c3 = clamp $ toInt c1 + toInt c2 + toInt c3
    where clamp = fromIntegral . min 0 . max 255
    toInt :: a -> Int
    toInt = fromIntegral
    ziPixelComponent3 averageBrightNess img1 img2 img3
    

  2. KeySizeFixed :: Int -> KeySizeSpecifier

    cryptonite Crypto.Cipher.Types

    a specific size

  3. hashFinalizePrefix :: (HashAlgorithmPrefix a, ByteArrayAccess ba) => Context a -> ba -> Int -> Digest a

    cryptonite Crypto.Hash

    Update the context with the first N bytes of a bytestring and return the digest. The code path is independent from N but much slower than a normal hashUpdate. The function can be called for the last bytes of a message, in order to exclude a variable padding, without leaking the padding length. The begining of the message, never impacted by the padding, should preferably go through hashUpdate for better performance.

  4. hashPrefix :: (ByteArrayAccess ba, HashAlgorithmPrefix a) => ba -> Int -> Digest a

    cryptonite Crypto.Hash

    Hash the first N bytes of a bytestring, with code path independent from N.

  5. hashPrefixWith :: (ByteArrayAccess ba, HashAlgorithmPrefix alg) => alg -> ba -> Int -> Digest alg

    cryptonite Crypto.Hash

    Run the hashPrefix function but takes an explicit hash algorithm parameter

  6. class HashAlgorithm a => HashAlgorithmPrefix a

    cryptonite Crypto.Hash.Algorithms

    Hashing algorithms with a constant-time implementation.

  7. data AppDataUnix

    streaming-commons Data.Streaming.Network

    The data passed to a Unix domain sockets Application.

  8. data ClientSettingsUnix

    streaming-commons Data.Streaming.Network

    Settings for a Unix domain sockets client.

  9. data ServerSettingsUnix

    streaming-commons Data.Streaming.Network

    Settings for a Unix domain sockets server.

  10. clientSettingsUnix :: FilePath -> ClientSettingsUnix

    streaming-commons Data.Streaming.Network

    Smart constructor.

Page 111 of many | Previous | Next