We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Zend crypt supports blowfish via the addition of $2x$ and $2y$.
crypt
$2x$
$2y$
<?php var_dump(crypt('test', '$2y$10$abcdefefewagthe4u6js43u8ikjut'));
string(2) "*0"
string(60) "$2y$10$abcdefefewagthe4u6js4uULctBzywdycWeBISW7sfmvlNIKf/z4y"
The text was updated successfully, but these errors were encountered:
Agreed. We don't support this yet. Pull requests welcome.
Sorry, something went wrong.
This has been fixed by 4a23fdc
No branches or pull requests
Zend
crypt
supports blowfish via the addition of$2x$
and$2y$
.Test Program
Actual Output
Expected Output
The text was updated successfully, but these errors were encountered: