summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/ci.yaml2
-rw-r--r--README.md6
-rw-r--r--config.w3214
-rw-r--r--package.xml2
4 files changed, 20 insertions, 4 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
index a18dd09..7c0625f 100644
--- a/.github/workflows/ci.yaml
+++ b/.github/workflows/ci.yaml
@@ -41,7 +41,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
- fedora: [39, 40, 41]
+ fedora: [40, 41]
php: [0, 'remi-8.0', 'remi-8.1', 'remi-8.2', 'remi-8.3', 'remi-8.4']
container:
image: fedora:${{ matrix.fedora }}
diff --git a/README.md b/README.md
index 37bf868..94bca11 100644
--- a/README.md
+++ b/README.md
@@ -13,7 +13,7 @@ It also provides additional functions from libxcrypt missing in core PHP:
* `crypt_gensalt`: encode settings for passphrase hashing
* `crypt_checksalt`: validate a crypt setting string
-See the Linux man pages.
+See the Linux man pages or [PHP Documentation](https://www.php.net/xpass)
**Computation time**
@@ -45,11 +45,11 @@ From the sources tree
$ make
$ make test
-From https://pecl.php.net/
+From https://pecl.php.net/ using pecl command
$ pecl install xpass
-Using https://packagist.org/
+From https://packagist.org/ using PHP Installer for Extensions
$ pie install remi/xpass
diff --git a/config.w32 b/config.w32
new file mode 100644
index 0000000..5f8b6cf
--- /dev/null
+++ b/config.w32
@@ -0,0 +1,14 @@
+ARG_ENABLE("xpass", "Enable xpass support", "no");
+
+if (PHP_XPASS != "no") {
+ if (CHECK_LIB("crypt.lib", "xpass", PHP_XPASS)
+ && CHECK_HEADER_ADD_INCLUDE("crypt.h", "CLFAGS_XPASS", PHP_XPASS)
+ && CHECK_LIB("bcrypt.lib", "xpass", PHP_XPASS)) {
+ AC_DEFINE("HAVE_XPASS", 1, "Have xpass support");
+ EXTENSION("xpass", "xpass.c");
+ AC_DEFINE("HAVE_CRYPT_YESCRYPT", 1, "Have yescrypt hash support");
+ AC_DEFINE("HAVE_CRYPT_SHA512", 1, "Have sha512 hash support");
+ } else {
+ WARNING("xpass not enabled; libraries and headers not found");
+ }
+}
diff --git a/package.xml b/package.xml
index 1a90f12..cd7789b 100644
--- a/package.xml
+++ b/package.xml
@@ -15,6 +15,8 @@ It also provides additional functions from libxcrypt missing in core PHP:
* crypt_preferred_method
* crypt_gensalt
* crypt_checksalt
+
+See PHP documentation on https://www.php.net/xpass
</description>
<lead>
<name>Remi Collet</name>