Mercurial > hg > octave-lojdl > gnulib-hg
annotate lib/base64.h @ 10090:8ea8f3be5116
Sync gnulib base64 with coreutils base64.
* lib/base64.c (base64_decode_ctx): If a decode context structure
was passed in use it to ignore newlines. If a context structure
was _not_ passed in, continue to treat newlines as garbage (this
is the historical behavior). Formerly base64_decode.
(base64_decode_alloc_ctx): Formerly base64_decode_alloc. Now
takes a decode context structure.
* lib/base64.h (base64_decode): Macro for four-argument calls.
(base64_decode_alloc): Likewise.
* lib/base64.c (base64_decode_ctx): If a decode context structure
was passed in use it to ignore newlines. If a context structure
was _not_ passed in, continue to treat newlines as garbage (this
is the historical behavior). Formerly base64_decode.
(base64_decode_alloc_ctx): Formerly base64_decode_alloc. Now
takes a decode context structure.
* lib/base64.h (base64_decode): Macro for four-argument calls.
(base64_decode_alloc): Likewise.
author | Simon Josefsson <simon@josefsson.org> |
---|---|
date | Mon, 19 May 2008 19:32:00 +0200 |
parents | ca817b50a17f |
children | e8d2c6fc33ad |
rev | line source |
---|---|
5498 | 1 /* base64.h -- Encode binary data using printable characters. |
6662
ca817b50a17f
* base64.h: Indent #define's. From Jim Meyering <jim@meyering.net>.
Simon Josefsson <simon@josefsson.org>
parents:
5936
diff
changeset
|
2 Copyright (C) 2004, 2005, 2006 Free Software Foundation, Inc. |
5498 | 3 Written by Simon Josefsson. |
4 | |
5 This program is free software; you can redistribute it and/or modify | |
6 it under the terms of the GNU General Public License as published by | |
7 the Free Software Foundation; either version 2, or (at your option) | |
8 any later version. | |
9 | |
10 This program is distributed in the hope that it will be useful, | |
11 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 GNU General Public License for more details. | |
14 | |
15 You should have received a copy of the GNU General Public License | |
16 along with this program; if not, write to the Free Software Foundation, | |
5848
a48fb0e98c8c
*** empty log message ***
Paul Eggert <eggert@cs.ucla.edu>
parents:
5604
diff
changeset
|
17 Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ |
5498 | 18 |
19 #ifndef BASE64_H | |
20 # define BASE64_H | |
21 | |
22 /* Get size_t. */ | |
6662
ca817b50a17f
* base64.h: Indent #define's. From Jim Meyering <jim@meyering.net>.
Simon Josefsson <simon@josefsson.org>
parents:
5936
diff
changeset
|
23 # include <stddef.h> |
5498 | 24 |
25 /* Get bool. */ | |
6662
ca817b50a17f
* base64.h: Indent #define's. From Jim Meyering <jim@meyering.net>.
Simon Josefsson <simon@josefsson.org>
parents:
5936
diff
changeset
|
26 # include <stdbool.h> |
5498 | 27 |
28 /* This uses that the expression (n+(k-1))/k means the smallest | |
29 integer >= n/k, i.e., the ceiling of n/k. */ | |
6662
ca817b50a17f
* base64.h: Indent #define's. From Jim Meyering <jim@meyering.net>.
Simon Josefsson <simon@josefsson.org>
parents:
5936
diff
changeset
|
30 # define BASE64_LENGTH(inlen) ((((inlen) + 2) / 3) * 4) |
5498 | 31 |
10090
8ea8f3be5116
Sync gnulib base64 with coreutils base64.
Simon Josefsson <simon@josefsson.org>
parents:
6662
diff
changeset
|
32 struct base64_decode_context |
8ea8f3be5116
Sync gnulib base64 with coreutils base64.
Simon Josefsson <simon@josefsson.org>
parents:
6662
diff
changeset
|
33 { |
8ea8f3be5116
Sync gnulib base64 with coreutils base64.
Simon Josefsson <simon@josefsson.org>
parents:
6662
diff
changeset
|
34 unsigned int i; |
8ea8f3be5116
Sync gnulib base64 with coreutils base64.
Simon Josefsson <simon@josefsson.org>
parents:
6662
diff
changeset
|
35 char buf[4]; |
8ea8f3be5116
Sync gnulib base64 with coreutils base64.
Simon Josefsson <simon@josefsson.org>
parents:
6662
diff
changeset
|
36 }; |
8ea8f3be5116
Sync gnulib base64 with coreutils base64.
Simon Josefsson <simon@josefsson.org>
parents:
6662
diff
changeset
|
37 |
5604
f946018d919e
* base64.h (isbase64): Add.
Simon Josefsson <simon@josefsson.org>
parents:
5498
diff
changeset
|
38 extern bool isbase64 (char ch); |
f946018d919e
* base64.h (isbase64): Add.
Simon Josefsson <simon@josefsson.org>
parents:
5498
diff
changeset
|
39 |
5498 | 40 extern void base64_encode (const char *restrict in, size_t inlen, |
41 char *restrict out, size_t outlen); | |
42 | |
43 extern size_t base64_encode_alloc (const char *in, size_t inlen, char **out); | |
44 | |
10090
8ea8f3be5116
Sync gnulib base64 with coreutils base64.
Simon Josefsson <simon@josefsson.org>
parents:
6662
diff
changeset
|
45 extern void base64_decode_ctx_init (struct base64_decode_context *ctx); |
8ea8f3be5116
Sync gnulib base64 with coreutils base64.
Simon Josefsson <simon@josefsson.org>
parents:
6662
diff
changeset
|
46 |
8ea8f3be5116
Sync gnulib base64 with coreutils base64.
Simon Josefsson <simon@josefsson.org>
parents:
6662
diff
changeset
|
47 extern bool base64_decode_ctx (struct base64_decode_context *ctx, |
8ea8f3be5116
Sync gnulib base64 with coreutils base64.
Simon Josefsson <simon@josefsson.org>
parents:
6662
diff
changeset
|
48 const char *restrict in, size_t inlen, |
8ea8f3be5116
Sync gnulib base64 with coreutils base64.
Simon Josefsson <simon@josefsson.org>
parents:
6662
diff
changeset
|
49 char *restrict out, size_t *outlen); |
5498 | 50 |
10090
8ea8f3be5116
Sync gnulib base64 with coreutils base64.
Simon Josefsson <simon@josefsson.org>
parents:
6662
diff
changeset
|
51 extern bool base64_decode_alloc_ctx (struct base64_decode_context *ctx, |
8ea8f3be5116
Sync gnulib base64 with coreutils base64.
Simon Josefsson <simon@josefsson.org>
parents:
6662
diff
changeset
|
52 const char *in, size_t inlen, |
8ea8f3be5116
Sync gnulib base64 with coreutils base64.
Simon Josefsson <simon@josefsson.org>
parents:
6662
diff
changeset
|
53 char **out, size_t *outlen); |
8ea8f3be5116
Sync gnulib base64 with coreutils base64.
Simon Josefsson <simon@josefsson.org>
parents:
6662
diff
changeset
|
54 |
8ea8f3be5116
Sync gnulib base64 with coreutils base64.
Simon Josefsson <simon@josefsson.org>
parents:
6662
diff
changeset
|
55 #define base64_decode(in, inlen, out, outlen) \ |
8ea8f3be5116
Sync gnulib base64 with coreutils base64.
Simon Josefsson <simon@josefsson.org>
parents:
6662
diff
changeset
|
56 base64_decode_ctx (NULL, in, inlen, out, outlen) |
8ea8f3be5116
Sync gnulib base64 with coreutils base64.
Simon Josefsson <simon@josefsson.org>
parents:
6662
diff
changeset
|
57 |
8ea8f3be5116
Sync gnulib base64 with coreutils base64.
Simon Josefsson <simon@josefsson.org>
parents:
6662
diff
changeset
|
58 #define base64_decode_alloc(in, inlen, out, outlen) \ |
8ea8f3be5116
Sync gnulib base64 with coreutils base64.
Simon Josefsson <simon@josefsson.org>
parents:
6662
diff
changeset
|
59 base64_decode_alloc_ctx (NULL, in, inlen, out, outlen) |
5498 | 60 |
61 #endif /* BASE64_H */ |