Searched refs:encoded (Results 1 – 25 of 65) sorted by relevance
123
30 This function converts the given input *string* to a URL encoded string and45 URL encoded version without knowledge or care for what particular character50 to the function is encoded correctly.54 URLs are by definition *URL encoded*. To create a proper URL from a set of55 components that may not be URL encoded already, you cannot just URL encode the59 To create a proper URL from strings that are not already URL encoded, we
32 curl_mime_encoder() requests a mime part's content to be encoded before being43 Upon multipart rendering, the part's content is encoded according to the59 "*quoted-printable*": data is encoded in quoted printable lines of66 If the original data is already encoded in such a scheme, a custom
33 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
30 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
37 # the key is the URL encoded user, which needs to be sent encoded in the
15 IMAP with URL-encoded CR LF in the URL
15 POP3 with URL-encoded CR LF in the URL
15 SMTP with URL-encoded CR LF in the URL
38 HTTP GET gzip transfer-encoded data in raw mode
31 HTTP POST zero length, chunked-encoded
47 HTTP GET gzip+chunked transfer-encoded content
49 HTTP GET gzip transfer-encoded content
35 Variable from file that is trimmed and URL encoded
35 FTP dir listing with nocwd and URL encoded path
44 # base64 encoded message so we must assert this
35 Variable from file that is JSON and URL encoded (with null byte)
6 Help: HTTP POST data URL encoded41 expected to be URL-encoded already.51 be URL-encoded already.
43 content holding null bytes that are not encoded when expanded, causes an55 shows the content URL (percent) encoded.58 expands the variable base64 encoded
22 they should be encoded according to the URI standard.
19 Pass a string containing a Base64-encoded SHA256 hash of the remote host's
23 any number of base64 encoded sha256 hashes preceded by 'sha256//' and
43 A base64 encoded ECHConfigList that is used for ECH.
160 unsigned char encoded; in mqtt_encode_len() local161 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() local576 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()
35 encoded the way you want the server to receive it. libcurl does not convert or37 URL encoded.49 necessary. It returns a pointer to an encoded string that can be passed as
604 my $encoded = MIME::Base64::encode_base64($cka_value, '');605 $encoded =~ s/(.{1,${opt_w}})/$1\n/g;607 . $encoded
Completed in 18 milliseconds