CURLOPT_TLSAUTH_PASSWORD/USERNAME.md: language fixups

- relies *on* TLS SRP
- *for* the specific TLS backends

Closes #14061
This commit is contained in:
Daniel Stenberg 2024-06-29 23:43:36 +02:00
parent 29789ae312
commit 08fa47317a
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2
2 changed files with 8 additions and 8 deletions

View File

@ -31,13 +31,13 @@ CURLcode curl_easy_setopt(CURL *handle, CURLOPT_TLSAUTH_PASSWORD, char *pwd);
Pass a char pointer as parameter, which should point to the null-terminated
password to use for the TLS authentication method specified with the
CURLOPT_TLSAUTH_TYPE(3) option. Requires that the
CURLOPT_TLSAUTH_USERNAME(3) option also be set.
CURLOPT_TLSAUTH_TYPE(3) option. Requires that the CURLOPT_TLSAUTH_USERNAME(3)
option also be set.
The application does not have to keep the string around after setting this
option.
This feature relies in TLS SRP which does not work with TLS 1.3.
This feature relies on TLS SRP which does not work with TLS 1.3.
# DEFAULT
@ -63,7 +63,7 @@ int main(void)
# AVAILABILITY
Added in 7.21.4, with the OpenSSL and GnuTLS backends only
Added in 7.21.4, for the OpenSSL and GnuTLS backends only
# RETURN VALUE

View File

@ -30,13 +30,13 @@ CURLcode curl_easy_setopt(CURL *handle, CURLOPT_TLSAUTH_USERNAME, char *user);
Pass a char pointer as parameter, which should point to the null-terminated
username to use for the TLS authentication method specified with the
CURLOPT_TLSAUTH_TYPE(3) option. Requires that the
CURLOPT_TLSAUTH_PASSWORD(3) option also be set.
CURLOPT_TLSAUTH_TYPE(3) option. Requires that the CURLOPT_TLSAUTH_PASSWORD(3)
option also be set.
The application does not have to keep the string around after setting this
option.
This feature relies in TLS SRP which does not work with TLS 1.3.
This feature relies on TLS SRP which does not work with TLS 1.3.
# DEFAULT
@ -62,7 +62,7 @@ int main(void)
# AVAILABILITY
Added in 7.21.4, with the OpenSSL and GnuTLS backends only
Added in 7.21.4, for the OpenSSL and GnuTLS backends only
# RETURN VALUE