!C99Shell v. 2.1 [PHP 8 Update] [02.02.2022]!

Software: Apache/2.4.53 (Unix) OpenSSL/1.1.1o PHP/7.4.29 mod_perl/2.0.12 Perl/v5.34.1. PHP/7.4.29 

uname -a: Linux vps-2738122-x 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64 

uid=1(daemon) gid=1(daemon) grupos=1(daemon) 

Safe-mode: OFF (not secure)

/opt/lampp/phpmyadmin/vendor/paragonie/sodium_compat/src/Core/Curve25519/   drwxr-xr-x
Free 13.54 GB of 61.93 GB (21.87%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     Fe.php (3.02 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

if (class_exists('ParagonIE_Sodium_Core_Curve25519_Fe'false)) {
    return;
}

/**
 * Class ParagonIE_Sodium_Core_Curve25519_Fe
 *
 * This represents a Field Element
 */
class ParagonIE_Sodium_Core_Curve25519_Fe implements ArrayAccess
{
    
/**
     * @var array<int, int>
     */
    
protected $container = array();

    
/**
     * @var int
     */
    
protected $size 10;

    
/**
     * @internal You should not use this directly from another application
     *
     * @param array<int, int> $array
     * @param bool $save_indexes
     * @return self
     */
    
public static function fromArray($array$save_indexes null)
    {
        
$count count($array);
        if (
$save_indexes) {
            
$keys array_keys($array);
        } else {
            
$keys range(0$count 1);
        }
        
$array array_values($array);
        
/** @var array<int, int> $keys */

        
$obj = new ParagonIE_Sodium_Core_Curve25519_Fe();
        if (
$save_indexes) {
            for (
$i 0$i $count; ++$i) {
                
$obj->offsetSet($keys[$i], $array[$i]);
            }
        } else {
            for (
$i 0$i $count; ++$i) {
                
$obj->offsetSet($i$array[$i]);
            }
        }
        return 
$obj;
    }

    
/**
     * @internal You should not use this directly from another application
     *
     * @param int|null $offset
     * @param int $value
     * @return void
     * @psalm-suppress MixedArrayOffset
     */
    #[ReturnTypeWillChange]
    
public function offsetSet($offset$value)
    {
        if (!
is_int($value)) {
            throw new 
InvalidArgumentException('Expected an integer');
        }
        if (
is_null($offset)) {
            
$this->container[] = $value;
        } else {
            
$this->container[$offset] = $value;
        }
    }

    
/**
     * @internal You should not use this directly from another application
     *
     * @param int $offset
     * @return bool
     * @psalm-suppress MixedArrayOffset
     */
    #[ReturnTypeWillChange]
    
public function offsetExists($offset)
    {
        return isset(
$this->container[$offset]);
    }

    
/**
     * @internal You should not use this directly from another application
     *
     * @param int $offset
     * @return void
     * @psalm-suppress MixedArrayOffset
     */
    #[ReturnTypeWillChange]
    
public function offsetUnset($offset)
    {
        unset(
$this->container[$offset]);
    }

    
/**
     * @internal You should not use this directly from another application
     *
     * @param int $offset
     * @return int
     * @psalm-suppress MixedArrayOffset
     */
    #[ReturnTypeWillChange]
    
public function offsetGet($offset)
    {
        if (!isset(
$this->container[$offset])) {
            
$this->container[$offset] = 0;
        }
        return (int) (
$this->container[$offset]);
    }

    
/**
     * @internal You should not use this directly from another application
     *
     * @return array
     */
    
public function __debugInfo()
    {
        return array(
implode(', '$this->container));
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.1 [PHP 8 Update] [02.02.2022] maintained byC99Shell Github | Generation time: 0.6761 ]--