@@ -1027,9 +1027,21 @@ ciphers
10271027
10281028**type **: ``string ``
10291029
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
10311031can be separated by colons, commas or spaces (e.g. ``'RC4-SHA:TLS13-AES-128-GCM-SHA256' ``).
10321032
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+
10331045delay
10341046.....
10351047
@@ -1183,7 +1195,7 @@ peer_fingerprint
11831195
11841196**type **: ``array ``
11851197
1186- When negotiating a TLS or SSL connection, the server sends a certificate
1198+ When negotiating a TLS connection, the server sends a certificate
11871199indicating its identity. A public key is extracted from this certificate and if
11881200it does not exactly match any of the public keys provided in this option, the
11891201connection is aborted before sending or receiving any data.
@@ -1265,7 +1277,7 @@ verify_peer
12651277
12661278**type **: ``boolean `` **default **: ``true ``
12671279
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
12691281connection is verified for authenticity. Authenticating the certificate is not
12701282enough to be sure about the server, so you should combine this with the
12711283``verify_host `` option.
0 commit comments