Sophie

Sophie

distrib > Mandriva > 2011.0 > i586 > media > contrib-release-debug > by-pkgid > a8e1510b71932ccd6b0a74fe1af13b93 > files > 13

freepops-debug-0.2.9-4mdv2011.0.i586.rpm

/******************************************************************************
 * $Id: base64.h,v 1.4 2007/01/13 22:36:23 gareuselesinge Exp $
 * This file is part of liberopops (http://liberopops.sf.net)                 *
 * This file is distributed under the terms of GNU GPL license.               *
 ******************************************************************************/


/******************************************************************************/
 /*!
  * \file   base64.h
  * \brief  base64 encoding
  * \author Enrico Tassi <gareuselesinge@users.sourceforge.net>
  */
/******************************************************************************/

#ifndef _BASE64_H_
#define _BASE64_H_

//! base64 encoding
char *base64enc_raw(const char *input,size_t len);
//! base64 encoding
char *base64enc(const char *input);
//! base64 decoding
char *base64dec(const char *input, size_t len);


#endif