blob: 11d3ad6b19f43ac6835e4fe1e7883abd0fad2343 (
plain)
1
2
3
4
5
6
7
8
9
10
|
"""Utilities for ZAP authentication.
To run authentication in a background thread, see :mod:`zmq.auth.thread`.
For integration with the tornado eventloop, see :mod:`zmq.auth.ioloop`.
.. versionadded:: 14.1
"""
from .base import *
from .certs import *
|