CakeFest 2024: The Official CakePHP Conference

sodium_crypto_kx_client_session_keys

(PHP 7 >= 7.2.0, PHP 8)

sodium_crypto_kx_client_session_keysCalculate the client-side session keys.

Descripción

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.

Parámetros

client_key_pair

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

server_key

A crypto_kx public key.

Valores devueltos

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