GRAYBYTE WORDPRESS FILE MANAGER2696

Server IP : 192.250.235.76 / Your IP : 45.90.210.12
System : Linux s2968.sgp1.stableserver.net 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64
PHP Version : 8.2.29
Disable Function : NONE
cURL : ON | WGET : ON | Sudo : OFF | Pkexec : OFF

HOME

/home/tawsifschoice/borkaa.tawsifschoice.com/
1902110114081995

GRAYBYTE WORDPRESS FILE MANAGER2130

Server IP : 198.54.116.172 / Your IP : 216.73.216.36
System : Linux server322.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
PHP Version : 7.4.33
Disable Function : mail
cURL : ON | WGET : ON | Sudo : OFF | Pkexec : OFF

HOME

/home/sadasgfe/c.sadatrend.com/wp-includes/sodium_compat/src/Core/Curve25519/
Upload Files :
Current_dir [ Writeable ] Document_root [ Writeable ]

Command :


Current File : /home/sadasgfe/c.sadatrend.com/wp-includes/sodium_compat/src/Core/Curve25519//Fe.php
<?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 int
     */
    public $e0 = 0;

    /**
     * @var int
     */
    public $e1 = 0;

    /**
     * @var int
     */
    public $e2 = 0;

    /**
     * @var int
     */
    public $e3 = 0;

    /**
     * @var int
     */
    public $e4 = 0;

    /**
     * @var int
     */
    public $e5 = 0;

    /**
     * @var int
     */
    public $e6 = 0;

    /**
     * @var int
     */
    public $e7 = 0;

    /**
     * @var int
     */
    public $e8 = 0;

    /**
     * @var int
     */
    public $e9 = 0;

    /**
     * @param int $e0
     * @param int $e1
     * @param int $e2
     * @param int $e3
     * @param int $e4
     * @param int $e5
     * @param int $e6
     * @param int $e7
     * @param int $e8
     * @param int $e9
     */
    public function __construct(
        $e0 = 0,
        $e1 = 0,
        $e2 = 0,
        $e3 = 0,
        $e4 = 0,
        $e5 = 0,
        $e6 = 0,
        $e7 = 0,
        $e8 = 0,
        $e9 = 0
    ) {
        $this->e0 = $e0;
        $this->e1 = $e1;
        $this->e2 = $e2;
        $this->e3 = $e3;
        $this->e4 = $e4;
        $this->e5 = $e5;
        $this->e6 = $e6;
        $this->e7 = $e7;
        $this->e8 = $e8;
        $this->e9 = $e9;
    }

    /**
     * @internal You should not use this directly from another application
     *
     * @param array $array
     * @return self
     */
    public static function fromArray($array)
    {
        $obj = new ParagonIE_Sodium_Core_Curve25519_Fe();
        $obj->e0 = isset($array[0]) ? (int) $array[0] : 0;
        $obj->e1 = isset($array[1]) ? (int) $array[1] : 0;
        $obj->e2 = isset($array[2]) ? (int) $array[2] : 0;
        $obj->e3 = isset($array[3]) ? (int) $array[3] : 0;
        $obj->e4 = isset($array[4]) ? (int) $array[4] : 0;
        $obj->e5 = isset($array[5]) ? (int) $array[5] : 0;
        $obj->e6 = isset($array[6]) ? (int) $array[6] : 0;
        $obj->e7 = isset($array[7]) ? (int) $array[7] : 0;
        $obj->e8 = isset($array[8]) ? (int) $array[8] : 0;
        $obj->e9 = isset($array[9]) ? (int) $array[9] : 0;
        return $obj;
    }

    /**
     * @internal You should not use this directly from another application
     *
     * @param int|null $offset
     * @param int $value
     * @return void
     */
    #[ReturnTypeWillChange]
    public function offsetSet($offset, $value)
    {
        if (!is_int($value)) {
            throw new InvalidArgumentException('Expected an integer');
        }
        switch ($offset) {
            case 0:
                $this->e0 = $value;
                break;
            case 1:
                $this->e1 = $value;
                break;
            case 2:
                $this->e2 = $value;
                break;
            case 3:
                $this->e3 = $value;
                break;
            case 4:
                $this->e4 = $value;
                break;
            case 5:
                $this->e5 = $value;
                break;
            case 6:
                $this->e6 = $value;
                break;
            case 7:
                $this->e7 = $value;
                break;
            case 8:
                $this->e8 = $value;
                break;
            case 9:
                $this->e9 = $value;
                break;
            default:
                throw new OutOfBoundsException('Index out of bounds');
        }
    }

    /**
     * @internal You should not use this directly from another application
     *
     * @param int $offset
     * @return bool
     */
    #[ReturnTypeWillChange]
    public function offsetExists($offset)
    {
        return $offset >= 0 && $offset < 10;
    }

    /**
     * @internal You should not use this directly from another application
     *
     * @param int $offset
     * @return void
     */
    #[ReturnTypeWillChange]
    public function offsetUnset($offset)
    {
        switch ($offset) {
            case 0:
                $this->e0 = 0;
                break;
            case 1:
                $this->e1 = 0;
                break;
            case 2:
                $this->e2 = 0;
                break;
            case 3:
                $this->e3 = 0;
                break;
            case 4:
                $this->e4 = 0;
                break;
            case 5:
                $this->e5 = 0;
                break;
            case 6:
                $this->e6 = 0;
                break;
            case 7:
                $this->e7 = 0;
                break;
            case 8:
                $this->e8 = 0;
                break;
            case 9:
                $this->e9 = 0;
                break;
            default:
                throw new OutOfBoundsException('Index out of bounds');
        }
    }

    /**
     * @internal You should not use this directly from another application
     *
     * @param int $offset
     * @return int
     */
    #[ReturnTypeWillChange]
    public function offsetGet($offset)
    {
        switch ($offset) {
            case 0:
                return (int) $this->e0;
            case 1:
                return (int) $this->e1;
            case 2:
                return (int) $this->e2;
            case 3:
                return (int) $this->e3;
            case 4:
                return (int) $this->e4;
            case 5:
                return (int) $this->e5;
            case 6:
                return (int) $this->e6;
            case 7:
                return (int) $this->e7;
            case 8:
                return (int) $this->e8;
            case 9:
                return (int) $this->e9;
            default:
                throw new OutOfBoundsException('Index out of bounds');
        }
    }

    /**
     * @internal You should not use this directly from another application
     *
     * @return array
     */
    public function __debugInfo()
    {
        return array(
            implode(', ', array(
                $this->e0, $this->e1, $this->e2, $this->e3, $this->e4,
                $this->e5, $this->e6, $this->e7, $this->e8, $this->e9
            ))
        );
    }
}

[ Back ]
Name
Size
Last Modified
Owner / Group
Permissions
Options
..
--
December 26 2025 13:18:56
sadasgfe / sadasgfe
0755
Ge
--
February 11 2025 13:18:35
sadasgfe / sadasgfe
0755
Fe.php
6.203 KB
December 03 2025 06:56:40
sadasgfe / sadasgfe
0644
H.php
107.868 KB
May 25 2021 23:25:58
sadasgfe / sadasgfe
0644
README.md
0.213 KB
March 21 2019 14:26:52
sadasgfe / sadasgfe
0644
error_log
0.633 KB
December 30 2025 22:58:17
sadasgfe / sadasgfe
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2025
CONTACT ME
Static GIF