php-scrypt
php-scrypt copied to clipboard
A PHP wrapper fo the scrypt hashing algorithm
This PR adds stubs (https://externals.io/message/105970) and uses the generated arginfo structures instead of the directly written ones.
Instead of triggering fatal errors, `Error` exceptions are now thrown when a parameter is invalid. Error messages are changed so that they are now in line PHP 8 conventions.
Could you please release a new version which contains the PHP 8.0 related fix from the master branch?
Since this extension doesn't seem to be updated anymore (and doesn't have php 8/8.1 support) i was wondering if there is a replacement within the Sodium extension. i'm trying to...
I got scrypt version available for PHP 7.4 Thread Safe (TS) x64 from [https://pecl.php.net/package/scrypt/1.4.2/windows](https://pecl.php.net/package/scrypt/1.4.2/windows) In Windows, no matter which salt I pass, the hash is always the same. 
Hash generated by the following function doesn't match when it is run from PHP72 and PHP74 $hash = scrypt('pass123','NaCl', 16384, 8, 1, 64); Using version 1.4.2 from https://pecl.php.net/package/scrypt
Hi! Please I need help installing this extension. I'm using php 7.4 and when I run ``` pecl install scrypt ``` I get the following message: ``` No releases available...
The key length can safely be set to 16 instead of 32 because the string length of the hash returned by `scrypt()` for some reason is always doubled. So if...
scrypt('qq7510201', 'd59a3c9bfe243c989c0b0d48650e20f0718bf9e467dcce940f269ff7e1c3ec71', 262144, 8, 1, 32)的结果是‘708cef6027d565ad4213434bf262bf2c472f4c7e99be1083b21e6db84f629562’。 期望结果是‘5dd3edca314acc87dd1d85e2e798da78772c0e166218138ddc4af2ddf01f58e1’。 java,nodejs.python都是期望的结果