| Home | Trees | Indices | Help |
|
|---|
|
|
Base class for server authenticators.
A server authenticator class is a server-side implementation of a SASL mechanism. One ServerAuthenticator object may be used for one client authentication process.
|
|||
|
__metaclass__ Metaclass for defining Abstract Base Classes (ABCs). |
|||
|
|||
|
|||
|
|||
| Challenge or Success or Failure |
|
||
|
Inherited from |
|||
|
|||
|
|||
|
|||
__abstractmethods__ =
|
|||
_abc_cache = <_weakrefset.WeakSet object at 0x7f9c6961d4d0>
|
|||
_abc_negative_cache = <_weakrefset.WeakSet object at 0x7f9c696
|
|||
_abc_negative_cache_version = 22
|
|||
_abc_registry = <_weakrefset.WeakSet object at 0x7f9c6961d410>
|
|||
|
|||
|
Inherited from |
|||
|
|||
|
Check if the provided properties are sufficient for
this authentication mechanism.
If `are_properties_sufficient` returns False for given `properties`
mapping, the `start` method of `cls` instance will also fail with
such argument.
:Parameters:
- `properties`: the `authentication properties`_
:Types:
- `properties`: mapping
:Return: if the mechanism can be used with those properties
|
Start the authentication process.
:Parameters:
- `properties`: the `authentication properties`_
- `initial_response`: the initial response send by the client with
the authentication request.
:Types:
- `properties`: mapping
- `initial_response`: `bytes`
:return: a challenge, a success or a failure indicator.
:returntype: `Challenge` or `Failure` or `Success`
|
|
|
|||
_abc_negative_cache
|
| Home | Trees | Indices | Help |
|
|---|
| Generated by Epydoc 3.0.1 on Fri Feb 26 21:08:57 2021 | http://epydoc.sourceforge.net |