mirror of
https://github.com/php/php-src.git
synced 2026-04-17 21:11:02 +02:00
This patch adds missing newlines, trims multiple redundant final newlines into a single one, and trims redundant leading newlines in all *.phpt sections. According to POSIX, a line is a sequence of zero or more non-' <newline>' characters plus a terminating '<newline>' character. [1] Files should normally have at least one final newline character. C89 [2] and later standards [3] mention a final newline: "A source file that is not empty shall end in a new-line character, which shall not be immediately preceded by a backslash character." Although it is not mandatory for all files to have a final newline fixed, a more consistent and homogeneous approach brings less of commit differences issues and a better development experience in certain text editors and IDEs. [1] http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap03.html#tag_03_206 [2] https://port70.net/~nsz/c/c89/c89-draft.html#2.1.1.2 [3] https://port70.net/~nsz/c/c99/n1256.html#5.1.1.2
59 lines
1.8 KiB
PHP
59 lines
1.8 KiB
PHP
--TEST--
|
|
crypt() SHA-512
|
|
--FILE--
|
|
<?php
|
|
|
|
$tests = array(
|
|
1 => array(
|
|
'$6$saltstring',
|
|
'Hello world!',
|
|
'$6$saltstring$svn8UoSVapNtMuq1ukKS4tPQd8iKwSMHWjl/O817G3uBnIFNjnQJuesI68u4OTLiBFdcbYEdFCoEOfaS35inz1'
|
|
),
|
|
2 => array(
|
|
'$6$rounds=10000$saltstringsaltstring',
|
|
'Hello world!',
|
|
'$6$rounds=10000$saltstringsaltst$OW1/O6BYHV6BcXZu8QVeXbDWra3Oeqh0sbHbbMCVNSnCM/UrjmM0Dp8vOuZeHBy/YTBmSK6H9qs/y3RnOaw5v.'
|
|
),
|
|
3 => array(
|
|
'$6$rounds=5000$toolongsaltstring',
|
|
'This is just a test',
|
|
'$6$rounds=5000$toolongsaltstrin$lQ8jolhgVRVhY4b5pZKaysCLi0QBxGoNeKQzQ3glMhwllF7oGDZxUhx1yxdYcz/e1JSbq3y6JMxxl8audkUEm0'
|
|
),
|
|
4 => array(
|
|
'$6$rounds=1400$anotherlongsaltstring',
|
|
'a very much longer text to encrypt. This one even stretches over morethan one line.',
|
|
'$6$rounds=1400$anotherlongsalts$POfYwTEok97VWcjxIiSOjiykti.o/pQs.wPvMxQ6Fm7I6IoYN3CmLs66x9t0oSwbtEW7o7UmJEiDwGqd8p4ur1'
|
|
),
|
|
5 => array(
|
|
'$6$rounds=77777$short',
|
|
'we have a short salt string but not a short password',
|
|
'$6$rounds=77777$short$WuQyW2YR.hBNpjjRhpYD/ifIw05xdfeEyQoMxIXbkvr0gge1a1x3yRULJ5CCaUeOxFmtlcGZelFl5CxtgfiAc0'
|
|
),
|
|
6 => array(
|
|
'$6$rounds=123456$asaltof16chars..',
|
|
'a short string',
|
|
'$6$rounds=123456$asaltof16chars..$BtCwjqMJGx5hrJhZywWvt0RLE8uZ4oPwcelCjmw2kSYu.Ec6ycULevoBK25fs2xXgMNrCzIMVcgEJAstJeonj1'
|
|
),
|
|
7 => array(
|
|
'$6$rounds=10$roundstoolow',
|
|
'the minimum number is still observed',
|
|
'$6$rounds=1000$roundstoolow$kUMsbe306n21p9R.FRkW3IGn.S9NPN0x50YhH1xhLsPuWGsUSklZt58jaTfF4ZEQpyUNGc0dqbpBYYBaHHrsX.'
|
|
),
|
|
8 => array(
|
|
'$6$$bar$',
|
|
'foo',
|
|
'$6$$QMXjqd7rHQZPQ1yHsXkQqC1FBzDiVfTHXL.LaeDAeVV.IzMaV9VU4MQ8kPuZa2SOP1A0RPm772EaFYjpEJtdu.'
|
|
),
|
|
);
|
|
|
|
foreach ($tests as $iter => $t) {
|
|
$res = crypt($t[1], $t[0]);
|
|
if ($res != $t[2]) echo "Iteration $iter failed.
|
|
Expected: <$t[2]>
|
|
Got <$res>\n";
|
|
}
|
|
echo "Passes.";
|
|
?>
|
|
--EXPECT--
|
|
Passes.
|