PHP 8.3.4 Released!

sodium_crypto_kx_client_session_keys

(PHP 7 >= 7.2.0, PHP 8)

sodium_crypto_kx_client_session_keysCalculate the client-side session keys.

Description

sodium_crypto_kx_client_session_keys(string $client_key_pair, string $server_key): array

Calculate the client-side session keys, using the X25519 + BLAKE2b key-exchange method.

Liste de paramètres

client_key_pair

A crypto_kx keypair, such as one generated by sodium_crypto_kx_keypair().

server_key

A crypto_kx public key.

Valeurs de retour

An array consisting of two strings. The first should be used for receiving data from the server. The second should be used for sending data to the server.

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top