ParagonIE_Sodium_Core_ChaCha20_Ctx::offsetGet

Advertisement

Syntax Syntax

ParagonIE_Sodium_Core_ChaCha20_Ctx::offsetGet( int $offset )

Parameters Parameters

$offset

(Required)

Return Return

(mixed|null)

Source Source

File: wp-includes/sodium_compat/src/Core/ChaCha20/Ctx.php

    public function offsetGet($offset)
    {
        return isset($this->container[$offset])
            ? $this->container[$offset]
            : null;
    }

Advertisement

Advertisement

Leave a Reply