• Home
  • Raw
  • Download

Lines Matching refs:authkey

563    .. attribute:: authkey
572 setting :attr:`authkey` to another byte string.
1610 .. class:: BaseManager([address[, authkey]])
1620 *authkey* is the authentication key which will be used to check the
1622 *authkey* is ``None`` then ``current_process().authkey`` is used.
1623 Otherwise *authkey* is used and it must be a byte string.
1637 >>> manager = BaseManager(address=('', 50000), authkey=b'abc')
1648 >>> m = BaseManager(address=('127.0.0.1', 50000), authkey=b'abc')
1857 >>> m = QueueManager(address=('', 50000), authkey=b'abracadabra')
1866 >>> m = QueueManager(address=('foo.bar.org', 50000), authkey=b'abracadabra')
1876 >>> m = QueueManager(address=('foo.bar.org', 50000), authkey=b'abracadabra')
1900 >>> m = QueueManager(address=('', 50000), authkey=b'abracadabra')
2299 .. function:: deliver_challenge(connection, authkey)
2304 If the reply matches the digest of the message using *authkey* as the key
2308 .. function:: answer_challenge(connection, authkey)
2310 Receive a message, calculate the digest of the message using *authkey* as the
2316 .. function:: Client(address[, family[, authkey]])
2325 If *authkey* is given and not None, it should be a byte string and will be
2327 authentication is done if *authkey* is None.
2331 .. class:: Listener([address[, family[, backlog[, authkey]]]])
2360 If *authkey* is given and not None, it should be a byte string and will be
2362 authentication is done if *authkey* is None.
2441 with Listener(address, authkey=b'secret password') as listener:
2459 with Client(address, authkey=b'secret password') as conn:
2542 return value of ``current_process().authkey`` is used (see