Remove obsolete stuffs
This commit is contained in:
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
Before Width: | Height: | Size: 2.5 KiB |
Binary file not shown.
Binary file not shown.
140
bin/php/php-8.3.26-Win32-vs16-x64/README.md
Normal file
140
bin/php/php-8.3.26-Win32-vs16-x64/README.md
Normal file
@@ -0,0 +1,140 @@
|
||||
<div align="center">
|
||||
<a href="https://php.net">
|
||||
<img
|
||||
alt="PHP"
|
||||
src="https://www.php.net/images/logos/new-php-logo.svg"
|
||||
width="150">
|
||||
</a>
|
||||
</div>
|
||||
|
||||
# The PHP Interpreter
|
||||
|
||||
PHP is a popular general-purpose scripting language that is especially suited to
|
||||
web development. Fast, flexible and pragmatic, PHP powers everything from your
|
||||
blog to the most popular websites in the world. PHP is distributed under the
|
||||
[PHP License v3.01](LICENSE).
|
||||
|
||||
[](https://github.com/php/php-src/actions/workflows/push.yml)
|
||||
[](https://travis-ci.com/github/php/php-src)
|
||||
[](https://bugs.chromium.org/p/oss-fuzz/issues/list?sort=-opened&can=1&q=proj:php)
|
||||
|
||||
## Documentation
|
||||
|
||||
The PHP manual is available at [php.net/docs](https://php.net/docs).
|
||||
|
||||
## Installation
|
||||
|
||||
### Prebuilt packages and binaries
|
||||
|
||||
Prebuilt packages and binaries can be used to get up and running fast with PHP.
|
||||
|
||||
For Windows, the PHP binaries can be obtained from
|
||||
[windows.php.net](https://windows.php.net). After extracting the archive the
|
||||
`*.exe` files are ready to use.
|
||||
|
||||
For other systems, see the [installation chapter](https://php.net/install).
|
||||
|
||||
### Building PHP source code
|
||||
|
||||
*For Windows, see [Build your own PHP on Windows](https://wiki.php.net/internals/windows/stepbystepbuild_sdk_2).*
|
||||
|
||||
For a minimal PHP build from Git, you will need autoconf, bison, and re2c. For
|
||||
a default build, you will additionally need libxml2 and libsqlite3.
|
||||
|
||||
On Ubuntu, you can install these using:
|
||||
|
||||
sudo apt install -y pkg-config build-essential autoconf bison re2c \
|
||||
libxml2-dev libsqlite3-dev
|
||||
|
||||
On Fedora, you can install these using:
|
||||
|
||||
sudo dnf install re2c bison autoconf make libtool ccache libxml2-devel sqlite-devel
|
||||
|
||||
Generate configure:
|
||||
|
||||
./buildconf
|
||||
|
||||
Configure your build. `--enable-debug` is recommended for development, see
|
||||
`./configure --help` for a full list of options.
|
||||
|
||||
# For development
|
||||
./configure --enable-debug
|
||||
# For production
|
||||
./configure
|
||||
|
||||
Build PHP. To speed up the build, specify the maximum number of jobs using `-j`:
|
||||
|
||||
make -j4
|
||||
|
||||
The number of jobs should usually match the number of available cores, which
|
||||
can be determined using `nproc`.
|
||||
|
||||
## Testing PHP source code
|
||||
|
||||
PHP ships with an extensive test suite, the command `make test` is used after
|
||||
successful compilation of the sources to run this test suite.
|
||||
|
||||
It is possible to run tests using multiple cores by setting `-jN` in
|
||||
`TEST_PHP_ARGS`:
|
||||
|
||||
make TEST_PHP_ARGS=-j4 test
|
||||
|
||||
Shall run `make test` with a maximum of 4 concurrent jobs: Generally the maximum
|
||||
number of jobs should not exceed the number of cores available.
|
||||
|
||||
The [qa.php.net](https://qa.php.net) site provides more detailed info about
|
||||
testing and quality assurance.
|
||||
|
||||
## Installing PHP built from source
|
||||
|
||||
After a successful build (and test), PHP may be installed with:
|
||||
|
||||
make install
|
||||
|
||||
Depending on your permissions and prefix, `make install` may need super user
|
||||
permissions.
|
||||
|
||||
## PHP extensions
|
||||
|
||||
Extensions provide additional functionality on top of PHP. PHP consists of many
|
||||
essential bundled extensions. Additional extensions can be found in the PHP
|
||||
Extension Community Library - [PECL](https://pecl.php.net).
|
||||
|
||||
## Contributing
|
||||
|
||||
The PHP source code is located in the Git repository at
|
||||
[github.com/php/php-src](https://github.com/php/php-src). Contributions are most
|
||||
welcome by forking the repository and sending a pull request.
|
||||
|
||||
Discussions are done on GitHub, but depending on the topic can also be relayed
|
||||
to the official PHP developer mailing list internals@lists.php.net.
|
||||
|
||||
New features require an RFC and must be accepted by the developers. See
|
||||
[Request for comments - RFC](https://wiki.php.net/rfc) and
|
||||
[Voting on PHP features](https://wiki.php.net/rfc/voting) for more information
|
||||
on the process.
|
||||
|
||||
Bug fixes don't require an RFC. If the bug has a GitHub issue, reference it in
|
||||
the commit message using `GH-NNNNNN`. Use `#NNNNNN` for tickets in the old
|
||||
[bugs.php.net](https://bugs.php.net) bug tracker.
|
||||
|
||||
Fix GH-7815: php_uname doesn't recognise latest Windows versions
|
||||
Fix #55371: get_magic_quotes_gpc() throws deprecation warning
|
||||
|
||||
See [Git workflow](https://wiki.php.net/vcs/gitworkflow) for details on how pull
|
||||
requests are merged.
|
||||
|
||||
### Guidelines for contributors
|
||||
|
||||
See further documents in the repository for more information on how to
|
||||
contribute:
|
||||
|
||||
- [Contributing to PHP](/CONTRIBUTING.md)
|
||||
- [PHP coding standards](/CODING_STANDARDS.md)
|
||||
- [Mailing list rules](/docs/mailinglist-rules.md)
|
||||
- [PHP release process](/docs/release-process.md)
|
||||
|
||||
## Credits
|
||||
|
||||
For the list of people who've put work into PHP, please see the
|
||||
[PHP credits page](https://php.net/credits.php).
|
||||
BIN
bin/php/php-8.3.26-Win32-vs16-x64/deplister.exe
Normal file
BIN
bin/php/php-8.3.26-Win32-vs16-x64/deplister.exe
Normal file
Binary file not shown.
BIN
bin/php/php-8.3.26-Win32-vs16-x64/dev/php8ts.lib
Normal file
BIN
bin/php/php-8.3.26-Win32-vs16-x64/dev/php8ts.lib
Normal file
Binary file not shown.
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_bz2.dll
Normal file
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_bz2.dll
Normal file
Binary file not shown.
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_com_dotnet.dll
Normal file
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_com_dotnet.dll
Normal file
Binary file not shown.
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_curl.dll
Normal file
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_curl.dll
Normal file
Binary file not shown.
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_dba.dll
Normal file
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_dba.dll
Normal file
Binary file not shown.
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_dl_test.dll
Normal file
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_dl_test.dll
Normal file
Binary file not shown.
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_enchant.dll
Normal file
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_enchant.dll
Normal file
Binary file not shown.
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_exif.dll
Normal file
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_exif.dll
Normal file
Binary file not shown.
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_ffi.dll
Normal file
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_ffi.dll
Normal file
Binary file not shown.
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_fileinfo.dll
Normal file
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_fileinfo.dll
Normal file
Binary file not shown.
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_ftp.dll
Normal file
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_ftp.dll
Normal file
Binary file not shown.
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_gd.dll
Normal file
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_gd.dll
Normal file
Binary file not shown.
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_gettext.dll
Normal file
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_gettext.dll
Normal file
Binary file not shown.
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_gmp.dll
Normal file
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_gmp.dll
Normal file
Binary file not shown.
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_imap.dll
Normal file
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_imap.dll
Normal file
Binary file not shown.
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_intl.dll
Normal file
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_intl.dll
Normal file
Binary file not shown.
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_ldap.dll
Normal file
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_ldap.dll
Normal file
Binary file not shown.
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_mbstring.dll
Normal file
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_mbstring.dll
Normal file
Binary file not shown.
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_mysqli.dll
Normal file
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_mysqli.dll
Normal file
Binary file not shown.
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_oci8_19.dll
Normal file
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_oci8_19.dll
Normal file
Binary file not shown.
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_odbc.dll
Normal file
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_odbc.dll
Normal file
Binary file not shown.
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_opcache.dll
Normal file
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_opcache.dll
Normal file
Binary file not shown.
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_openssl.dll
Normal file
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_openssl.dll
Normal file
Binary file not shown.
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_pdo_firebird.dll
Normal file
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_pdo_firebird.dll
Normal file
Binary file not shown.
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_pdo_mysql.dll
Normal file
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_pdo_mysql.dll
Normal file
Binary file not shown.
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_pdo_oci.dll
Normal file
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_pdo_oci.dll
Normal file
Binary file not shown.
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_pdo_odbc.dll
Normal file
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_pdo_odbc.dll
Normal file
Binary file not shown.
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_pdo_pgsql.dll
Normal file
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_pdo_pgsql.dll
Normal file
Binary file not shown.
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_pdo_sqlite.dll
Normal file
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_pdo_sqlite.dll
Normal file
Binary file not shown.
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_pgsql.dll
Normal file
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_pgsql.dll
Normal file
Binary file not shown.
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_shmop.dll
Normal file
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_shmop.dll
Normal file
Binary file not shown.
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_snmp.dll
Normal file
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_snmp.dll
Normal file
Binary file not shown.
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_soap.dll
Normal file
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_soap.dll
Normal file
Binary file not shown.
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_sockets.dll
Normal file
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_sockets.dll
Normal file
Binary file not shown.
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_sodium.dll
Normal file
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_sodium.dll
Normal file
Binary file not shown.
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_sqlite3.dll
Normal file
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_sqlite3.dll
Normal file
Binary file not shown.
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_sysvshm.dll
Normal file
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_sysvshm.dll
Normal file
Binary file not shown.
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_tidy.dll
Normal file
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_tidy.dll
Normal file
Binary file not shown.
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_xsl.dll
Normal file
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_xsl.dll
Normal file
Binary file not shown.
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_zend_test.dll
Normal file
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_zend_test.dll
Normal file
Binary file not shown.
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_zip.dll
Normal file
BIN
bin/php/php-8.3.26-Win32-vs16-x64/ext/php_zip.dll
Normal file
Binary file not shown.
BIN
bin/php/php-8.3.26-Win32-vs16-x64/extras/ssl/legacy.dll
Normal file
BIN
bin/php/php-8.3.26-Win32-vs16-x64/extras/ssl/legacy.dll
Normal file
Binary file not shown.
@@ -1,32 +1,77 @@
|
||||
#
|
||||
# OpenSSL example configuration file.
|
||||
# This is mostly being used for generation of certificate requests.
|
||||
# See doc/man5/config.pod for more info.
|
||||
#
|
||||
# This is mostly being used for generation of certificate requests,
|
||||
# but may be used for auto loading of providers
|
||||
|
||||
# Note that you can include other files from the main configuration
|
||||
# file using the .include directive.
|
||||
#.include filename
|
||||
|
||||
# This definition stops the following lines choking if HOME isn't
|
||||
# defined.
|
||||
HOME = .
|
||||
RANDFILE = $ENV::HOME/.rnd
|
||||
|
||||
# Use this in order to automatically load providers.
|
||||
openssl_conf = openssl_init
|
||||
|
||||
# Comment out the next line to ignore configuration errors
|
||||
config_diagnostics = 1
|
||||
|
||||
# Extra OBJECT IDENTIFIER info:
|
||||
#oid_file = $ENV::HOME/.oid
|
||||
oid_section = new_oids
|
||||
# oid_file = $ENV::HOME/.oid
|
||||
oid_section = new_oids
|
||||
|
||||
# To use this configuration file with the "-extfile" option of the
|
||||
# "openssl x509" utility, name here the section containing the
|
||||
# X.509v3 extensions to use:
|
||||
# extensions =
|
||||
# extensions =
|
||||
# (Alternatively, use a configuration file that has only
|
||||
# X.509v3 extensions in its main [= default] section.)
|
||||
|
||||
[ new_oids ]
|
||||
|
||||
# We can add new OIDs in here for use by 'ca' and 'req'.
|
||||
# We can add new OIDs in here for use by 'ca', 'req' and 'ts'.
|
||||
# Add a simple OID like this:
|
||||
# testoid1=1.2.3.4
|
||||
# Or use config file substitution like this:
|
||||
# testoid2=${testoid1}.5.6
|
||||
|
||||
# Policies used by the TSA examples.
|
||||
tsa_policy1 = 1.2.3.4.1
|
||||
tsa_policy2 = 1.2.3.4.5.6
|
||||
tsa_policy3 = 1.2.3.4.5.7
|
||||
|
||||
# For FIPS
|
||||
# Optionally include a file that is generated by the OpenSSL fipsinstall
|
||||
# application. This file contains configuration data required by the OpenSSL
|
||||
# fips provider. It contains a named section e.g. [fips_sect] which is
|
||||
# referenced from the [provider_sect] below.
|
||||
# Refer to the OpenSSL security policy for more information.
|
||||
# .include fipsmodule.cnf
|
||||
|
||||
[openssl_init]
|
||||
providers = provider_sect
|
||||
|
||||
# List of providers to load
|
||||
[provider_sect]
|
||||
default = default_sect
|
||||
# The fips section name should match the section name inside the
|
||||
# included fipsmodule.cnf.
|
||||
# fips = fips_sect
|
||||
|
||||
# If no providers are activated explicitly, the default one is activated implicitly.
|
||||
# See man 7 OSSL_PROVIDER-default for more details.
|
||||
#
|
||||
# If you add a section explicitly activating any other provider(s), you most
|
||||
# probably need to explicitly activate the default provider, otherwise it
|
||||
# becomes unavailable in openssl. As a consequence applications depending on
|
||||
# OpenSSL may not work correctly which could lead to significant system
|
||||
# problems including inability to remotely access the system.
|
||||
[default_sect]
|
||||
# activate = 1
|
||||
|
||||
|
||||
####################################################################
|
||||
[ ca ]
|
||||
default_ca = CA_default # The default ca section
|
||||
@@ -39,7 +84,7 @@ certs = $dir/certs # Where the issued certs are kept
|
||||
crl_dir = $dir/crl # Where the issued crl are kept
|
||||
database = $dir/index.txt # database index file.
|
||||
#unique_subject = no # Set to 'no' to allow creation of
|
||||
# several ctificates with same subject.
|
||||
# several certs with same subject.
|
||||
new_certs_dir = $dir/newcerts # default place for new certs.
|
||||
|
||||
certificate = $dir/cacert.pem # The CA certificate
|
||||
@@ -48,9 +93,8 @@ crlnumber = $dir/crlnumber # the current crl number
|
||||
# must be commented out to leave a V1 CRL
|
||||
crl = $dir/crl.pem # The current CRL
|
||||
private_key = $dir/private/cakey.pem# The private key
|
||||
RANDFILE = $dir/private/.rand # private random number file
|
||||
|
||||
x509_extensions = usr_cert # The extentions to add to the cert
|
||||
x509_extensions = usr_cert # The extensions to add to the cert
|
||||
|
||||
# Comment out the following two lines for the "traditional"
|
||||
# (and highly broken) format.
|
||||
@@ -67,7 +111,7 @@ cert_opt = ca_default # Certificate field options
|
||||
|
||||
default_days = 365 # how long to certify for
|
||||
default_crl_days= 30 # how long before next CRL
|
||||
default_md = sha1 # which md to use.
|
||||
default_md = default # use public key default MD
|
||||
preserve = no # keep passed DN ordering
|
||||
|
||||
# A few difference way of specifying how similar the request should look
|
||||
@@ -98,25 +142,24 @@ emailAddress = optional
|
||||
|
||||
####################################################################
|
||||
[ req ]
|
||||
default_bits = 1024
|
||||
default_bits = 2048
|
||||
default_keyfile = privkey.pem
|
||||
distinguished_name = req_distinguished_name
|
||||
attributes = req_attributes
|
||||
x509_extensions = v3_ca # The extentions to add to the self signed cert
|
||||
x509_extensions = v3_ca # The extensions to add to the self signed cert
|
||||
|
||||
# Passwords for private keys if not present they will be prompted for
|
||||
# input_password = secret
|
||||
# output_password = secret
|
||||
|
||||
# This sets a mask for permitted string types. There are several options.
|
||||
# This sets a mask for permitted string types. There are several options.
|
||||
# default: PrintableString, T61String, BMPString.
|
||||
# pkix : PrintableString, BMPString.
|
||||
# utf8only: only UTF8Strings.
|
||||
# pkix : PrintableString, BMPString (PKIX recommendation before 2004)
|
||||
# utf8only: only UTF8Strings (PKIX recommendation after 2004).
|
||||
# nombstr : PrintableString, T61String (no BMPStrings or UTF8Strings).
|
||||
# MASK:XXXX a literal mask value.
|
||||
# WARNING: current versions of Netscape crash on BMPStrings or UTF8Strings
|
||||
# so use this option with caution!
|
||||
string_mask = nombstr
|
||||
# WARNING: ancient versions of Netscape crash on BMPStrings or UTF8Strings.
|
||||
string_mask = utf8only
|
||||
|
||||
# req_extensions = v3_req # The extensions to add to a certificate request
|
||||
|
||||
@@ -165,27 +208,9 @@ unstructuredName = An optional company name
|
||||
|
||||
basicConstraints=CA:FALSE
|
||||
|
||||
# Here are some examples of the usage of nsCertType. If it is omitted
|
||||
# the certificate can be used for anything *except* object signing.
|
||||
|
||||
# This is OK for an SSL server.
|
||||
# nsCertType = server
|
||||
|
||||
# For an object signing certificate this would be used.
|
||||
# nsCertType = objsign
|
||||
|
||||
# For normal client use this is typical
|
||||
# nsCertType = client, email
|
||||
|
||||
# and for everything including object signing:
|
||||
# nsCertType = client, email, objsign
|
||||
|
||||
# This is typical in keyUsage for a client certificate.
|
||||
# keyUsage = nonRepudiation, digitalSignature, keyEncipherment
|
||||
|
||||
# This will be displayed in Netscape's comment listbox.
|
||||
nsComment = "OpenSSL Generated Certificate"
|
||||
|
||||
# PKIX recommendations harmless if included in all certificates.
|
||||
subjectKeyIdentifier=hash
|
||||
authorityKeyIdentifier=keyid,issuer
|
||||
@@ -200,12 +225,8 @@ authorityKeyIdentifier=keyid,issuer
|
||||
# Copy subject details
|
||||
# issuerAltName=issuer:copy
|
||||
|
||||
#nsCaRevocationUrl = http://www.domain.dom/ca-crl.pem
|
||||
#nsBaseUrl
|
||||
#nsRevocationUrl
|
||||
#nsRenewalUrl
|
||||
#nsCaPolicyUrl
|
||||
#nsSslServerName
|
||||
# This is required for TSA certificates.
|
||||
# extendedKeyUsage = critical,timeStamping
|
||||
|
||||
[ v3_req ]
|
||||
|
||||
@@ -224,22 +245,15 @@ keyUsage = nonRepudiation, digitalSignature, keyEncipherment
|
||||
|
||||
subjectKeyIdentifier=hash
|
||||
|
||||
authorityKeyIdentifier=keyid:always,issuer:always
|
||||
authorityKeyIdentifier=keyid:always,issuer
|
||||
|
||||
# This is what PKIX recommends but some broken software chokes on critical
|
||||
# extensions.
|
||||
#basicConstraints = critical,CA:true
|
||||
# So we do this instead.
|
||||
basicConstraints = CA:true
|
||||
basicConstraints = critical,CA:true
|
||||
|
||||
# Key usage: this is typical for a CA certificate. However since it will
|
||||
# prevent it being used as an test self-signed certificate it is best
|
||||
# left out by default.
|
||||
# keyUsage = cRLSign, keyCertSign
|
||||
|
||||
# Some might want this also
|
||||
# nsCertType = sslCA, emailCA
|
||||
|
||||
# Include email address in subject alt name: another PKIX recommendation
|
||||
# subjectAltName=email:copy
|
||||
# Copy issuer details
|
||||
@@ -257,7 +271,7 @@ basicConstraints = CA:true
|
||||
# Only issuerAltName and authorityKeyIdentifier make any sense in a CRL.
|
||||
|
||||
# issuerAltName=issuer:copy
|
||||
authorityKeyIdentifier=keyid:always,issuer:always
|
||||
authorityKeyIdentifier=keyid:always
|
||||
|
||||
[ proxy_cert_ext ]
|
||||
# These extensions should be added when creating a proxy certificate
|
||||
@@ -267,30 +281,12 @@ authorityKeyIdentifier=keyid:always,issuer:always
|
||||
|
||||
basicConstraints=CA:FALSE
|
||||
|
||||
# Here are some examples of the usage of nsCertType. If it is omitted
|
||||
# the certificate can be used for anything *except* object signing.
|
||||
|
||||
# This is OK for an SSL server.
|
||||
# nsCertType = server
|
||||
|
||||
# For an object signing certificate this would be used.
|
||||
# nsCertType = objsign
|
||||
|
||||
# For normal client use this is typical
|
||||
# nsCertType = client, email
|
||||
|
||||
# and for everything including object signing:
|
||||
# nsCertType = client, email, objsign
|
||||
|
||||
# This is typical in keyUsage for a client certificate.
|
||||
# keyUsage = nonRepudiation, digitalSignature, keyEncipherment
|
||||
|
||||
# This will be displayed in Netscape's comment listbox.
|
||||
nsComment = "OpenSSL Generated Certificate"
|
||||
|
||||
# PKIX recommendations harmless if included in all certificates.
|
||||
subjectKeyIdentifier=hash
|
||||
authorityKeyIdentifier=keyid,issuer:always
|
||||
authorityKeyIdentifier=keyid,issuer
|
||||
|
||||
# This stuff is for subjectAltName and issuerAltname.
|
||||
# Import the email address.
|
||||
@@ -302,12 +298,93 @@ authorityKeyIdentifier=keyid,issuer:always
|
||||
# Copy subject details
|
||||
# issuerAltName=issuer:copy
|
||||
|
||||
#nsCaRevocationUrl = http://www.domain.dom/ca-crl.pem
|
||||
#nsBaseUrl
|
||||
#nsRevocationUrl
|
||||
#nsRenewalUrl
|
||||
#nsCaPolicyUrl
|
||||
#nsSslServerName
|
||||
|
||||
# This really needs to be in place for it to be a proxy certificate.
|
||||
proxyCertInfo=critical,language:id-ppl-anyLanguage,pathlen:3,policy:foo
|
||||
|
||||
####################################################################
|
||||
[ tsa ]
|
||||
|
||||
default_tsa = tsa_config1 # the default TSA section
|
||||
|
||||
[ tsa_config1 ]
|
||||
|
||||
# These are used by the TSA reply generation only.
|
||||
dir = ./demoCA # TSA root directory
|
||||
serial = $dir/tsaserial # The current serial number (mandatory)
|
||||
crypto_device = builtin # OpenSSL engine to use for signing
|
||||
signer_cert = $dir/tsacert.pem # The TSA signing certificate
|
||||
# (optional)
|
||||
certs = $dir/cacert.pem # Certificate chain to include in reply
|
||||
# (optional)
|
||||
signer_key = $dir/private/tsakey.pem # The TSA private key (optional)
|
||||
signer_digest = sha256 # Signing digest to use. (Optional)
|
||||
default_policy = tsa_policy1 # Policy if request did not specify it
|
||||
# (optional)
|
||||
other_policies = tsa_policy2, tsa_policy3 # acceptable policies (optional)
|
||||
digests = sha1, sha256, sha384, sha512 # Acceptable message digests (mandatory)
|
||||
accuracy = secs:1, millisecs:500, microsecs:100 # (optional)
|
||||
clock_precision_digits = 0 # number of digits after dot. (optional)
|
||||
ordering = yes # Is ordering defined for timestamps?
|
||||
# (optional, default: no)
|
||||
tsa_name = yes # Must the TSA name be included in the reply?
|
||||
# (optional, default: no)
|
||||
ess_cert_id_chain = no # Must the ESS cert id chain be included?
|
||||
# (optional, default: no)
|
||||
ess_cert_id_alg = sha1 # algorithm to compute certificate
|
||||
# identifier (optional, default: sha1)
|
||||
|
||||
[insta] # CMP using Insta Demo CA
|
||||
# Message transfer
|
||||
server = pki.certificate.fi:8700
|
||||
# proxy = # set this as far as needed, e.g., http://192.168.1.1:8080
|
||||
# tls_use = 0
|
||||
path = pkix/
|
||||
|
||||
# Server authentication
|
||||
recipient = "/C=FI/O=Insta Demo/CN=Insta Demo CA" # or set srvcert or issuer
|
||||
ignore_keyusage = 1 # potentially needed quirk
|
||||
unprotected_errors = 1 # potentially needed quirk
|
||||
extracertsout = insta.extracerts.pem
|
||||
|
||||
# Client authentication
|
||||
ref = 3078 # user identification
|
||||
secret = pass:insta # can be used for both client and server side
|
||||
|
||||
# Generic message options
|
||||
cmd = ir # default operation, can be overridden on cmd line with, e.g., kur
|
||||
|
||||
# Certificate enrollment
|
||||
subject = "/CN=openssl-cmp-test"
|
||||
newkey = insta.priv.pem
|
||||
out_trusted = apps/insta.ca.crt # does not include keyUsage digitalSignature
|
||||
certout = insta.cert.pem
|
||||
|
||||
[pbm] # Password-based protection for Insta CA
|
||||
# Server and client authentication
|
||||
ref = $insta::ref # 3078
|
||||
secret = $insta::secret # pass:insta
|
||||
|
||||
[signature] # Signature-based protection for Insta CA
|
||||
# Server authentication
|
||||
trusted = $insta::out_trusted # apps/insta.ca.crt
|
||||
|
||||
# Client authentication
|
||||
secret = # disable PBM
|
||||
key = $insta::newkey # insta.priv.pem
|
||||
cert = $insta::certout # insta.cert.pem
|
||||
|
||||
[ir]
|
||||
cmd = ir
|
||||
|
||||
[cr]
|
||||
cmd = cr
|
||||
|
||||
[kur]
|
||||
# Certificate update
|
||||
cmd = kur
|
||||
oldcert = $insta::certout # insta.cert.pem
|
||||
|
||||
[rr]
|
||||
# Certificate revocation
|
||||
cmd = rr
|
||||
oldcert = $insta::certout # insta.cert.pem
|
||||
BIN
bin/php/php-8.3.26-Win32-vs16-x64/glib-2.dll
Normal file
BIN
bin/php/php-8.3.26-Win32-vs16-x64/glib-2.dll
Normal file
Binary file not shown.
BIN
bin/php/php-8.3.26-Win32-vs16-x64/gmodule-2.dll
Normal file
BIN
bin/php/php-8.3.26-Win32-vs16-x64/gmodule-2.dll
Normal file
Binary file not shown.
BIN
bin/php/php-8.3.26-Win32-vs16-x64/icudt72.dll
Normal file
BIN
bin/php/php-8.3.26-Win32-vs16-x64/icudt72.dll
Normal file
Binary file not shown.
BIN
bin/php/php-8.3.26-Win32-vs16-x64/icuin72.dll
Normal file
BIN
bin/php/php-8.3.26-Win32-vs16-x64/icuin72.dll
Normal file
Binary file not shown.
BIN
bin/php/php-8.3.26-Win32-vs16-x64/icuio72.dll
Normal file
BIN
bin/php/php-8.3.26-Win32-vs16-x64/icuio72.dll
Normal file
Binary file not shown.
BIN
bin/php/php-8.3.26-Win32-vs16-x64/icuuc72.dll
Normal file
BIN
bin/php/php-8.3.26-Win32-vs16-x64/icuuc72.dll
Normal file
Binary file not shown.
Binary file not shown.
BIN
bin/php/php-8.3.26-Win32-vs16-x64/libcrypto-3-x64.dll
Normal file
BIN
bin/php/php-8.3.26-Win32-vs16-x64/libcrypto-3-x64.dll
Normal file
Binary file not shown.
BIN
bin/php/php-8.3.26-Win32-vs16-x64/libenchant2.dll
Normal file
BIN
bin/php/php-8.3.26-Win32-vs16-x64/libenchant2.dll
Normal file
Binary file not shown.
BIN
bin/php/php-8.3.26-Win32-vs16-x64/libpq.dll
Normal file
BIN
bin/php/php-8.3.26-Win32-vs16-x64/libpq.dll
Normal file
Binary file not shown.
BIN
bin/php/php-8.3.26-Win32-vs16-x64/libsasl.dll
Normal file
BIN
bin/php/php-8.3.26-Win32-vs16-x64/libsasl.dll
Normal file
Binary file not shown.
BIN
bin/php/php-8.3.26-Win32-vs16-x64/libsodium.dll
Normal file
BIN
bin/php/php-8.3.26-Win32-vs16-x64/libsodium.dll
Normal file
Binary file not shown.
BIN
bin/php/php-8.3.26-Win32-vs16-x64/libsqlite3.dll
Normal file
BIN
bin/php/php-8.3.26-Win32-vs16-x64/libsqlite3.dll
Normal file
Binary file not shown.
BIN
bin/php/php-8.3.26-Win32-vs16-x64/libssh2.dll
Normal file
BIN
bin/php/php-8.3.26-Win32-vs16-x64/libssh2.dll
Normal file
Binary file not shown.
BIN
bin/php/php-8.3.26-Win32-vs16-x64/libssl-3-x64.dll
Normal file
BIN
bin/php/php-8.3.26-Win32-vs16-x64/libssl-3-x64.dll
Normal file
Binary file not shown.
68
bin/php/php-8.3.26-Win32-vs16-x64/license.txt
Normal file
68
bin/php/php-8.3.26-Win32-vs16-x64/license.txt
Normal file
@@ -0,0 +1,68 @@
|
||||
--------------------------------------------------------------------
|
||||
The PHP License, version 3.01
|
||||
Copyright (c) 1999 - 2024 The PHP Group. All rights reserved.
|
||||
--------------------------------------------------------------------
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, is permitted provided that the following conditions
|
||||
are met:
|
||||
|
||||
1. Redistributions of source code must retain the above copyright
|
||||
notice, this list of conditions and the following disclaimer.
|
||||
|
||||
2. Redistributions in binary form must reproduce the above copyright
|
||||
notice, this list of conditions and the following disclaimer in
|
||||
the documentation and/or other materials provided with the
|
||||
distribution.
|
||||
|
||||
3. The name "PHP" must not be used to endorse or promote products
|
||||
derived from this software without prior written permission. For
|
||||
written permission, please contact group@php.net.
|
||||
|
||||
4. Products derived from this software may not be called "PHP", nor
|
||||
may "PHP" appear in their name, without prior written permission
|
||||
from group@php.net. You may indicate that your software works in
|
||||
conjunction with PHP by saying "Foo for PHP" instead of calling
|
||||
it "PHP Foo" or "phpfoo"
|
||||
|
||||
5. The PHP Group may publish revised and/or new versions of the
|
||||
license from time to time. Each version will be given a
|
||||
distinguishing version number.
|
||||
Once covered code has been published under a particular version
|
||||
of the license, you may always continue to use it under the terms
|
||||
of that version. You may also choose to use such covered code
|
||||
under the terms of any subsequent version of the license
|
||||
published by the PHP Group. No one other than the PHP Group has
|
||||
the right to modify the terms applicable to covered code created
|
||||
under this License.
|
||||
|
||||
6. Redistributions of any form whatsoever must retain the following
|
||||
acknowledgment:
|
||||
"This product includes PHP software, freely available from
|
||||
<http://www.php.net/software/>".
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE PHP DEVELOPMENT TEAM ``AS IS'' AND
|
||||
ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
|
||||
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
|
||||
PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE PHP
|
||||
DEVELOPMENT TEAM OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
|
||||
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
||||
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
||||
OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
--------------------------------------------------------------------
|
||||
|
||||
This software consists of voluntary contributions made by many
|
||||
individuals on behalf of the PHP Group.
|
||||
|
||||
The PHP Group can be contacted via Email at group@php.net.
|
||||
|
||||
For more information on the PHP Group and the PHP project,
|
||||
please see <http://www.php.net>.
|
||||
|
||||
PHP includes the Zend Engine, freely available at
|
||||
<http://www.zend.com>.
|
||||
2300
bin/php/php-8.3.26-Win32-vs16-x64/news.txt
Normal file
2300
bin/php/php-8.3.26-Win32-vs16-x64/news.txt
Normal file
File diff suppressed because it is too large
Load Diff
BIN
bin/php/php-8.3.26-Win32-vs16-x64/nghttp2.dll
Normal file
BIN
bin/php/php-8.3.26-Win32-vs16-x64/nghttp2.dll
Normal file
Binary file not shown.
1
bin/php/php-8.3.26-Win32-vs16-x64/phar.phar.bat
Normal file
1
bin/php/php-8.3.26-Win32-vs16-x64/phar.phar.bat
Normal file
@@ -0,0 +1 @@
|
||||
"%~dp0php.exe" "%~dp0pharcommand.phar" %*
|
||||
BIN
bin/php/php-8.3.26-Win32-vs16-x64/pharcommand.phar
Normal file
BIN
bin/php/php-8.3.26-Win32-vs16-x64/pharcommand.phar
Normal file
Binary file not shown.
BIN
bin/php/php-8.3.26-Win32-vs16-x64/php-cgi.exe
Normal file
BIN
bin/php/php-8.3.26-Win32-vs16-x64/php-cgi.exe
Normal file
Binary file not shown.
BIN
bin/php/php-8.3.26-Win32-vs16-x64/php-win.exe
Normal file
BIN
bin/php/php-8.3.26-Win32-vs16-x64/php-win.exe
Normal file
Binary file not shown.
BIN
bin/php/php-8.3.26-Win32-vs16-x64/php.exe
Normal file
BIN
bin/php/php-8.3.26-Win32-vs16-x64/php.exe
Normal file
Binary file not shown.
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
BIN
bin/php/php-8.3.26-Win32-vs16-x64/php8apache2_4.dll
Normal file
BIN
bin/php/php-8.3.26-Win32-vs16-x64/php8apache2_4.dll
Normal file
Binary file not shown.
BIN
bin/php/php-8.3.26-Win32-vs16-x64/php8embed.lib
Normal file
BIN
bin/php/php-8.3.26-Win32-vs16-x64/php8embed.lib
Normal file
Binary file not shown.
BIN
bin/php/php-8.3.26-Win32-vs16-x64/php8phpdbg.dll
Normal file
BIN
bin/php/php-8.3.26-Win32-vs16-x64/php8phpdbg.dll
Normal file
Binary file not shown.
BIN
bin/php/php-8.3.26-Win32-vs16-x64/php8ts.dll
Normal file
BIN
bin/php/php-8.3.26-Win32-vs16-x64/php8ts.dll
Normal file
Binary file not shown.
BIN
bin/php/php-8.3.26-Win32-vs16-x64/phpdbg.exe
Normal file
BIN
bin/php/php-8.3.26-Win32-vs16-x64/phpdbg.exe
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user