Copyright | Will Thompson Iñaki García Etxebarria and Jonas Platte |
---|---|
License | LGPL-2.1 |
Maintainer | Iñaki García Etxebarria (garetxe@gmail.com) |
Safe Haskell | None |
Language | Haskell2010 |
TLS (Transport Layer Security, aka SSL) and DTLS backend.
Since: 2.28
Synopsis
- newtype TlsBackend = TlsBackend (ManagedPtr TlsBackend)
- noTlsBackend :: Maybe TlsBackend
- class GObject o => IsTlsBackend o
- toTlsBackend :: (MonadIO m, IsTlsBackend o) => o -> m TlsBackend
- tlsBackendGetCertificateType :: (HasCallStack, MonadIO m, IsTlsBackend a) => a -> m GType
- tlsBackendGetClientConnectionType :: (HasCallStack, MonadIO m, IsTlsBackend a) => a -> m GType
- tlsBackendGetDefault :: (HasCallStack, MonadIO m) => m TlsBackend
- tlsBackendGetDefaultDatabase :: (HasCallStack, MonadIO m, IsTlsBackend a) => a -> m TlsDatabase
- tlsBackendGetDtlsClientConnectionType :: (HasCallStack, MonadIO m, IsTlsBackend a) => a -> m GType
- tlsBackendGetDtlsServerConnectionType :: (HasCallStack, MonadIO m, IsTlsBackend a) => a -> m GType
- tlsBackendGetFileDatabaseType :: (HasCallStack, MonadIO m, IsTlsBackend a) => a -> m GType
- tlsBackendGetServerConnectionType :: (HasCallStack, MonadIO m, IsTlsBackend a) => a -> m GType
- tlsBackendSupportsDtls :: (HasCallStack, MonadIO m, IsTlsBackend a) => a -> m Bool
- tlsBackendSupportsTls :: (HasCallStack, MonadIO m, IsTlsBackend a) => a -> m Bool
Exported types
newtype TlsBackend Source #
Memory-managed wrapper type.
Instances
GObject TlsBackend Source # | |
Defined in GI.Gio.Interfaces.TlsBackend gobjectType :: TlsBackend -> IO GType # | |
IsObject TlsBackend Source # | |
Defined in GI.Gio.Interfaces.TlsBackend | |
IsTlsBackend TlsBackend Source # | |
Defined in GI.Gio.Interfaces.TlsBackend |
noTlsBackend :: Maybe TlsBackend Source #
A convenience alias for Nothing
:: Maybe
TlsBackend
.
class GObject o => IsTlsBackend o Source #
Type class for types which can be safely cast to TlsBackend
, for instance with toTlsBackend
.
Instances
(GObject a, (UnknownAncestorError TlsBackend a :: Constraint)) => IsTlsBackend a Source # | |
Defined in GI.Gio.Interfaces.TlsBackend | |
IsTlsBackend TlsBackend Source # | |
Defined in GI.Gio.Interfaces.TlsBackend |
toTlsBackend :: (MonadIO m, IsTlsBackend o) => o -> m TlsBackend Source #
Cast to TlsBackend
, for types for which this is known to be safe. For general casts, use castTo
.
Methods
getCertificateType
tlsBackendGetCertificateType Source #
:: (HasCallStack, MonadIO m, IsTlsBackend a) | |
=> a |
|
-> m GType | Returns: the |
Gets the GType
of backend
's TlsCertificate
implementation.
Since: 2.28
getClientConnectionType
tlsBackendGetClientConnectionType Source #
:: (HasCallStack, MonadIO m, IsTlsBackend a) | |
=> a |
|
-> m GType | Returns: the |
Gets the GType
of backend
's TlsClientConnection
implementation.
Since: 2.28
getDefault
:: (HasCallStack, MonadIO m) | |
=> m TlsBackend | Returns: a |
Gets the default TlsBackend
for the system.
Since: 2.28
getDefaultDatabase
tlsBackendGetDefaultDatabase Source #
:: (HasCallStack, MonadIO m, IsTlsBackend a) | |
=> a |
|
-> m TlsDatabase | Returns: the default database, which should be unreffed when done. |
Gets the default TlsDatabase
used to verify TLS connections.
Since: 2.30
getDtlsClientConnectionType
tlsBackendGetDtlsClientConnectionType Source #
:: (HasCallStack, MonadIO m, IsTlsBackend a) | |
=> a |
|
-> m GType | Returns: the |
Gets the GType
of backend
’s DtlsClientConnection
implementation.
Since: 2.48
getDtlsServerConnectionType
tlsBackendGetDtlsServerConnectionType Source #
:: (HasCallStack, MonadIO m, IsTlsBackend a) | |
=> a |
|
-> m GType | Returns: the |
Gets the GType
of backend
’s DtlsServerConnection
implementation.
Since: 2.48
getFileDatabaseType
tlsBackendGetFileDatabaseType Source #
:: (HasCallStack, MonadIO m, IsTlsBackend a) | |
=> a |
|
-> m GType | Returns: the |
Gets the GType
of backend
's TlsFileDatabase
implementation.
Since: 2.30
getServerConnectionType
tlsBackendGetServerConnectionType Source #
:: (HasCallStack, MonadIO m, IsTlsBackend a) | |
=> a |
|
-> m GType | Returns: the |
Gets the GType
of backend
's TlsServerConnection
implementation.
Since: 2.28
supportsDtls
tlsBackendSupportsDtls Source #
:: (HasCallStack, MonadIO m, IsTlsBackend a) | |
=> a |
|
-> m Bool | Returns: whether DTLS is supported |
Checks if DTLS is supported. DTLS support may not be available even if TLS support is available, and vice-versa.
Since: 2.48
supportsTls
tlsBackendSupportsTls Source #
:: (HasCallStack, MonadIO m, IsTlsBackend a) | |
=> a |
|
-> m Bool | Returns: whether or not TLS is supported |
Checks if TLS is supported; if this returns False
for the default
TlsBackend
, it means no "real" TLS backend is available.
Since: 2.28