Linux mail.vriendennsm.nl 6.1.0-51-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.177-1 (2026-07-16) x86_64
Apache/2.4.68 (Debian)
Server IP : 217.154.75.17 & Your IP : 216.73.217.16
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
vnsm /
libraries /
src /
Crypt /
Cipher /
Delete
Unzip
Name
Size
Permission
Date
Action
BlowfishCipher.php
961
B
-rwxr-xr-x
2023-07-08 16:23
CryptoCipher.php
3.17
KB
-rwxr-xr-x
2023-07-08 16:23
McryptCipher.php
4.45
KB
-rwxr-xr-x
2023-07-08 16:23
Rijndael256Cipher.php
975
B
-rwxr-xr-x
2023-07-08 16:23
SimpleCipher.php
5.27
KB
-rwxr-xr-x
2023-07-08 16:23
SodiumCipher.php
2.96
KB
-rwxr-xr-x
2023-07-08 16:23
TripleDesCipher.php
956
B
-rwxr-xr-x
2023-07-08 16:23
Save
Rename
<?php /** * Joomla! Content Management System * * @copyright (C) 2012 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ namespace Joomla\CMS\Crypt\Cipher; defined('JPATH_PLATFORM') or die; /** * Crypt cipher for Blowfish encryption, decryption and key generation. * * @since 3.0.0 * @deprecated 4.0 Without replacement use SodiumCipher */ class BlowfishCipher extends McryptCipher { /** * @var integer The mcrypt cipher constant. * @link https://www.php.net/manual/en/mcrypt.ciphers.php * @since 3.0.0 */ protected $type = MCRYPT_BLOWFISH; /** * @var integer The mcrypt block cipher mode. * @link https://www.php.net/manual/en/mcrypt.constants.php * @since 3.0.0 */ protected $mode = MCRYPT_MODE_CBC; /** * @var string The JCrypt key type for validation. * @since 3.0.0 */ protected $keyType = 'blowfish'; }