]> Pileus Git - ~andy/fetchmail/blob - base64.c
Prepare 6.5.0.beta1.
[~andy/fetchmail] / base64.c
1 /*
2  * base64.c -- base-64 conversion routines.
3  *
4  * For license terms, see the file COPYING in this directory.
5  *
6  * This base 64 encoding is defined in RFC2045 section 6.8,
7  * "Base64 Content-Transfer-Encoding", but lines must not be broken in the
8  * scheme used here.
9  */
10 #include "config.h"
11 #include "fetchmail.h"
12 #include <ctype.h>
13
14 static const char base64digits[] =
15    "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
16
17 #define BAD     -1
18 static const char base64val[] = {
19     BAD,BAD,BAD,BAD, BAD,BAD,BAD,BAD, BAD,BAD,BAD,BAD, BAD,BAD,BAD,BAD,
20     BAD,BAD,BAD,BAD, BAD,BAD,BAD,BAD, BAD,BAD,BAD,BAD, BAD,BAD,BAD,BAD,
21     BAD,BAD,BAD,BAD, BAD,BAD,BAD,BAD, BAD,BAD,BAD, 62, BAD,BAD,BAD, 63,
22      52, 53, 54, 55,  56, 57, 58, 59,  60, 61,BAD,BAD, BAD,BAD,BAD,BAD,
23     BAD,  0,  1,  2,   3,  4,  5,  6,   7,  8,  9, 10,  11, 12, 13, 14,
24      15, 16, 17, 18,  19, 20, 21, 22,  23, 24, 25,BAD, BAD,BAD,BAD,BAD,
25     BAD, 26, 27, 28,  29, 30, 31, 32,  33, 34, 35, 36,  37, 38, 39, 40,
26      41, 42, 43, 44,  45, 46, 47, 48,  49, 50, 51,BAD, BAD,BAD,BAD,BAD
27 };
28 #define DECODE64(c)  (isascii((unsigned char)(c)) ? base64val[c] : BAD)
29
30 int to64frombits(char *out, const void *in_, int inlen, size_t outlen)
31 /* raw bytes in quasi-big-endian order to base 64 string (NUL-terminated) */
32 {
33     int rc = 0;
34     const unsigned char *in = (const unsigned char *)in_;
35
36     for (; inlen >= 3; inlen -= 3)
37     {
38         if (outlen < 5) { rc = -1; goto fail; } /* buffer too small */
39         *out++ = base64digits[in[0] >> 2];
40         *out++ = base64digits[((in[0] << 4) & 0x30) | (in[1] >> 4)];
41         *out++ = base64digits[((in[1] << 2) & 0x3c) | (in[2] >> 6)];
42         *out++ = base64digits[in[2] & 0x3f];
43         in += 3;
44         outlen -= 4;
45     }
46     if (inlen > 0)
47     {
48         unsigned char fragment;
49     
50         if (outlen < 5) { rc = -1; goto fail; } /* buffer too small */
51         *out++ = base64digits[in[0] >> 2];
52         fragment = (in[0] << 4) & 0x30;
53         if (inlen > 1)
54             fragment |= in[1] >> 4;
55         *out++ = base64digits[fragment];
56         *out++ = (inlen < 2) ? '=' : base64digits[(in[1] << 2) & 0x3c];
57         *out++ = '=';
58     }
59 fail:
60     *out = '\0';
61     return rc;
62 }
63
64 int from64tobits(void *out_, const char *in, int maxlen)
65 /* base 64 to raw bytes in quasi-big-endian order, returning count of bytes */
66 /* maxlen limits output buffer size, set to zero to ignore */
67 {
68     int len = 0;
69     unsigned char digit1, digit2, digit3, digit4;
70     unsigned char *out = (unsigned char *)out_;
71
72     if (in[0] == '+' && in[1] == ' ')
73         in += 2;
74     if (*in == '\r')
75         return(0);
76
77     do {
78         digit1 = in[0];
79         if (DECODE64(digit1) == BAD)
80             return(-1);
81         digit2 = in[1];
82         if (DECODE64(digit2) == BAD)
83             return(-1);
84         digit3 = in[2];
85         if (digit3 != '=' && DECODE64(digit3) == BAD)
86             return(-1); 
87         digit4 = in[3];
88         if (digit4 != '=' && DECODE64(digit4) == BAD)
89             return(-1);
90         in += 4;
91         ++len;
92         if (maxlen && len > maxlen)
93             return(-1);
94         *out++ = (DECODE64(digit1) << 2) | (DECODE64(digit2) >> 4);
95         if (digit3 != '=')
96         {
97             ++len;
98             if (maxlen && len > maxlen)
99                 return(-1);
100             *out++ = ((DECODE64(digit2) << 4) & 0xf0) | (DECODE64(digit3) >> 2);
101             if (digit4 != '=')
102             {
103                 ++len;
104                 if (maxlen && len > maxlen)
105                     return(-1);
106                 *out++ = ((DECODE64(digit3) << 6) & 0xc0) | DECODE64(digit4);
107             }
108         }
109     } while 
110         (*in && *in != '\r' && digit4 != '=');
111
112     return len;
113 }
114
115 /* base64.c ends here */