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.
readPublicKey :: String -> IO SomePublicKeyHsOpenSSL OpenSSL.PEM readPublicKey pem reads a public key in PEM string.
-
HsOpenSSL OpenSSL.PEM readX509 pem reads an X.509 certificate in PEM string.
readX509Req :: String -> IO X509ReqHsOpenSSL OpenSSL.PEM readX509Req reads a PKCS#10 certificate request in PEM string.
readSmime :: String -> IO (Pkcs7, Maybe String)HsOpenSSL OpenSSL.PKCS7 readSmime parses S/MIME message.
readPtr :: SSL -> Ptr a -> Int -> IO IntHsOpenSSL OpenSSL.Session Read some data into a raw pointer buffer. Retrns the number of bytes read.
readDerX509 :: ByteString -> IO X509HsOpenSSL OpenSSL.X509 readDerX509 der reads in a certificate.
readonly_ :: Text -> Attributelucid Lucid.Html5 The readonly attribute.
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.
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.
readFileAsync :: (Size size, Storable a) => FilePath -> IO (IOError, Vector size a)storablevector Data.StorableVector.Lazy.Typed No documentation available.