Hoogle Search

Within LTS Haskell 24.32 (ghc-9.10.3)

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

  1. readPublicKey :: String -> IO SomePublicKey

    HsOpenSSL OpenSSL.PEM

    readPublicKey pem reads a public key in PEM string.

  2. readX509 :: String -> IO X509

    HsOpenSSL OpenSSL.PEM

    readX509 pem reads an X.509 certificate in PEM string.

  3. readX509Req :: String -> IO X509Req

    HsOpenSSL OpenSSL.PEM

    readX509Req reads a PKCS#10 certificate request in PEM string.

  4. readSmime :: String -> IO (Pkcs7, Maybe String)

    HsOpenSSL OpenSSL.PKCS7

    readSmime parses S/MIME message.

  5. readPtr :: SSL -> Ptr a -> Int -> IO Int

    HsOpenSSL OpenSSL.Session

    Read some data into a raw pointer buffer. Retrns the number of bytes read.

  6. readDerX509 :: ByteString -> IO X509

    HsOpenSSL OpenSSL.X509

    readDerX509 der reads in a certificate.

  7. readonly_ :: Text -> Attribute

    lucid Lucid.Html5

    The readonly attribute.

  8. readFile :: Storable a => FilePath -> IO (Vector a)

    storablevector Data.StorableVector

    Read an entire file strictly into a Vector. This is far more efficient than reading the characters into a String and then using pack. It also may be more efficient than opening the file and reading it using hGet. Files are read using 'binary mode' on Windows.

  9. readFileAsync :: Storable a => ChunkSize -> FilePath -> IO (IOError, Vector a)

    storablevector Data.StorableVector.Lazy

    The file can only closed after all values are consumed. That is you must always assert that you consume all elements of the stream, and that no values are missed due to lazy evaluation. This requirement makes this function useless in many applications.

  10. readFileAsync :: (Size size, Storable a) => FilePath -> IO (IOError, Vector size a)

    storablevector Data.StorableVector.Lazy.Typed

    No documentation available.

Page 126 of many | Previous | Next