1--TEST--
2Bug #50052 (Different Hashes on Windows and Linux on wrong Salt size)
3--FILE--
4<?php
5$salt = '$1$f+uslYF01$';
6$password = 'test';
7echo $salt . "\n";
8echo crypt($password,$salt) . "\n";
9?>
10--EXPECT--
11$1$f+uslYF01$
12$1$f+uslYF0$orVloNmKSLvOeswusE0bY.
13