{-# LINE 1 "OpenSSL/SSL.hsc" #-}
module OpenSSL.SSL
{-# LINE 2 "OpenSSL/SSL.hsc" #-}
    ( loadErrorStrings
    , addAllAlgorithms
    , libraryInit
    )
    where

foreign import ccall unsafe "SSL_load_error_strings"
        loadErrorStrings :: IO ()

foreign import ccall unsafe "HsOpenSSL_OpenSSL_add_all_algorithms"
        addAllAlgorithms :: IO ()

foreign import ccall unsafe "SSL_library_init"
        libraryInit :: IO ()