mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
8 lines
No EOL
227 B
PHP
8 lines
No EOL
227 B
PHP
<?php
|
|
|
|
$hash = '$2y$04$usesomesillystringfore7hnbRJHxXVLeakoG8K30oukPsA.ztMG';
|
|
$test = crypt("password", $hash);
|
|
$pass = $test == $hash;
|
|
|
|
echo "Test for functionality of compat library: " . ($pass ? "Pass" : "Fail");
|
|
echo "\n"; |