Hoogle Search

Within LTS Haskell 24.41 (ghc-9.10.3)

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

  1. runUnixClient :: ClientSettingsUnix -> (AppDataUnix -> IO a) -> IO a

    conduit-extra Data.Conduit.Network.Unix

    Run an Application by connecting to the specified server.

  2. runUnixServer :: ServerSettingsUnix -> (AppDataUnix -> IO ()) -> IO a

    conduit-extra Data.Conduit.Network.Unix

    Run an Application with the given settings. This function will create a new listening socket, accept connections on it, and spawn a new thread for each connection.

  3. cfix :: Comonad w => (w a -> a) -> w a

    comonad Control.Comonad

    Comonadic fixed point à la Dominic Orchard

  4. kfix :: ComonadApply w => w (w a -> a) -> w a

    comonad Control.Comonad

    Comonadic fixed point à la Kenneth Foner: This is the evaluate function from his "Getting a Quick Fix on Comonads" talk.

  5. wfix :: Comonad w => w (w a -> a) -> a

    comonad Control.Comonad

    Comonadic fixed point à la David Menendez

  6. KeySizeFixed :: Int -> KeySizeSpecifier

    crypton Crypto.Cipher.Types

    a specific size

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

    crypton 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.

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

    crypton Crypto.Hash

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

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

    crypton Crypto.Hash

    Run the hashPrefix function but takes an explicit hash algorithm parameter

  10. class HashAlgorithm a => HashAlgorithmPrefix a

    crypton Crypto.Hash.Algorithms

    Hashing algorithms with a constant-time implementation.

Page 57 of many | Previous | Next