2006-04-04 15:03:23 +02:00
|
|
|
/* gbase64.h - Base64 coding functions
|
|
|
|
*
|
|
|
|
* Copyright (C) 2005 Alexander Larsson <alexl@redhat.com>
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
2017-01-05 12:47:07 +01:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
2006-04-04 15:03:23 +02:00
|
|
|
* License as published by the Free Software Foundation; either
|
2017-01-05 12:47:07 +01:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2006-04-04 15:03:23 +02:00
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2010-09-04 01:33:11 +02:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2017-01-05 12:47:07 +01:00
|
|
|
* Lesser General Public License for more details.
|
2006-04-04 15:03:23 +02:00
|
|
|
*
|
2017-01-05 12:47:07 +01:00
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* along with this library; if not, see <http://www.gnu.org/licenses/>.
|
2006-04-04 15:03:23 +02:00
|
|
|
*/
|
|
|
|
|
2012-12-28 05:43:14 +01:00
|
|
|
#ifndef __G_BASE64_H__
|
|
|
|
#define __G_BASE64_H__
|
|
|
|
|
2011-10-12 06:24:46 +02:00
|
|
|
#if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION)
|
2008-03-14 20:30:38 +01:00
|
|
|
#error "Only <glib.h> can be included directly."
|
|
|
|
#endif
|
|
|
|
|
2006-04-04 15:03:23 +02:00
|
|
|
#include <glib/gtypes.h>
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2012-12-06 20:04:59 +01:00
|
|
|
GLIB_AVAILABLE_IN_ALL
|
2010-09-04 01:33:11 +02:00
|
|
|
gsize g_base64_encode_step (const guchar *in,
|
|
|
|
gsize len,
|
|
|
|
gboolean break_lines,
|
|
|
|
gchar *out,
|
|
|
|
gint *state,
|
|
|
|
gint *save);
|
2012-12-06 20:04:59 +01:00
|
|
|
GLIB_AVAILABLE_IN_ALL
|
2010-09-04 01:33:11 +02:00
|
|
|
gsize g_base64_encode_close (gboolean break_lines,
|
|
|
|
gchar *out,
|
|
|
|
gint *state,
|
|
|
|
gint *save);
|
2012-12-06 20:04:59 +01:00
|
|
|
GLIB_AVAILABLE_IN_ALL
|
2010-09-04 01:33:11 +02:00
|
|
|
gchar* g_base64_encode (const guchar *data,
|
|
|
|
gsize len) G_GNUC_MALLOC;
|
2012-12-06 20:04:59 +01:00
|
|
|
GLIB_AVAILABLE_IN_ALL
|
2010-09-04 01:33:11 +02:00
|
|
|
gsize g_base64_decode_step (const gchar *in,
|
|
|
|
gsize len,
|
|
|
|
guchar *out,
|
|
|
|
gint *state,
|
|
|
|
guint *save);
|
2012-12-06 20:04:59 +01:00
|
|
|
GLIB_AVAILABLE_IN_ALL
|
2010-09-04 01:33:11 +02:00
|
|
|
guchar *g_base64_decode (const gchar *text,
|
|
|
|
gsize *out_len) G_GNUC_MALLOC;
|
2012-12-06 20:04:59 +01:00
|
|
|
GLIB_AVAILABLE_IN_ALL
|
2010-09-04 01:33:11 +02:00
|
|
|
guchar *g_base64_decode_inplace (gchar *text,
|
|
|
|
gsize *out_len);
|
2009-01-13 20:59:32 +01:00
|
|
|
|
2006-04-04 15:03:23 +02:00
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __G_BASE64_H__ */
|