Hoogle Search

Within LTS Haskell 24.46 (ghc-9.10.3)

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

  1. checksumFree :: (HasCallStack, MonadIO m) => Checksum -> m ()

    gi-glib GI.GLib.Structs.Checksum

    Frees the memory allocated for checksum. Since: 2.16

  2. checksumGetString :: (HasCallStack, MonadIO m) => Checksum -> m Text

    gi-glib GI.GLib.Structs.Checksum

    Gets the digest as a hexadecimal string. Once this function has been called the Checksum can no longer be updated with checksumUpdate. The hexadecimal characters will be lower case. Since: 2.16

  3. checksumNew :: (HasCallStack, MonadIO m) => ChecksumType -> m (Maybe Checksum)

    gi-glib GI.GLib.Structs.Checksum

    Creates a new Checksum, using the checksum algorithm checksumType. If the checksumType is not known, Nothing is returned. A Checksum can be used to compute the checksum, or digest, of an arbitrary binary blob, using different hashing algorithms. A Checksum works by feeding a binary blob through checksumUpdate until there is data to be checked; the digest can then be extracted using checksumGetString, which will return the checksum as a hexadecimal string; or g_checksum_get_digest(), which will return a vector of raw bytes. Once either checksumGetString or g_checksum_get_digest() have been called on a Checksum, the checksum will be closed and it won't be possible to call checksumUpdate on it anymore. Since: 2.16

  4. checksumReset :: (HasCallStack, MonadIO m) => Checksum -> m ()

    gi-glib GI.GLib.Structs.Checksum

    Resets the state of the checksum back to its initial state. Since: 2.18

  5. checksumTypeGetLength :: (HasCallStack, MonadIO m) => ChecksumType -> m Int64

    gi-glib GI.GLib.Structs.Checksum

    Gets the length in bytes of digests of type checksumType Since: 2.16

  6. checksumUpdate :: (HasCallStack, MonadIO m) => Checksum -> ByteString -> m ()

    gi-glib GI.GLib.Structs.Checksum

    Feeds data into an existing Checksum. The checksum must still be open, that is checksumGetString or g_checksum_get_digest() must not have been called on checksum. Since: 2.16

  7. optionContextGetSummary :: (HasCallStack, MonadIO m) => OptionContext -> m Text

    gi-glib GI.GLib.Structs.OptionContext

    Returns the summary. See optionContextSetSummary. Since: 2.12

  8. optionContextSetSummary :: (HasCallStack, MonadIO m) => OptionContext -> Maybe Text -> m ()

    gi-glib GI.GLib.Structs.OptionContext

    Adds a string to be displayed in --help output before the list of options. This is typically a summary of the program functionality. Note that the summary is translated (see optionContextSetTranslateFunc and optionContextSetTranslationDomain). Since: 2.12

  9. clientWantSessionResume :: ClientParams -> Maybe (SessionID, SessionData)

    tls Network.TLS

    try to establish a connection using this session for TLS 1.2/TLS 1.3. This can be used for TLS 1.3 but for backward compatibility purpose only. Use clientWantSessionResume13 instead for TLS 1.3. Default: Nothing

  10. clientWantSessionResumeList :: ClientParams -> [(SessionID, SessionData)]

    tls Network.TLS

    try to establish a connection using one of this sessions especially for TLS 1.3. This take precedence over clientWantSessionResume. For convenience, this can be specified for TLS 1.2 but only the first entry is used. Default: '[]'

Page 104 of many | Previous | Next