Main Page
Namespaces
Classes
Files
File List
File Members
libb64
include
b64
cdecode.h
Go to the documentation of this file.
1
/*
2
cdecode.h - c header for a base64 decoding algorithm
3
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
*/
7
8
#ifndef BASE64_CDECODE_H
9
#define BASE64_CDECODE_H
10
11
typedef
enum
12
{
13
step_a
,
step_b
,
step_c
,
step_d
14
}
base64_decodestep
;
15
16
typedef
struct
17
{
18
base64_decodestep
step
;
19
char
plainchar
;
20
}
base64_decodestate
;
21
22
void
base64_init_decodestate
(
base64_decodestate
* state_in);
23
24
int
base64_decode_value
(
char
value_in);
25
26
int
base64_decode_block
(
const
char
* code_in,
const
int
length_in,
char
* plaintext_out,
base64_decodestate
* state_in);
27
28
#endif
/* BASE64_CDECODE_H */
29
base64_decodestep
base64_decodestep
Definition:
cdecode.h:11
step_c
Definition:
cdecode.h:13
step_d
Definition:
cdecode.h:13
base64_decodestate::plainchar
char plainchar
Definition:
cdecode.h:19
step_a
Definition:
cdecode.h:13
base64_init_decodestate
void base64_init_decodestate(base64_decodestate *state_in)
Definition:
cdecode.c:19
base64_decodestate
Definition:
cdecode.h:16
step_b
Definition:
cdecode.h:13
base64_decode_value
int base64_decode_value(char value_in)
Definition:
cdecode.c:10
base64_decodestate::step
base64_decodestep step
Definition:
cdecode.h:18
base64_decode_block
int base64_decode_block(const char *code_in, const int length_in, char *plaintext_out, base64_decodestate *state_in)
Definition:
cdecode.c:25
xmlrpcpp
Author(s): Chris Morley, Konstantin Pilipchuk, Morgan Quigley, Austin Hendrix
autogenerated on Sun Feb 3 2019 03:29:51