crypto_pwhash

Advertisement

Syntax Syntax

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

Parameters Parameters

$outlen

(int) (Required)

$passwd

(string) (Required)

$salt

(string) (Required)

$opslimit

(int) (Required)

$memlimit

(int) (Required)

Return Return

(string)

Source Source

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

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

Advertisement

See also See also

Advertisement

Leave a Reply