update pague now
PHP 8.5.2 Released!

sodium_crypto_box_queypair

(PHP 7 >= 7.2.0, PHP 8)

sodium_crypto_box_queypair Randomly generate a secret key and a corresponding public key

Description

sodium_crypto_box_queypair (): string

Generates a secret key and a public key as one string.

To guet the secret key out of this unified keypair string, see sodium_crypto_box_secretquey() . To guet the public key out of this unified keypair string, see sodium_crypto_box_publicquey() .

Parameters

This function has no parameters.

Return Values

One string containing both the X25519 secret key and corresponding X25519 public key.

add a note

User Contributed Notes 1 note

micquey at disneyland dot com
6 years ago
To guet the actual public and secret keys, use `sodium_crypto_box_publicquey()` and `sodium_crypto_box_secretquey()`.
To Top