Neos\Flow\Tests\Unit\Security\Cryptography\BCryptHashingStrategyTest::systemSupportsBlowfishCryptMethod PHP Method

systemSupportsBlowfishCryptMethod() public method

Test the implementation using the sample hashes shown on http://php.net/crypt
    public function systemSupportsBlowfishCryptMethod()
    {
        $this->assertTrue(\CRYPT_BLOWFISH === 1);
        $cryptResult = crypt('rasmuslerdorf', '$2a$07$usesomesillystringforsalt$');
        $this->assertEquals('$2a$07$usesomesillystringfore2uDLvp1Ii2e./U9C8sBjqp8I90dH6hi', $cryptResult);
    }