Home
last modified time | relevance | path

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

123

/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 Dtest24435 FTP dir listing with nocwd and URL encoded path
H A Dtest45035 Variable from file that is trimmed and URL encoded
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 Dproxy-pinnedpubkey.md23 any number of base64 encoded sha256 hashes preceded by 'sha256//' and
/curl/docs/libcurl/
H A Dcurl_easy_escape.md28 This function converts the given input *string* to a URL encoded string
47 URL encoded version without knowledge or care for what particular character
52 to the function is encoded correctly.
H A Dcurl_mime_encoder.md31 curl_mime_encoder() requests a mime part's content to be encoded before being
42 Upon multipart rendering, the part's content is encoded according to the
58 "*quoted-printable*": data is encoded in quoted printable lines of
65 If the original data is already encoded in such a scheme, a custom
H A Dcurl_unescape.md32 This function converts the URL encoded string **input** to a "plain string"
34 encoded (%XX where XX is a two-digit hexadecimal number) are converted to
H A Dcurl_easy_unescape.md29 This function converts the URL encoded string **input** to a "plain string"
31 encoded (%XX where XX is a two-digit hexadecimal number) are converted to their
/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.md34 encoded the way you want the server to receive it. libcurl does not convert or
36 URL encoded.
49 necessary. It returns a pointer to an encoded string that can be passed as
H A DCURLOPT_SSH_HOST_PUBLIC_KEY_SHA256.md31 Pass a char pointer pointing to a string containing a Base64-encoded SHA256
/curl/scripts/
H A Dmk-ca-bundle.pl645 my $encoded = MIME::Base64::encode_base64($cka_value, '');
646 $encoded =~ s/(.{1,${opt_w}})/$1\n/g;
648 . $encoded

Completed in 61 milliseconds

123