@@ -1027,9 +1027,21 @@ ciphers
1027
1027
1028
1028
**type **: ``string ``
1029
1029
1030
- A list of the names of the ciphers allowed for the SSL/ TLS connections. They
1030
+ A list of the names of the ciphers allowed for the TLS connections. They
1031
1031
can be separated by colons, commas or spaces (e.g. ``'RC4-SHA:TLS13-AES-128-GCM-SHA256' ``).
1032
1032
1033
+ crypto_method
1034
+ .............
1035
+
1036
+ **type **: ``integer ``
1037
+
1038
+ The minimum version of TLS to accept. The value must be one of the
1039
+ ``STREAM_CRYPTO_METHOD_TLSv*_CLIENT `` constants defined by PHP.
1040
+
1041
+ .. versionadded :: 6.3
1042
+
1043
+ The ``crypto_method `` option was introduced in Symfony 6.3.
1044
+
1033
1045
delay
1034
1046
.....
1035
1047
@@ -1183,7 +1195,7 @@ peer_fingerprint
1183
1195
1184
1196
**type **: ``array ``
1185
1197
1186
- When negotiating a TLS or SSL connection, the server sends a certificate
1198
+ When negotiating a TLS connection, the server sends a certificate
1187
1199
indicating its identity. A public key is extracted from this certificate and if
1188
1200
it does not exactly match any of the public keys provided in this option, the
1189
1201
connection is aborted before sending or receiving any data.
@@ -1265,7 +1277,7 @@ verify_peer
1265
1277
1266
1278
**type **: ``boolean `` **default **: ``true ``
1267
1279
1268
- If ``true ``, the certificate sent by other servers when negotiating a TLS or SSL
1280
+ If ``true ``, the certificate sent by other servers when negotiating a TLS
1269
1281
connection is verified for authenticity. Authenticating the certificate is not
1270
1282
enough to be sure about the server, so you should combine this with the
1271
1283
``verify_host `` option.
0 commit comments