summaryrefslogtreecommitdiffstats
path: root/php-8.0.7-argon2.patch
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2021-06-08 10:22:59 +0200
committerRemi Collet <remi@remirepo.net>2021-06-08 10:22:59 +0200
commit3d4c9ea71b5298747fc05c5ec1f2d6132d00c29a (patch)
tree6f4bcde1e309273ba0d83b811b027797e933a8de /php-8.0.7-argon2.patch
parent53c65d18b140a02b58b50467ce55ed1922a0cf05 (diff)
new build
ignore unsupported "threads" options in password_hash
Diffstat (limited to 'php-8.0.7-argon2.patch')
-rw-r--r--php-8.0.7-argon2.patch15
1 files changed, 15 insertions, 0 deletions
diff --git a/php-8.0.7-argon2.patch b/php-8.0.7-argon2.patch
new file mode 100644
index 0000000..88018de
--- /dev/null
+++ b/php-8.0.7-argon2.patch
@@ -0,0 +1,15 @@
+diff --git a/ext/sodium/sodium_pwhash.c b/ext/sodium/sodium_pwhash.c
+index e58a9514cc..86cc06cd91 100644
+--- a/ext/sodium/sodium_pwhash.c
++++ b/ext/sodium/sodium_pwhash.c
+@@ -62,10 +62,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)) {
+- zend_value_error("A thread value other than 1 is not supported by this implementation");
+- return FAILURE;
+- }
+ return SUCCESS;
+ }
+