8 #ifndef BASE64_CENCODE_H
9 #define BASE64_CENCODE_H
11 #define base64_encode_expected_len(n) ((((4 * n) / 3) + 3) & ~3)
18 step_A, step_B, step_C
29 char base64_encode_value(
char value_in);
31 int base64_encode_block(
const char* plaintext_in,
int length_in,
char* code_out,
base64_encodestate* state_in);
35 int base64_encode_chars(
const char* plaintext_in,
int length_in,
char* code_out);
int stepcount
Definition: cencode.h:24
base64_encodestep step
Definition: cencode.h:22
char result
Definition: cencode.h:23