[ SYSTEM ]: Windows NT SWD-ELEARN-11 10.0 build 20348 (Windows Server 2016) AMD64
[ SERVER ]: Apache/2.4.41 (Win64) OpenSSL/1.1.1c PHP/7.3.9 | PHP: 7.3.9
[ USER ]: Elearn | IP: 10.201.204.156
GEFORCE FILE MANAGER
/
C:
/
xampp
/
htdocs
/
Ajaji
/
backup
/
libraries
/
src
/
Crypt
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📁 Cipher
SET
[ DEL ]
📁 Password
SET
[ DEL ]
📄 Crypt.php
5,869 B
SET
[ EDIT ]
|
[ DEL ]
📄 CryptPassword.php
1,717 B
SET
[ EDIT ]
|
[ DEL ]
📄 Key.php
1,523 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: CryptPassword.php
<?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; defined('JPATH_PLATFORM') or die; /** * Joomla Platform Password Hashing Interface * * @since 3.0.1 * @deprecated 4.0 Use PHP 5.5's native password hashing API */ interface CryptPassword { const BLOWFISH = '$2y$'; const JOOMLA = 'Joomla'; const PBKDF = '$pbkdf$'; const MD5 = '$1$'; /** * Creates a password hash * * @param string $password The password to hash. * @param string $type The type of hash. This determines the prefix of the hashing function. * * @return string The hashed password. * * @since 3.0.1 * @deprecated 4.0 Use PHP 5.5's native password hashing API */ public function create($password, $type = null); /** * Verifies a password hash * * @param string $password The password to verify. * @param string $hash The password hash to check. * * @return boolean True if the password is valid, false otherwise. * * @since 3.0.1 * @deprecated 4.0 Use PHP 5.5's native password hashing API */ public function verify($password, $hash); /** * Sets a default prefix * * @param string $type The prefix to set as default * * @return void * * @since 3.1.4 * @deprecated 4.0 Use PHP 5.5's native password hashing API */ public function setDefaultType($type); /** * Gets the default type * * @return void * * @since 3.1.4 * @deprecated 4.0 Use PHP 5.5's native password hashing API */ public function getDefaultType(); }