sodium_crypto_pwhash_scryptsalsa208sha256

Advertisement

Syntax Syntax

sodium_crypto_pwhash_scryptsalsa208sha256( int $outlen, string $passwd, string $salt, int $opslimit, int $memlimit )

Parameters Parameters

$outlen

(Required)

$passwd

(Required)

$salt

(Required)

$opslimit

(Required)

$memlimit

(Required)

Return Return

(string)

Source Source

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

    function sodium_crypto_pwhash_scryptsalsa208sha256($outlen, $passwd, $salt, $opslimit, $memlimit)
    {
        return ParagonIE_Sodium_Compat::crypto_pwhash_scryptsalsa208sha256($outlen, $passwd, $salt, $opslimit, $memlimit);
    }

Advertisement

See also See also

Advertisement

Leave a Reply