proxy-cert-type.md (732B)
1 --- 2 c: Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al. 3 SPDX-License-Identifier: curl 4 Long: proxy-cert-type 5 Arg: <type> 6 Added: 7.52.0 7 Help: Client certificate type for HTTPS proxy 8 Category: proxy tls 9 Multi: single 10 See-also: 11 - proxy-cert 12 - proxy-key 13 Example: 14 - --proxy-cert-type PEM --proxy-cert file -x https://proxy $URL 15 --- 16 17 # `--proxy-cert-type` 18 19 Set type of the provided client certificate when using HTTPS proxy. PEM, DER, 20 ENG, PROV and P12 are recognized types. 21 22 The default type depends on the TLS backend and is usually PEM. For Schannel 23 it is P12. If --proxy-cert is a pkcs11: URI then ENG or PROV is the default 24 type (depending on OpenSSL version). 25 26 Equivalent to --cert-type but used in HTTPS proxy context.