Danger
This is a "Hazardous Materials" module. You should ONLY use it if you're 100% absolutely sure that you know what you're doing because this module is full of land mines, dragons, and dinosaurs with laser guns.
Diffie-Hellman key exchange¶
Note
For security and performance reasons we suggest using
ECDH instead of DH
where possible.
Diffie-Hellman key exchange (D–H) is a method that allows two parties to jointly agree on a shared secret using an insecure channel.
Exchange Algorithm¶
For most applications the shared_key should be passed to a key
derivation function.
>>> from cryptography.hazmat.backends import default_backend
>>> from cryptography.hazmat.primitives.asymmetric import dh
>>> # Generate some parameters. These can be reused.
>>> parameters = dh.generate_parameters(generator=2, key_size=2048,
... backend=default_backend())
>>> # Generate a private key for use in the exchange.
>>> private_key = parameters.generate_private_key()
>>> # In a real handshake the peer_public_key will be received from the
>>> # other party. For this example we'll generate another private key and
>>> # get a public key from that. Note that in a DH handshake both peers
>>> # must agree on a common set of parameters.
>>> peer_public_key = parameters.generate_private_key().public_key()
>>> shared_key = private_key.exchange(peer_public_key)
>>> # For the next handshake we MUST generate another private key, but
>>> # we can reuse the parameters.
>>> private_key_2 = parameters.generate_private_key()
>>> peer_public_key_2 = parameters.generate_private_key().public_key()
>>> shared_key_2 = private_key_2.exchange(peer_public_key_2)
DHE (or EDH), the ephemeral form of this exchange, is strongly
preferred over simple DH and provides forward secrecy when used. You must
generate a new private key using generate_private_key() for
each exchange() when performing an DHE key exchange. This
is demonstrated in the previous example.
To assemble a DHParameters and a DHPublicKey from
primitive integers, you must first create the
DHParameterNumbers and DHPublicNumbers objects. For
example, if p, g, and y are int objects received from a
peer:
pn = dh.DHParameterNumbers(p, g)
parameters = pn.parameters(default_backend())
peer_public_numbers = dh.DHPublicNumbers(y, pn)
peer_public_key = peer_public_numbers.public_key(default_backend())
See also the DHBackend
API for additional functionality.
Group parameters¶
-
cryptography.hazmat.primitives.asymmetric.dh.generate_parameters(generator, key_size, backend)¶ New in version 0.9.
Generate a new DH parameter group for use with
backend.Parameters: - generator -- The
intto use as a generator. Must be 2 or 5. - key_size -- The bit length of the prime modulus to generate.
- backend -- A
DHBackendinstance.
Returns: DH parameters as a new instance of
DHParameters.Raises: ValueError -- If
key_sizeis not at least 512.- generator -- The
-
class
cryptography.hazmat.primitives.asymmetric.dh.DHParameters¶ New in version 0.9.
-
generate_private_key()¶ New in version 0.9.
Generate a DH private key. This method can be used to generate many new private keys from a single set of parameters.
Returns: An instance of DHPrivateKey.
-
parameter_numbers()¶ Return the numbers that make up this set of parameters.
Returns: A DHParameterNumbers.
-
parameter_bytes(encoding, format)¶ New in version 2.0.
Allows serialization of the parameters to bytes. Encoding (
PEMorDER) and format (PKCS3) are chosen to define the exact serialization.Parameters: - encoding -- A value from the
Encodingenum. - format -- A value from the
ParameterFormatenum. At the moment onlyPKCS3is supported.
Return bytes: Serialized parameters.
- encoding -- A value from the
-
-
class
cryptography.hazmat.primitives.asymmetric.dh.DHParametersWithSerialization¶ New in version 0.9.
Alias for
DHParameters.
Key interfaces¶
-
class
cryptography.hazmat.primitives.asymmetric.dh.DHPrivateKey¶ New in version 0.9.
A DH private key that is not an opaque key also implements
DHPrivateKeyWithSerializationto provide serialization methods.-
key_size¶ The bit length of the prime modulus.
-
public_key()¶ Return the public key associated with this private key.
Returns: A DHPublicKey.
-
parameters()¶ Return the parameters associated with this private key.
Returns: A DHParameters.
-
exchange(peer_public_key)¶ New in version 1.7.
Parameters: peer_public_key (DHPublicKey) -- The public key for the peer. Return bytes: The agreed key. The bytes are ordered in 'big' endian.
-
-
class
cryptography.hazmat.primitives.asymmetric.dh.DHPrivateKeyWithSerialization¶ New in version 0.9.
This interface contains additional methods relating to serialization. Any object with this interface also has all the methods from
DHPrivateKey.-
private_numbers()¶ Return the numbers that make up this private key.
Returns: A DHPrivateNumbers.
-
private_bytes(encoding, format, encryption_algorithm)¶ New in version 1.8.
Allows serialization of the key to bytes. Encoding (
PEMorDER), format (PKCS8) and encryption algorithm (such asBestAvailableEncryptionorNoEncryption) are chosen to define the exact serialization.Parameters: - encoding -- A value from the
Encodingenum. - format -- A value from the
PrivateFormatenum. - encryption_algorithm -- An instance of an object conforming to the
KeySerializationEncryptioninterface.
Return bytes: Serialized key.
- encoding -- A value from the
-
-
class
cryptography.hazmat.primitives.asymmetric.dh.DHPublicKey¶ New in version 0.9.
-
key_size¶ The bit length of the prime modulus.
-
parameters()¶ Return the parameters associated with this private key.
Returns: A DHParameters.
-
public_numbers()¶ Return the numbers that make up this public key.
Returns: A DHPublicNumbers.
-
public_bytes(encoding, format)¶ New in version 1.8.
Allows serialization of the key to bytes. Encoding (
PEMorDER) and format (SubjectPublicKeyInfo) are chosen to define the exact serialization.Parameters: - encoding -- A value from the
Encodingenum. - format -- A value from the
PublicFormatenum.
Return bytes: Serialized key.
- encoding -- A value from the
-
-
class
cryptography.hazmat.primitives.asymmetric.dh.DHPublicKeyWithSerialization¶ New in version 0.9.
Alias for
DHPublicKey.
Numbers¶
-
class
cryptography.hazmat.primitives.asymmetric.dh.DHParameterNumbers(p, g, q=None)¶ New in version 0.8.
The collection of integers that define a Diffie-Hellman group.
-
p¶ Type: int The prime modulus value.
-
g¶ Type: int The generator value. Must be 2 or greater.
-
q¶ New in version 1.8.
Type: int p subgroup order value.
-
parameters(backend)¶ New in version 1.7.
Parameters: backend -- An instance of DHBackend.Returns: A new instance of DHParameters.
-
-
class
cryptography.hazmat.primitives.asymmetric.dh.DHPrivateNumbers(x, public_numbers)¶ New in version 0.8.
The collection of integers that make up a Diffie-Hellman private key.
-
public_numbers¶ Type: DHPublicNumbersThe
DHPublicNumberswhich makes up the DH public key associated with this DH private key.
-
x¶ Type: int The private value.
-
private_key(backend)¶ New in version 1.7.
Parameters: backend -- An instance of DHBackend.Returns: A new instance of DHPrivateKey.
-
-
class
cryptography.hazmat.primitives.asymmetric.dh.DHPublicNumbers(y, parameter_numbers)¶ New in version 0.8.
The collection of integers that make up a Diffie-Hellman public key.
-
parameter_numbers¶ Type: DHParameterNumbersThe parameters for this DH group.
-
y¶ Type: int The public value.
-
public_key(backend)¶ New in version 1.7.
Parameters: backend -- An instance of DHBackend.Returns: A new instance of DHPublicKey.
-