diff options
author | Lorenz Kästle <lorenz.kaestle@netways.de> | 2023-03-09 10:03:48 (GMT) |
---|---|---|
committer | Lorenz Kästle <lorenz.kaestle@netways.de> | 2023-03-09 10:03:48 (GMT) |
commit | d0edb72a0c9bc1a28197ab4566928f7ee63a6d43 (patch) | |
tree | 6d524fb16d2dd1aa9f2d98529ef1de7a39f52700 /gl/base64.h | |
parent | 9fdc82f0543c6e2891c7079f70297f92e8ef4619 (diff) | |
parent | 269718094177fb8a7e3d3005d1310495009fe8c4 (diff) | |
download | monitoring-plugins-d0edb72a0c9bc1a28197ab4566928f7ee63a6d43.tar.gz |
Merge branch 'master' into RincewindsHat-patch-1
Diffstat (limited to 'gl/base64.h')
-rw-r--r-- | gl/base64.h | 41 |
1 files changed, 19 insertions, 22 deletions
diff --git a/gl/base64.h b/gl/base64.h index 343150c..9913765 100644 --- a/gl/base64.h +++ b/gl/base64.h | |||
@@ -1,28 +1,25 @@ | |||
1 | /* base64.h -- Encode binary data using printable characters. | 1 | /* base64.h -- Encode binary data using printable characters. |
2 | Copyright (C) 2004-2006, 2009-2013 Free Software Foundation, Inc. | 2 | Copyright (C) 2004-2006, 2009-2023 Free Software Foundation, Inc. |
3 | Written by Simon Josefsson. | 3 | Written by Simon Josefsson. |
4 | 4 | ||
5 | This program is free software; you can redistribute it and/or modify | 5 | This file is free software: you can redistribute it and/or modify |
6 | it under the terms of the GNU General Public License as published by | 6 | it under the terms of the GNU Lesser General Public License as |
7 | the Free Software Foundation; either version 3, or (at your option) | 7 | published by the Free Software Foundation; either version 2.1 of the |
8 | any later version. | 8 | License, or (at your option) any later version. |
9 | 9 | ||
10 | This program is distributed in the hope that it will be useful, | 10 | This file is distributed in the hope that it will be useful, |
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
13 | GNU General Public License for more details. | 13 | GNU Lesser General Public License for more details. |
14 | 14 | ||
15 | You should have received a copy of the GNU General Public License | 15 | You should have received a copy of the GNU Lesser General Public License |
16 | along with this program; if not, see <http://www.gnu.org/licenses/>. */ | 16 | along with this program. If not, see <https://www.gnu.org/licenses/>. */ |
17 | 17 | ||
18 | #ifndef BASE64_H | 18 | #ifndef BASE64_H |
19 | # define BASE64_H | 19 | # define BASE64_H |
20 | 20 | ||
21 | /* Get size_t. */ | 21 | /* Get idx_t. */ |
22 | # include <stddef.h> | 22 | # include <idx.h> |
23 | |||
24 | /* Get bool. */ | ||
25 | # include <stdbool.h> | ||
26 | 23 | ||
27 | # ifdef __cplusplus | 24 | # ifdef __cplusplus |
28 | extern "C" { | 25 | extern "C" { |
@@ -34,26 +31,26 @@ extern "C" { | |||
34 | 31 | ||
35 | struct base64_decode_context | 32 | struct base64_decode_context |
36 | { | 33 | { |
37 | unsigned int i; | 34 | int i; |
38 | char buf[4]; | 35 | char buf[4]; |
39 | }; | 36 | }; |
40 | 37 | ||
41 | extern bool isbase64 (char ch) _GL_ATTRIBUTE_CONST; | 38 | extern bool isbase64 (char ch) _GL_ATTRIBUTE_CONST; |
42 | 39 | ||
43 | extern void base64_encode (const char *restrict in, size_t inlen, | 40 | extern void base64_encode (const char *restrict in, idx_t inlen, |
44 | char *restrict out, size_t outlen); | 41 | char *restrict out, idx_t outlen); |
45 | 42 | ||
46 | extern size_t base64_encode_alloc (const char *in, size_t inlen, char **out); | 43 | extern idx_t base64_encode_alloc (const char *in, idx_t inlen, char **out); |
47 | 44 | ||
48 | extern void base64_decode_ctx_init (struct base64_decode_context *ctx); | 45 | extern void base64_decode_ctx_init (struct base64_decode_context *ctx); |
49 | 46 | ||
50 | extern bool base64_decode_ctx (struct base64_decode_context *ctx, | 47 | extern bool base64_decode_ctx (struct base64_decode_context *ctx, |
51 | const char *restrict in, size_t inlen, | 48 | const char *restrict in, idx_t inlen, |
52 | char *restrict out, size_t *outlen); | 49 | char *restrict out, idx_t *outlen); |
53 | 50 | ||
54 | extern bool base64_decode_alloc_ctx (struct base64_decode_context *ctx, | 51 | extern bool base64_decode_alloc_ctx (struct base64_decode_context *ctx, |
55 | const char *in, size_t inlen, | 52 | const char *in, idx_t inlen, |
56 | char **out, size_t *outlen); | 53 | char **out, idx_t *outlen); |
57 | 54 | ||
58 | #define base64_decode(in, inlen, out, outlen) \ | 55 | #define base64_decode(in, inlen, out, outlen) \ |
59 | base64_decode_ctx (NULL, in, inlen, out, outlen) | 56 | base64_decode_ctx (NULL, in, inlen, out, outlen) |