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.
runUnixClient :: ClientSettingsUnix -> (AppDataUnix -> IO a) -> IO aconduit-extra Data.Conduit.Network.Unix Run an Application by connecting to the specified server.
runUnixServer :: ServerSettingsUnix -> (AppDataUnix -> IO ()) -> IO aconduit-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.
cfix :: Comonad w => (w a -> a) -> w acomonad Control.Comonad Comonadic fixed point à la Dominic Orchard
kfix :: ComonadApply w => w (w a -> a) -> w acomonad Control.Comonad Comonadic fixed point à la Kenneth Foner: This is the evaluate function from his "Getting a Quick Fix on Comonads" talk.
wfix :: Comonad w => w (w a -> a) -> acomonad Control.Comonad Comonadic fixed point à la David Menendez
KeySizeFixed :: Int -> KeySizeSpecifiercrypton Crypto.Cipher.Types a specific size
-
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.
hashPrefix :: (ByteArrayAccess ba, HashAlgorithmPrefix a) => ba -> Int -> Digest acrypton Crypto.Hash Hash the first N bytes of a bytestring, with code path independent from N.
hashPrefixWith :: (ByteArrayAccess ba, HashAlgorithmPrefix alg) => alg -> ba -> Int -> Digest algcrypton Crypto.Hash Run the hashPrefix function but takes an explicit hash algorithm parameter
class HashAlgorithm a =>
HashAlgorithmPrefix acrypton Crypto.Hash.Algorithms Hashing algorithms with a constant-time implementation.