Home
last modified time | relevance | path

Searched refs:encoded (Results 1 – 25 of 65) sorted by relevance

123

/curl/docs/libcurl/
H A Dcurl_easy_escape.md30 This function converts the given input *string* to a URL encoded string and
45 URL encoded version without knowledge or care for what particular character
50 to the function is encoded correctly.
54 URLs are by definition *URL encoded*. To create a proper URL from a set of
55 components that may not be URL encoded already, you cannot just URL encode the
59 To create a proper URL from strings that are not already URL encoded, we
H A Dcurl_mime_encoder.md32 curl_mime_encoder() requests a mime part's content to be encoded before being
43 Upon multipart rendering, the part's content is encoded according to the
59 "*quoted-printable*": data is encoded in quoted printable lines of
66 If the original data is already encoded in such a scheme, a custom
H A Dcurl_unescape.md33 This function converts the URL encoded string **input** to a "plain string"
35 encoded (%XX where XX is a two-digit hexadecimal number) are converted to
H A Dcurl_easy_unescape.md30 This function converts the URL encoded string **input** to a "plain string"
32 encoded (%XX where XX is a two-digit hexadecimal number) are converted to their
/curl/tests/data/
H A Dtest49537 # the key is the URL encoded user, which needs to be sent encoded in the
H A Dtest82915 IMAP with URL-encoded CR LF in the URL
H A Dtest87515 POP3 with URL-encoded CR LF in the URL
H A Dtest93115 SMTP with URL-encoded CR LF in the URL
H A Dtest31938 HTTP GET gzip transfer-encoded data in raw mode
H A Dtest133331 HTTP POST zero length, chunked-encoded
H A Dtest112447 HTTP GET gzip+chunked transfer-encoded content
H A Dtest112249 HTTP GET gzip transfer-encoded content
H A Dtest45035 Variable from file that is trimmed and URL encoded
H A Dtest24435 FTP dir listing with nocwd and URL encoded path
H A Dtest84244 # base64 encoded message so we must assert this
H A Dtest45135 Variable from file that is JSON and URL encoded (with null byte)
/curl/docs/cmdline-opts/
H A Ddata-urlencode.md6 Help: HTTP POST data URL encoded
41 expected to be URL-encoded already.
51 be URL-encoded already.
H A Dvariable.md43 content holding null bytes that are not encoded when expanded, causes an
55 shows the content URL (percent) encoded.
58 expands the variable base64 encoded
H A Dgloboff.md22 they should be encoded according to the URI standard.
H A Dhostpubsha256.md19 Pass a string containing a Base64-encoded SHA256 hash of the remote host's
H A Dech.md43 A base64 encoded ECHConfigList that is used for ECH.
H A Dproxy-pinnedpubkey.md23 any number of base64 encoded sha256 hashes preceded by 'sha256//' and
/curl/lib/
H A Dmqtt.c160 unsigned char encoded; in mqtt_encode_len() local
161 encoded = len % 0x80; in mqtt_encode_len()
164 encoded |= 0x80; in mqtt_encode_len()
165 buf[i] = (char)encoded; in mqtt_encode_len()
574 unsigned char encoded = 128; in mqtt_decode_len() local
576 for(i = 0; (i < buflen) && (encoded & 128); i++) { in mqtt_decode_len()
577 encoded = buf[i]; in mqtt_decode_len()
578 len += (encoded & 127) * mult; in mqtt_decode_len()
/curl/docs/libcurl/opts/
H A DCURLOPT_POSTFIELDS.md35 encoded the way you want the server to receive it. libcurl does not convert or
37 URL encoded.
49 necessary. It returns a pointer to an encoded string that can be passed as
/curl/scripts/
H A Dmk-ca-bundle.pl646 my $encoded = MIME::Base64::encode_base64($cka_value, '');
647 $encoded =~ s/(.{1,${opt_w}})/$1\n/g;
649 . $encoded

Completed in 30 milliseconds

123