Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@..
Decoded Output download
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Component\PasswordHasher\Tests\Hasher;
use PHPUnit\Framework\TestCase;
use Symfony\Component\PasswordHasher\Exception\InvalidPasswordException;
use Symfony\Component\PasswordHasher\Hasher\PlaintextPasswordHasher;
class PlaintextPasswordHasherTest extends TestCase
{
public function testVerify()
{
$hasher = new PlaintextPasswordHasher();
$this->assertTrue($hasher->verify('foo', 'foo', ''));
$this->assertFalse($hasher->verify('bar', 'foo', ''));
$this->assertFalse($hasher->verify('FOO', 'foo', ''));
$hasher = new PlaintextPasswordHasher(true);
$this->assertTrue($hasher->verify('foo', 'foo', ''));
$this->assertFalse($hasher->verify('bar', 'foo', ''));
$this->assertTrue($hasher->verify('FOO', 'foo', ''));
}
public function testHash()
{
$hasher = new PlaintextPasswordHasher();
$this->assertSame('foo', $hasher->hash('foo', ''));
}
public function testHashLength()
{
$this->expectException(InvalidPasswordException::class);
$hasher = new PlaintextPasswordHasher();
$hasher->hash(str_repeat('a', 5000), 'salt');
}
public function testCheckPasswordLength()
{
$hasher = new PlaintextPasswordHasher();
$this->assertFalse($hasher->verify('encoded', str_repeat('a', 5000), 'salt'));
}
public function testUsingBracketInSaltThrows()
{
$hasher = new PlaintextPasswordHasher();
$this->expectException(\LogicException::class);
$hasher->hash('password', '{');
}
}
?>
Did this file decode correctly?
Original Code
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Component\PasswordHasher\Tests\Hasher;
use PHPUnit\Framework\TestCase;
use Symfony\Component\PasswordHasher\Exception\InvalidPasswordException;
use Symfony\Component\PasswordHasher\Hasher\PlaintextPasswordHasher;
class PlaintextPasswordHasherTest extends TestCase
{
public function testVerify()
{
$hasher = new PlaintextPasswordHasher();
$this->assertTrue($hasher->verify('foo', 'foo', ''));
$this->assertFalse($hasher->verify('bar', 'foo', ''));
$this->assertFalse($hasher->verify('FOO', 'foo', ''));
$hasher = new PlaintextPasswordHasher(true);
$this->assertTrue($hasher->verify('foo', 'foo', ''));
$this->assertFalse($hasher->verify('bar', 'foo', ''));
$this->assertTrue($hasher->verify('FOO', 'foo', ''));
}
public function testHash()
{
$hasher = new PlaintextPasswordHasher();
$this->assertSame('foo', $hasher->hash('foo', ''));
}
public function testHashLength()
{
$this->expectException(InvalidPasswordException::class);
$hasher = new PlaintextPasswordHasher();
$hasher->hash(str_repeat('a', 5000), 'salt');
}
public function testCheckPasswordLength()
{
$hasher = new PlaintextPasswordHasher();
$this->assertFalse($hasher->verify('encoded', str_repeat('a', 5000), 'salt'));
}
public function testUsingBracketInSaltThrows()
{
$hasher = new PlaintextPasswordHasher();
$this->expectException(\LogicException::class);
$hasher->hash('password', '{');
}
}
Function Calls
None |
Stats
MD5 | 6ecde14b962342ce77db6bb335a2156c |
Eval Count | 0 |
Decode Time | 91 ms |