crypto_box

Advertisement

Syntax Syntax

crypto_box( string $message, string $nonce, string $kp )

Parameters Parameters

$message

(Required)

$nonce

(Required)

$kp

(Required)

Return Return

(string)

Source Source

File: wp-includes/sodium_compat/lib/sodium_compat.php

    function crypto_box($message, $nonce, $kp)
    {
        return ParagonIE_Sodium_Compat::crypto_box($message, $nonce, $kp);
    }

Advertisement

See also See also

Advertisement

Leave a Reply