2 cdecode.h - c header for a base64 decoding 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
8 #ifndef BASE64_CDECODE_H
9 #define BASE64_CDECODE_H
14 step_a
, step_b
, step_c
, step_d
18 base64_decodestep step
;
22 void _isds_base64_init_decodestate(base64_decodestate
*state_in
);
24 size_t _isds_base64_decode_block(const int8_t *code_in
,
25 const size_t length_in
, int8_t *plaintext_out
,
26 base64_decodestate
*state_in
);
28 #endif /* BASE64_CDECODE_H */