Go to the source code of this file.
Data Structures | |
| struct | base64_encodestate |
Enumerations | |
| enum | base64_encodestep { step_A, step_B, step_C } |
Functions | |
| void | base64_init_encodestate (base64_encodestate *state_in) |
| char | base64_encode_value (char value_in) |
| int | base64_encode_block (const char *plaintext_in, int length_in, char *code_out, base64_encodestate *state_in) |
| int | base64_encode_blockend (char *code_out, base64_encodestate *state_in) |
| enum base64_encodestep |
| int base64_encode_block | ( | const char * | plaintext_in, | |
| int | length_in, | |||
| char * | code_out, | |||
| base64_encodestate * | state_in | |||
| ) |
Definition at line 26 of file cencode.c.
References base64_encode_value(), CHARS_PER_LINE, base64_encodestate::result, base64_encodestate::step, step_A, step_B, step_C, and base64_encodestate::stepcount.
Referenced by agent_file_data_InitializeFromFilename().
| int base64_encode_blockend | ( | char * | code_out, | |
| base64_encodestate * | state_in | |||
| ) |
Definition at line 87 of file cencode.c.
References base64_encode_value(), base64_encodestate::result, base64_encodestate::step, step_A, step_B, and step_C.
Referenced by agent_file_data_InitializeFromFilename().
| char base64_encode_value | ( | char | value_in | ) |
Definition at line 19 of file cencode.c.
Referenced by base64_encode_block(), and base64_encode_blockend().
| void base64_init_encodestate | ( | base64_encodestate * | state_in | ) |
Definition at line 12 of file cencode.c.
References base64_encodestate::result, base64_encodestate::step, step_A, and base64_encodestate::stepcount.
Referenced by agent_file_data_InitializeFromFilename().
1.6.3