summaryrefslogtreecommitdiffstats
path: root/php-7.4.20-argon2.patch
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2021-06-16 06:44:22 +0200
committerRemi Collet <remi@remirepo.net>2021-06-16 06:44:22 +0200
commit1c5da8157593e8b39f96a37be012b590f3fd51f2 (patch)
treed46205c02b6ee9c28f26a5696cd90f6d008a2f95 /php-7.4.20-argon2.patch
parente0326436f5533ddf5d96a3063bdfa25cece57261 (diff)
update to 7.4.21RC1
ignore unsupported "threads" option on password_hash
Diffstat (limited to 'php-7.4.20-argon2.patch')
-rw-r--r--php-7.4.20-argon2.patch15
1 files changed, 15 insertions, 0 deletions
diff --git a/php-7.4.20-argon2.patch b/php-7.4.20-argon2.patch
new file mode 100644
index 0000000..73a1452
--- /dev/null
+++ b/php-7.4.20-argon2.patch
@@ -0,0 +1,15 @@
+diff --git a/ext/sodium/sodium_pwhash.c b/ext/sodium/sodium_pwhash.c
+index 2b284c7116..4a453255e2 100644
+--- a/ext/sodium/sodium_pwhash.c
++++ b/ext/sodium/sodium_pwhash.c
+@@ -64,10 +64,6 @@ static inline int get_options(zend_array *options, size_t *memlimit, size_t *ops
+ return FAILURE;
+ }
+ }
+- if ((opt = zend_hash_str_find(options, "threads", strlen("threads"))) && (zval_get_long(opt) != 1)) {
+- php_error_docref(NULL, E_WARNING, "A thread value other than 1 is not supported by this implementation");
+- return FAILURE;
+- }
+ return SUCCESS;
+ }
+