sodium_crypto_auth

Advertisement

Syntax Syntax

sodium_crypto_auth( string $message, string $key )

Parameters Parameters

$message

(Required)

$key

(Required)

Return Return

(string)

Source Source

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

    function sodium_crypto_auth($message, $key)
    {
        return ParagonIE_Sodium_Compat::crypto_auth($message, $key);
    }

Advertisement

See also See also

Advertisement

Leave a Reply