Skip to content

Commit 0482592

Browse files
authored
Sync EN: constantes LDAP et OpenSSL manquantes de PHP 8.4 (#3018)
1 parent d297e90 commit 0482592

4 files changed

Lines changed: 68 additions & 11 deletions

File tree

reference/ldap/constants.xml

Lines changed: 28 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<!-- $Revision$ -->
3-
<!-- EN-Revision: 26c2246aacfdbf8a40cc2ceccc71c6d878571120 Maintainer: yannick Status: ready -->
4-
<!-- Reviewed: no -->
2+
<!-- EN-Revision: 5b3a84935252a553528cb81b3dacb88647b57c7b Maintainer: lacatoire Status: ready -->
53

64
<appendix xml:id="ldap.constants" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
75
&reftitle.constants;
@@ -377,8 +375,21 @@
377375
</term>
378376
<listitem>
379377
<simpara>
380-
Spécifie la version minimum du protocole. Cela peut être l'une des valeurs
381-
suivantes : <constant>LDAP_OPT_X_TLS_PROTOCOL_SSL2</constant>,<constant>LDAP_OPT_X_TLS_PROTOCOL_SSL3</constant>, <constant>LDAP_OPT_X_TLS_PROTOCOL_TLS1_0</constant>, <constant>LDAP_OPT_X_TLS_PROTOCOL_TLS1_1</constant>, <constant>LDAP_OPT_X_TLS_PROTOCOL_TLS1_2</constant>
378+
Spécifie la version minimum du protocole. Cela peut être l'une des valeurs
379+
suivantes : <constant>LDAP_OPT_X_TLS_PROTOCOL_SSL2</constant>,<constant>LDAP_OPT_X_TLS_PROTOCOL_SSL3</constant>, <constant>LDAP_OPT_X_TLS_PROTOCOL_TLS1_0</constant>, <constant>LDAP_OPT_X_TLS_PROTOCOL_TLS1_1</constant>, <constant>LDAP_OPT_X_TLS_PROTOCOL_TLS1_2</constant>, <constant>LDAP_OPT_X_TLS_PROTOCOL_TLS1_3</constant>
380+
</simpara>
381+
</listitem>
382+
</varlistentry>
383+
<varlistentry xml:id="constant.ldap-opt-x-tls-protocol-max">
384+
<term>
385+
<constant>LDAP_OPT_X_TLS_PROTOCOL_MAX</constant>
386+
(<type>int</type>)
387+
</term>
388+
<listitem>
389+
<simpara>
390+
Spécifie la version maximum du protocole. Cela peut être l'une des valeurs
391+
suivantes : <constant>LDAP_OPT_X_TLS_PROTOCOL_SSL2</constant>, <constant>LDAP_OPT_X_TLS_PROTOCOL_SSL3</constant>, <constant>LDAP_OPT_X_TLS_PROTOCOL_TLS1_0</constant>, <constant>LDAP_OPT_X_TLS_PROTOCOL_TLS1_1</constant>, <constant>LDAP_OPT_X_TLS_PROTOCOL_TLS1_2</constant>, <constant>LDAP_OPT_X_TLS_PROTOCOL_TLS1_3</constant>.
392+
Disponible à partir de PHP 8.4.0.
382393
</simpara>
383394
</listitem>
384395
</varlistentry>
@@ -1161,6 +1172,18 @@
11611172
</simpara>
11621173
</listitem>
11631174
</varlistentry>
1175+
<varlistentry xml:id="constant.ldap-opt-x-tls-protocol-tls1-3">
1176+
<term>
1177+
<constant>LDAP_OPT_X_TLS_PROTOCOL_TLS1_3</constant>
1178+
(<type>int</type>)
1179+
</term>
1180+
<listitem>
1181+
<simpara>
1182+
Le protocole TLS 1.3.
1183+
Disponible à partir de PHP 8.4.0.
1184+
</simpara>
1185+
</listitem>
1186+
</varlistentry>
11641187

11651188
</variablelist>
11661189
</appendix>

reference/ldap/functions/ldap-get-option.xml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<!-- EN-Revision: aa120f36c5762e99f9ee121d8caf910e0a67121e Maintainer: yannick Status: ready -->
2+
<!-- EN-Revision: 5b3a84935252a553528cb81b3dacb88647b57c7b Maintainer: lacatoire Status: ready -->
33
<!-- Reviewed: yes -->
44
<refentry xml:id="function.ldap-get-option" xmlns="http://docbook.org/ns/docbook">
55
<refnamediv>
@@ -199,6 +199,11 @@
199199
<entry><type>int</type></entry>
200200
<entry>7.1</entry>
201201
</row>
202+
<row>
203+
<entry><constant>LDAP_OPT_X_TLS_PROTOCOL_MAX</constant></entry>
204+
<entry><type>int</type></entry>
205+
<entry>8.4</entry>
206+
</row>
202207
<row>
203208
<entry><constant>LDAP_OPT_X_TLS_RANDOM_FILE</constant></entry>
204209
<entry><type>string</type></entry>

reference/ldap/functions/ldap-set-option.xml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<!-- EN-Revision: 85d9a34e16732043af52954a069a020b8c30ec50 Maintainer: yannick Status: ready -->
2+
<!-- EN-Revision: 5b3a84935252a553528cb81b3dacb88647b57c7b Maintainer: lacatoire Status: ready -->
33
<!-- Reviewed: yes -->
44
<refentry xml:id="function.ldap-set-option" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
55
<refnamediv>
@@ -179,6 +179,11 @@
179179
<entry><type>int</type></entry>
180180
<entry>PHP 7.1.0</entry>
181181
</row>
182+
<row>
183+
<entry><constant>LDAP_OPT_X_TLS_PROTOCOL_MAX</constant></entry>
184+
<entry><type>int</type></entry>
185+
<entry>PHP 8.4.0</entry>
186+
</row>
182187
<row>
183188
<entry><constant>LDAP_OPT_X_TLS_RANDOM_FILE</constant></entry>
184189
<entry><type>string</type></entry>

reference/openssl/constants.xml

Lines changed: 28 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<!-- $Revision$ -->
3-
<!-- EN-Revision: 5208882ce3910d599e339209f967e183b49ba6ef Maintainer: lacatoire Status: ready -->
4-
<!-- Reviewed: no -->
2+
<!-- EN-Revision: 5b3a84935252a553528cb81b3dacb88647b57c7b Maintainer: lacatoire Status: ready -->
53

64
<appendix xml:id="openssl.constants" xmlns="http://docbook.org/ns/docbook">
75
&reftitle.constants;
@@ -82,7 +80,33 @@
8280
</term>
8381
<listitem>
8482
<simpara>
85-
83+
84+
</simpara>
85+
</listitem>
86+
</varlistentry>
87+
<varlistentry xml:id="constant.x509-purpose-ocsp-helper">
88+
<term>
89+
<constant>X509_PURPOSE_OCSP_HELPER</constant>
90+
(<type>int</type>)
91+
</term>
92+
<listitem>
93+
<simpara>
94+
Vérifie le certificat pour une utilisation comme assistant de
95+
répondeur OCSP.
96+
Disponible à partir de PHP 8.4.0.
97+
</simpara>
98+
</listitem>
99+
</varlistentry>
100+
<varlistentry xml:id="constant.x509-purpose-timestamp-sign">
101+
<term>
102+
<constant>X509_PURPOSE_TIMESTAMP_SIGN</constant>
103+
(<type>int</type>)
104+
</term>
105+
<listitem>
106+
<simpara>
107+
Vérifie le certificat pour une utilisation comme signataire
108+
d'horodatage de confiance.
109+
Disponible à partir de PHP 8.4.0.
86110
</simpara>
87111
</listitem>
88112
</varlistentry>

0 commit comments

Comments
 (0)