00001 /* 00002 * Worldvisions Weaver Software: 00003 * Copyright (C) 1997-2002 Net Integration Technologies, Inc. 00004 * 00005 * Functions for encoding and decoding strings in MIME's Base64 notation. 00006 * 00007 */ 00008 00009 #ifndef __BASE64_H 00010 #define __BASE64_H 00011 00015 extern char * base64_encode( const char * str, int length); 00019 extern char * base64_decode( char * str, int length); 00020 00021 #endif // __BASE64_H