reference/openssl/setup.xml
d5da0808c4d6343eb8f0099307d3139102a6f4bf
...
...
@@ -10,14 +10,13 @@
10
10
<para>
11
11
In order to use the OpenSSL functions you need to install the <link
12
12
xlink:href="&url.openssl;">OpenSSL</link> library.
13
-
PHP 5 requires at least OpenSSL &gt;= 0.9.6. However later PHP 5 versions
14
-
have some compilation issues and should be used at least with OpenSSL &gt;=
15
-
0.9.8 which is also a minimal version for PHP 7.0. Other versions
16
-
(PHP &gt;= 7.1.0) require OpenSSL &gt;= 1.0.1.
13
+
PHP 7.0 requires OpenSSL &gt;= 0.9.8, &lt; 1.2. PHP 7.1-8.0 requires
14
+
OpenSSL &gt;= 1.0.1, &lt; 3.0. PHP &gt;= 8.1 requires OpenSSL
15
+
&gt;= 1.0.2, &lt; 4.0.
17
16
</para>
18
17
<warning>
19
18
<para>
20
-
You are strongly encouraged to use the most recent OpenSSL version,
19
+
You are strongly encouraged to use a maintained OpenSSL version,
21
20
otherwise your web server could be vulnerable to attack.
22
21
</para>
23
22
</warning>
...
...
@@ -36,10 +35,12 @@
36
35
<section xml:id="openssl.resources">
37
36
&reftitle.resources;
38
37
<para>
39
-
There are 3 resource types defined in the OpenSSL module. The first one is
40
-
a pkey (public or private key) identifier, the second one is a X509
41
-
certificate identifier and the third one is a CSR (certificate signing
42
-
request) identifier.
38
+
Prior to PHP 8.0.0, there were 3 resource types defined in the OpenSSL module:
39
+
<simplelist>
40
+
<member><literal>OpenSSL key</literal></member>
41
+
<member><literal>OpenSSL X.509</literal></member>
42
+
<member><literal>OpenSSL X.509 CSR</literal></member>
43
+
</simplelist>
43
44
</para>
44
45
</section>
45
46
<!-- }}} -->
46
47