memzero

The timeline below displays how wordpress function memzero has changed across different WordPress versions. If a version is not listed, refer to the next available version below.

WordPress Version: 6.1

/**
 * @see ParagonIE_Sodium_Compat::memzero()
 * @param string $str
 * @return void
 * @throws \SodiumException
 * @throws \TypeError
 *
 * @psalm-suppress MissingParamType
 * @psalm-suppress MissingReturnType
 * @psalm-suppress ReferenceConstraintViolation
 */
function memzero(&$str)
{
    ParagonIE_Sodium_Compat::memzero($str);
}

WordPress Version: 5.2

/**
 * @see ParagonIE_Sodium_Compat::memzero()
 * @param string $str
 * @return void
 * @throws \SodiumException
 * @throws \TypeError
 */
function memzero(&$str)
{
    ParagonIE_Sodium_Compat::memzero($str);
}