]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/lib/base64.h
Merge the Bacula Encryption branch to HEAD.
[bacula/bacula] / bacula / src / lib / base64.h
1 /*
2  *   Generic base 64 input and output routines
3  *
4  *    Written by Kern E. Sibbald, March MM.
5  *
6  *   Version $Id$
7  */
8
9 /*
10    Copyright (C) 2000-2005 Kern Sibbald and John Walker
11
12    This program is free software; you can redistribute it and/or
13    modify it under the terms of the GNU General Public License as
14    published by the Free Software Foundation; either version 2 of
15    the License, or (at your option) any later version.
16
17    This program is distributed in the hope that it will be useful,
18    but WITHOUT ANY WARRANTY; without even the implied warranty of
19    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20    General Public License for more details.
21
22    You should have received a copy of the GNU General Public
23    License along with this program; if not, write to the Free
24    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
25    MA 02111-1307, USA.
26
27  */
28
29 /* Maximum size of len bytes after base64 encoding */
30 #define BASE64_SIZE(len) (((len + 3 - (len % 3)) / 3) * 4)