php8.5
Home/ Manual/ sodium / functions/ sodium_crypto_box_publickey_from_secretkey

sodium_crypto_box_publickey_from_secretkey

PHP function Edit on GitHub ✎

(PHP 7 >= 7.2.0, PHP 8)

Calculate the public key from a secret key

Description

sodium_crypto_box_publickey_from_secretkey(string $secret_key): string

Given a secret key, calculate the corresponding public key.

This only works with the type of keys intended for use with crypto_box() (which uses Elliptic Curve Diffie-Hellman over the Montgomery curve, Curve25519; abbreviated as X25519), not crypto_sign() (which uses Edwards Digital Signature Algorithm over the Edwards Curve with the corresponding parameters; abbreviated Ed25519).

Parameters

secret_key

X25519 secret key

Return Values

X25519 public key.

Source: reference/sodium/functions/sodium-crypto-box-publickey-from-secretkey.xml · from the official PHP manual (php/doc-en)