Go to the source code of this file.
Decodes base64 data
- Parameters
-
[out] | out | decoded data |
[in] | out_len | length of output buffer |
[in] | in | base64 string to decode |
[in] | in_len | length of input buffer |
- Returns
- the amount of data decoded
- See also
- Base64_decodeLength
-
Base64_encode
Definition at line 100 of file Base64.c.
Size of buffer required to decode base64 data
- Parameters
-
[in] | in | base64 string to decode |
[in] | in_len | length of input buffer |
- Returns
- the size of buffer the decoded string would require
- See also
- Base64_decode
-
Base64_encodeLength
Definition at line 239 of file Base64.c.
Encodes base64 data
- Parameters
-
[out] | out | encode base64 string |
[in] | out_len | length of output buffer |
[in] | in | raw data to encode |
[in] | in_len | length of input buffer |
- Returns
- the amount of data encoded
- See also
- Base64_decode
-
Base64_encodeLength
Definition at line 179 of file Base64.c.
Size of buffer required to encode base64 data
- Parameters
-
[in] | in | raw data to encode |
[in] | in_len | length of input buffer |
- Returns
- the size of buffer the encoded string would require
- See also
- Base64_decodeLength
-
Base64_encode
Definition at line 250 of file Base64.c.