]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
CURLOPT_SSLCERT.3: improve WinSSL-specific usage info
authorArchangel_SDY <Archangel.SDY@gmail.com>
Wed, 18 Apr 2018 13:01:14 +0000 (21:01 +0800)
committerJay Satiro <raysatiro@yahoo.com>
Mon, 23 Apr 2018 07:16:52 +0000 (03:16 -0400)
Ref: https://github.com/curl/curl/pull/2376#issuecomment-381858780

Closes https://github.com/curl/curl/pull/2504

docs/cmdline-opts/cert.d
docs/libcurl/opts/CURLOPT_SSLCERT.3

index 0cd5d535f007699bb7a7dd9fc1d21b4dc21e14c2..adf62fc7ab097c1d2d736bf1bff7314abbd74138 100644 (file)
@@ -29,4 +29,15 @@ system or user keychain, or the path to a PKCS#12-encoded certificate and
 private key. If you want to use a file from the current directory, please
 precede it with "./" prefix, in order to avoid confusion with a nickname.
 
+(Schannel/WinSSL only) Client certificates must be specified by a path
+expression to a certificate store. (Loading PFX is not supported; you can
+import it to a store first). You can use
+"<store location>\\<store name>\\<thumbprint>" to refer to a certificate
+in the system certificates store, for example,
+"CurrentUser\\MY\\934a7ac6f8a5d579285a74fa61e19f23ddfe8d7a". Thumbprint is
+usually a SHA-1 hex string which you can see in certificate details. Following
+store locations are supported: CurrentUser, LocalMachine, CurrentService,
+Services, CurrentUserGroupPolicy, LocalMachineGroupPolicy,
+LocalMachineEnterprise.
+
 If this option is used several times, the last one will be used.
index 3f40b73b946078f0721ae09721b28b348b323031..bd867772a491235e3fea7e86e6d1bd9a0e356ced 100644 (file)
@@ -38,8 +38,16 @@ you wish to authenticate with as it is named in the security database. If you
 want to use a file from the current directory, please precede it with "./"
 prefix, in order to avoid confusion with a nickname.
 
-With WinSSL, this can be expression like "CurrentUser\\MY\\<thumbprint>" to
-refer to a certificate in the system certificates store.
+(Schannel/WinSSL only) Client certificates must be specified by a path
+expression to a certificate store. (Loading PFX is not supported; you can
+import it to a store first). You can use
+"<store location>\\<store name>\\<thumbprint>" to refer to a certificate
+in the system certificates store, for example,
+"CurrentUser\\MY\\934a7ac6f8a5d579285a74fa61e19f23ddfe8d7a". Thumbprint is
+usually a SHA-1 hex string which you can see in certificate details. Following
+store locations are supported: CurrentUser, LocalMachine, CurrentService,
+Services, CurrentUserGroupPolicy, LocalMachineGroupPolicy,
+LocalMachineEnterprise.
 
 When using a client certificate, you most likely also need to provide a
 private key with \fICURLOPT_SSLKEY(3)\fP.