Go to the source code of this file.
Data Structures | |
struct | base64_decodestate |
Enumerations | |
enum | base64_decodestep { step_a, step_b, step_c, step_d } |
Functions | |
void | base64_init_decodestate (base64_decodestate *state_in) |
int | base64_decode_value (char value_in) |
int | base64_decode_block (const char *code_in, const int length_in, char *plaintext_out, base64_decodestate *state_in) |
enum base64_decodestep |
int base64_decode_block | ( | const char * | code_in, | |
const int | length_in, | |||
char * | plaintext_out, | |||
base64_decodestate * | state_in | |||
) |
Definition at line 25 of file cdecode.c.
References base64_decode_value(), base64_decodestate::plainchar, base64_decodestate::step, step_a, step_b, step_c, and step_d.
Referenced by MC_AgentRetrieveFile().
int base64_decode_value | ( | char | value_in | ) |
Definition at line 10 of file cdecode.c.
Referenced by base64_decode_block().
void base64_init_decodestate | ( | base64_decodestate * | state_in | ) |
Definition at line 19 of file cdecode.c.
References base64_decodestate::plainchar, base64_decodestate::step, and step_a.
Referenced by MC_AgentRetrieveFile().