-- Hoogle documentation, generated by Haddock -- See Hoogle, http://www.haskell.org/hoogle/ -- | Haskell implementation of openssh protocol primitives. -- -- This is a library collecting openssh protocol primitives using -- cereal. @package openssh-protocol @version 0.0.1 -- | OpenSSH protocol primitives as defined by -- https://www.ietf.org/rfc/rfc4251.txt. module Crypto.OpenSSH.Protocol.Decode text :: Get Text string :: Get ByteString uint32 :: Get Word32 uint64 :: Get Word64 mpint :: Get Integer time :: Get POSIXTime utc :: Get UTCTime -- | OpenSSH protocol primitives as defined by -- https://www.ietf.org/rfc/rfc4251.txt. module Crypto.OpenSSH.Protocol.Encode text :: Text -> Put string :: ByteString -> Put uint32 :: Word32 -> Put uint64 :: Word64 -> Put mpint :: Integer -> Put time :: POSIXTime -> Put utc :: UTCTime -> Put