array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'de', ), 'this' => array ( 0 => 'function.sodium-crypto-box-publickey-from-secretkey.php', 1 => 'sodium_crypto_box_publickey_from_secretkey', 2 => 'Calculate the public key from a secret key', ), 'up' => array ( 0 => 'ref.sodium.php', 1 => 'Sodium Funktionen', ), 'prev' => array ( 0 => 'function.sodium-crypto-box-publickey.php', 1 => 'sodium_crypto_box_publickey', ), 'next' => array ( 0 => 'function.sodium-crypto-box-seal.php', 1 => 'sodium_crypto_box_seal', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/sodium/functions/sodium-crypto-box-publickey-from-secretkey.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>

sodium_crypto_box_publickey_from_secretkey

(PHP 7 >= 7.2.0, PHP 8)

sodium_crypto_box_publickey_from_secretkeyCalculate the public key from a secret key

Beschreibung

sodium_crypto_box_publickey_from_secretkey(#[\SensitiveParameter] 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 paramaters; abbreviated Ed25519).

Parameter-Liste

secret_key

X25519 secret key

Rückgabewerte

X25519 public key.