Skip to content

Commit 1d3f24d

Browse files
committed
Add patch for scrypt
1 parent 10d0486 commit 1d3f24d

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
$file = @(
2+
"crypto/params.c",
3+
"crypto/sha256.c",
4+
"crypto/sha256.h",
5+
"crypto/sysendian.h",
6+
"crypto/crypto_scrypt-nosse.c",
7+
"crypto/crypto_scrypt.h",
8+
"php_scrypt_utils.h"
9+
)
10+
foreach ($f in $file) {
11+
(Get-Content $f) | ForEach-Object { $_ -replace '"win32/php_stdint.h"', '<stdint.h>' } | Set-Content $f
12+
}

0 commit comments

Comments
 (0)