[ SYSTEM ]: Linux wordpress 6.1.0-41-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.158-1 (2025-11-09) x86_64
[ SERVER ]: Apache/2.4.66 (Debian) | PHP: 8.2.30
[ USER ]: www-data | IP: 172.19.30.54
GEFORCE FILE MANAGER
/
var
/
www
/
html
/
wordpress
/
wp-includes
/
sodium_compat
/
src
/
Core
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📁 AEGIS
SET
[ DEL ]
📁 AES
SET
[ DEL ]
📁 Base64
SET
[ DEL ]
📁 ChaCha20
SET
[ DEL ]
📁 Curve25519
SET
[ DEL ]
📁 Poly1305
SET
[ DEL ]
📁 SecretStream
SET
[ DEL ]
📄 AEGIS128L.php
3,668 B
SET
[ EDIT ]
|
[ DEL ]
📄 AEGIS256.php
3,598 B
SET
[ EDIT ]
|
[ DEL ]
📄 AES.php
15,885 B
SET
[ EDIT ]
|
[ DEL ]
📄 BLAKE2b.php
24,192 B
SET
[ EDIT ]
|
[ DEL ]
📄 ChaCha20.php
12,889 B
SET
[ EDIT ]
|
[ DEL ]
📄 Curve25519.php
143,641 B
SET
[ EDIT ]
|
[ DEL ]
📄 Ed25519.php
18,482 B
SET
[ EDIT ]
|
[ DEL ]
📄 HChaCha20.php
4,140 B
SET
[ EDIT ]
|
[ DEL ]
📄 HSalsa20.php
3,673 B
SET
[ EDIT ]
|
[ DEL ]
📄 Poly1305.php
1,576 B
SET
[ EDIT ]
|
[ DEL ]
📄 Ristretto255.php
21,884 B
SET
[ EDIT ]
|
[ DEL ]
📄 Salsa20.php
8,233 B
SET
[ EDIT ]
|
[ DEL ]
📄 SipHash.php
8,233 B
SET
[ EDIT ]
|
[ DEL ]
📄 Util.php
28,904 B
SET
[ EDIT ]
|
[ DEL ]
📄 X25519.php
8,413 B
SET
[ EDIT ]
|
[ DEL ]
📄 XChaCha20.php
3,320 B
SET
[ EDIT ]
|
[ DEL ]
📄 XSalsa20.php
1,371 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: 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 ) ); } }