curves.d 697 B

12345678910111213141516171819
  1. Long: curves
  2. Arg: <algorithm list>
  3. Help: (EC) TLS key exchange algorithm(s) to request
  4. Protocols: TLS
  5. Added: 7.73.0
  6. Category: tls
  7. Example: --curves X25519 $URL
  8. ---
  9. Tells curl to request specific curves to use during SSL session establishment
  10. according to RFC 8422, 5.1. Multiple algorithms can be provided by separating
  11. them with ":" (e.g. "X25519:P-521"). The parameter is available identically
  12. in the "openssl s_client/s_server" utilities.
  13. --curves allows a OpenSSL powered curl to make SSL-connections with exactly
  14. the (EC) curve requested by the client, avoiding intransparent client/server
  15. negotiations.
  16. If this option is set, the default curves list built into openssl will be
  17. ignored.