The main function of gnunet-base32.
41{
42 int decode = 0;
45 'd',
46 "decode",
48 "run decoder modus, otherwise runs as encoder"),
49 &decode),
51 "Crockford base32 encoder/decoder"),
54 };
56 char *in;
57 unsigned int in_size;
58 ssize_t iret;
59 char *out;
60 size_t out_size;
61
64 argc,
65 argv);
67 return 1;
69 return 0;
70 in_size = 0;
71 in = NULL;
72 iret = 1;
73 while (iret > 0)
74 {
75
76 char buf[4092];
77
78 iret = read (0,
79 buf,
80 sizeof (buf));
81 if (iret < 0)
82 {
84 return 2;
85 }
86 if (iret > 0)
87 {
88 if (iret + in_size < in_size)
89 {
92 return 1;
93 }
95 in_size,
96 in_size + iret);
97 memcpy (&in[in_size - iret],
98 buf,
99 iret);
100 }
101 }
102 if (decode)
103 {
104
105
106 out_size = in_size * 5 / 8;
110 in_size,
111 out,
112 out_size)) &&
113 (out_size > 0) )
114 {
115 out_size--;
118 in_size,
119 out,
120 out_size))
121 {
124 return 3;
125 }
126 }
127 }
128 else
129 {
131 in_size);
132 out_size = strlen (out);
133 }
134 {
135 size_t pos = 0;
136
137 while (pos < out_size)
138 {
139 iret = write (1,
140 &out[pos],
141 out_size - pos);
142 if (iret <= 0)
143 return 4;
144 pos += iret;
145 }
146 }
148 return 0;
149}
struct GNUNET_GETOPT_CommandLineOption GNUNET_GETOPT_OPTION_END
struct GNUNET_GETOPT_CommandLineOption options[]
#define gettext_noop(String)
static int ret
Final status code.
int GNUNET_GETOPT_run(const char *binaryOptions, const struct GNUNET_GETOPT_CommandLineOption *allOptions, unsigned int argc, char *const *argv)
Parse the command line.
struct GNUNET_GETOPT_CommandLineOption GNUNET_GETOPT_option_help(const struct GNUNET_OS_ProjectData *pd, const char *about)
Defining the option to print the command line help text (-h option).
struct GNUNET_GETOPT_CommandLineOption GNUNET_GETOPT_option_flag(char shortName, const char *name, const char *description, int *val)
Allow user to specify a flag (which internally means setting an integer to 1/GNUNET_YES/GNUNET_OK.
struct GNUNET_GETOPT_CommandLineOption GNUNET_GETOPT_option_version(const char *version)
Define the option to print the version of the application (-v option)
#define GNUNET_break(cond)
Use this for internal assertion violations that are not fatal (can be handled) but should not occur.
#define GNUNET_array_grow(arr, size, tsize)
Grow a well-typed (!) array.
#define GNUNET_malloc(size)
Wrapper around malloc.
#define GNUNET_free(ptr)
Wrapper around free.
const struct GNUNET_OS_ProjectData * GNUNET_OS_project_data_gnunet(void)
Return default project data used by 'libgnunetutil' for GNUnet.
char * GNUNET_STRINGS_data_to_string_alloc(const void *buf, size_t size)
Return the base32crockford encoding of the given buffer.
enum GNUNET_GenericReturnValue GNUNET_STRINGS_string_to_data(const char *enc, size_t enclen, void *out, size_t out_size)
Convert CrockfordBase32 encoding back to data.
Definition of a command line option.