You are here

public function ParagonIE_Sodium_Core_ChaCha20_Ctx::offsetGet in Automatic Updates 8

Same name and namespace in other branches
  1. 7 vendor/paragonie/sodium_compat/src/Core/ChaCha20/Ctx.php \ParagonIE_Sodium_Core_ChaCha20_Ctx::offsetGet()

@internal You should not use this directly from another application

@psalm-suppress MixedArrayOffset

Parameters

int $offset:

Return value

mixed|null

File

vendor/paragonie/sodium_compat/src/Core/ChaCha20/Ctx.php, line 113

Class

ParagonIE_Sodium_Core_ChaCha20_Ctx
Class ParagonIE_Sodium_Core_ChaCha20_Ctx

Code

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