Last updated
Last updated
Sodium provides an API to multiply a point on the Curve25519 curve.
This can be used as a building block to construct key exchange mechanisms, or more generally to compute a public key from a secret key.
On current libsodium versions, you generally want to use the API for key exchange instead.
Given a user’s secret key n
(crypto_scalarmult_SCALARBYTES
bytes), the crypto_scalarmult_base()
function computes the user’s public key and puts it into q
(crypto_scalarmult_BYTES
bytes).
crypto_scalarmult_BYTES
and crypto_scalarmult_SCALARBYTES
are provided for consistency, but it is safe to assume that crypto_scalarmult_BYTES == crypto_scalarmult_SCALARBYTES
.
This function can be used to compute a shared secret q
given a user’s secret key and another user’s public key.
n
is crypto_scalarmult_SCALARBYTES
bytes long, p
and the output are crypto_scalarmult_BYTES
bytes long.
q
represents the X coordinate of a point on the curve. As a result, the number of possible keys is limited to the group size (≈2^252), which is smaller than the key space.
For this reason, and to mitigate subtle attacks due to the fact many (p
, n
) pairs produce the same result, using the output of the multiplication q
directly as a shared key is not recommended.
A better way to compute a shared key is h(q ‖ pk1 ‖ pk2)
, with pk1
and pk2
being the public keys.
By doing so, each party can prove what exact public key they intended to perform a key exchange with (for a given public key, 11 other public keys producing the same shared secret can be trivially computed).
This can be achieved with the following code snippet:
If the intent is to create 256-bit keys (or less) for encryption, the final hash can also be set to output 512 bits: the first half can be used as a key to encrypt in one direction (for example from the server to the client), and the other half can be used in the other direction.
When using counters as nonces, having distinct keys allows the client and the server to safely send multiple messages without having to wait from an acknowledgment after each message.
kp->tx
is a key that the server can use in order to encrypt data sent to the client, and kp->rx
is a key that can be used in the opposite direction.
crypto_scalarmult_BYTES
crypto_scalarmult_SCALARBYTES
As X25519 encodes a field element that is always smaller than 2^255, the top bit is not used.
X25519 (ECDH over Curve25519) -