ca-native.d 768 B

123456789101112131415161718192021
  1. c: Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
  2. SPDX-License-Identifier: curl
  3. Long: ca-native
  4. Help: Use CA certificates from the native OS
  5. Protocols: TLS
  6. Category: tls
  7. See-also: cacert capath insecure
  8. Example: --ca-native $URL
  9. Added: 8.2.0
  10. Multi: boolean
  11. ---
  12. Tells curl to use the CA store from the native operating system to verify the
  13. peer. By default, curl otherwise uses a CA store provided in a single file or
  14. directory, but when using this option it interfaces the operating system's
  15. own vault.
  16. This option only works for curl on Windows when built to use OpenSSL. When
  17. curl on Windows is built to use Schannel, this feature is implied and curl
  18. then only uses the native CA store.
  19. curl built with wolfSSL also supports this option (added in 8.3.0).