Added encode flag to control whether the encoded string ends in a newline after padding or not
This commit is contained in:
6
external/libb64-1.2.1/include/b64/cencode.h
vendored
6
external/libb64-1.2.1/include/b64/cencode.h
vendored
@ -13,8 +13,14 @@ typedef enum
|
||||
step_A, step_B, step_C
|
||||
} base64_encodestep;
|
||||
|
||||
typedef enum
|
||||
{
|
||||
BASE64_ENC_NO_NEWLINE_TERM = 0x1
|
||||
} base64_encodeflags;
|
||||
|
||||
typedef struct
|
||||
{
|
||||
base64_encodeflags flags;
|
||||
base64_encodestep step;
|
||||
char result;
|
||||
int stepcount;
|
||||
|
Reference in New Issue
Block a user