00001 /* 00002 +----------------------------------------------------------------------+ 00003 | PHP HTML Embedded Scripting Language Version 3.0 | 00004 +----------------------------------------------------------------------+ 00005 | Copyright (c) 1997,1998 PHP Development Team (See Credits file) | 00006 +----------------------------------------------------------------------+ 00007 | This program is free software; you can redistribute it and/or modify | 00008 | it under the terms of one of the following licenses: | 00009 | | 00010 | A) the GNU General Public License as published by the Free Software | 00011 | Foundation; either version 2 of the License, or (at your option) | 00012 | any later version. | 00013 | | 00014 | B) the PHP License as published by the PHP Development Team and | 00015 | included in the distribution in the file: LICENSE | 00016 | | 00017 | This program is distributed in the hope that it will be useful, | 00018 | but WITHOUT ANY WARRANTY; without even the implied warranty of | 00019 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 00020 | GNU General Public License for more details. | 00021 | | 00022 | You should have received a copy of both licenses referred to here. | 00023 | If you did not, or have any questions about PHP licensing, please | 00024 | contact core@php.net. | 00025 +----------------------------------------------------------------------+ 00026 | Author: Jim Winstead (jimw@php.net) | 00027 +----------------------------------------------------------------------+ 00028 */ 00029 00030 #ifndef BASE64_H 00031 #define BASE64_H 00032 00033 extern unsigned char *php3_base64_encode(const unsigned char *, int, int *); 00034 extern unsigned char *php3_base64_decode(const unsigned char *, int, int *); 00035 00036 #endif /* BASE64_H */