test: guess_raw_type: plain signed incoming message
[libisds.git] / src / cencode.h
blobb9f643c704821468e3fd240ea97bfd2cd5fb4e11
1 /*
2 cencode.h - c header for a base64 encoding algorithm
4 This is part of the libb64 project, and has been placed in the public domain.
5 For details, see http://sourceforge.net/projects/libb64
6 */
8 #ifndef BASE64_CENCODE_H
9 #define BASE64_CENCODE_H
11 typedef enum
13 step_A, step_B, step_C
14 } base64_encodestep;
16 typedef struct
18 base64_encodestep step;
19 char result;
20 int stepcount;
21 } base64_encodestate;
23 void base64_init_encodestate(base64_encodestate* state_in);
25 char base64_encode_value(char value_in);
27 int base64_encode_block(const char* plaintext_in, int length_in, char* code_out, base64_encodestate* state_in);
29 int base64_encode_blockend(char* code_out, base64_encodestate* state_in);
31 #endif /* BASE64_CENCODE_H */