Lines Matching refs:exchange
3 Diffie-Hellman key exchange
14 `Diffie-Hellman key exchange`_ (D–H) is a method that allows two parties
41 >>> # Generate a private key for use in the exchange.
47 >>> shared_key = server_private_key.exchange(peer_private_key.public_key())
58 >>> same_shared_key = peer_private_key.exchange(
70 DHE (or EDH), the ephemeral form of this exchange, is **strongly
73 each :meth:`~DHPrivateKey.exchange` when performing an DHE key exchange. An
85 >>> # Generate a private key for use in the exchange.
92 >>> shared_key = private_key.exchange(peer_public_key)
105 >>> shared_key_2 = private_key_2.exchange(peer_public_key_2)
225 .. method:: exchange(peer_public_key)
418 .. _`Diffie-Hellman key exchange`: https://en.wikipedia.org/wiki/Diffie%E2%80%93Hellman_key_exchange