1--TEST-- 2crypt() SHA-512 3--SKIPIF-- 4<?php 5if (!function_exists('crypt') || !defined("CRYPT_SHA512")) { 6 die("SKIP crypt()-sha512 is not available"); 7} 8?> 9--FILE-- 10<?php 11 12$tests = array( 13 1 => array( 14 '$6$saltstring', 15 'Hello world!', 16 '$6$saltstring$svn8UoSVapNtMuq1ukKS4tPQd8iKwSMHWjl/O817G3uBnIFNjnQJuesI68u4OTLiBFdcbYEdFCoEOfaS35inz1' 17 ), 18 2 => array( 19 '$6$rounds=10000$saltstringsaltstring', 20 'Hello world!', 21 '$6$rounds=10000$saltstringsaltst$OW1/O6BYHV6BcXZu8QVeXbDWra3Oeqh0sbHbbMCVNSnCM/UrjmM0Dp8vOuZeHBy/YTBmSK6H9qs/y3RnOaw5v.' 22 ), 23 3 => array( 24 '$6$rounds=5000$toolongsaltstring', 25 'This is just a test', 26 '$6$rounds=5000$toolongsaltstrin$lQ8jolhgVRVhY4b5pZKaysCLi0QBxGoNeKQzQ3glMhwllF7oGDZxUhx1yxdYcz/e1JSbq3y6JMxxl8audkUEm0' 27 ), 28 4 => array( 29 '$6$rounds=1400$anotherlongsaltstring', 30 'a very much longer text to encrypt. This one even stretches over morethan one line.', 31 '$6$rounds=1400$anotherlongsalts$POfYwTEok97VWcjxIiSOjiykti.o/pQs.wPvMxQ6Fm7I6IoYN3CmLs66x9t0oSwbtEW7o7UmJEiDwGqd8p4ur1' 32 ), 33 5 => array( 34 '$6$rounds=77777$short', 35 'we have a short salt string but not a short password', 36 '$6$rounds=77777$short$WuQyW2YR.hBNpjjRhpYD/ifIw05xdfeEyQoMxIXbkvr0gge1a1x3yRULJ5CCaUeOxFmtlcGZelFl5CxtgfiAc0' 37 ), 38 6 => array( 39 '$6$rounds=123456$asaltof16chars..', 40 'a short string', 41 '$6$rounds=123456$asaltof16chars..$BtCwjqMJGx5hrJhZywWvt0RLE8uZ4oPwcelCjmw2kSYu.Ec6ycULevoBK25fs2xXgMNrCzIMVcgEJAstJeonj1' 42 ), 43 7 => array( 44 '$6$rounds=10$roundstoolow', 45 'the minimum number is still observed', 46 '$6$rounds=1000$roundstoolow$kUMsbe306n21p9R.FRkW3IGn.S9NPN0x50YhH1xhLsPuWGsUSklZt58jaTfF4ZEQpyUNGc0dqbpBYYBaHHrsX.' 47 ), 48 8 => array( 49 '$6$$bar$', 50 'foo', 51 '$6$$QMXjqd7rHQZPQ1yHsXkQqC1FBzDiVfTHXL.LaeDAeVV.IzMaV9VU4MQ8kPuZa2SOP1A0RPm772EaFYjpEJtdu.' 52 ), 53); 54 55foreach ($tests as $iter => $t) { 56 $res = crypt($t[1], $t[0]); 57 if ($res != $t[2]) echo "Iteration $iter failed. 58Expected: <$t[2]> 59Got <$res>\n"; 60} 61echo "Passes."; 62?> 63--EXPECTF-- 64Passes. 65