eid-viewer
eid-viewer library
Loading...
Searching...
No Matches
base64enc.h
1
2/*
3cencode.h - c header for a base64 encoding algorithm
4
5This is part of the libb64 project, and has been placed in the public domain.
6For details, see http://sourceforge.net/projects/libb64
7*/
8
9#ifndef BASE64_CENCODE_H
10#define BASE64_CENCODE_H
11
12typedef enum
13{
14 step_A, step_B, step_C
15} base64_encodestep;
16
17typedef struct
18{
19 base64_encodestep step;
20 char result;
21 int stepcount;
23
24void base64_init_encodestate(base64_encodestate * state_in);
25
26char base64_encode_value(char value_in);
27
28int base64_encode_block(const char *plaintext_in, int length_in,
29 char *code_out, base64_encodestate * state_in);
30
31int base64_encode_blockend(char *code_out, base64_encodestate * state_in);
32
33#endif /* BASE64_CENCODE_H */
Definition base64enc.h:18