sodium_crypto_box

Advertisement

Syntax Syntax

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

Parameters Parameters

$message

(string) (Required)

$nonce

(string) (Required)

$kp

(string) (Required)

Return Return

(string)

Source Source

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

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

Advertisement

See also See also

Advertisement

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.