Select Git revision
operators.c
-
Fredrik Hübinette (Hubbe) authored
Rev: src/acconfig.h:1.14 Rev: src/builtin_functions.c:1.59 Rev: src/builtin_functions.h:1.5 Rev: src/compilation.h:1.4 Rev: src/configure.in:1.149 Rev: src/cpp.c:1.3 Rev: src/docode.c:1.24 Rev: src/docode.h:1.4 Rev: src/gc.c:1.24 Rev: src/interpret.c:1.57 Rev: src/interpret.h:1.16 Rev: src/language.yacc:1.51 Rev: src/las.c:1.40 Rev: src/las.h:1.9 Rev: src/lex.c:1.37 Rev: src/lex.h:1.7 Rev: src/main.c:1.32 Rev: src/modules/Image/blit.c:1.26 Rev: src/modules/Image/colortable.c:1.33 Rev: src/modules/Image/dct.c:1.11 Rev: src/modules/Image/image.c:1.73 Rev: src/modules/Image/matrix.c:1.13 Rev: src/modules/Image/operator.c:1.11 Rev: src/modules/Image/pattern.c:1.11 Rev: src/modules/Image/pnm.c:1.9 Rev: src/modules/Image/polyfill.c:1.18 Rev: src/modules/Image/togif.c:1.29 Rev: src/modules/Image/x.c:1.17 Rev: src/modules/Pipe/pipe.c:1.15 Rev: src/modules/Regexp/glue.c:1.9 Rev: src/modules/_Crypto/cbc.c:1.10 Rev: src/modules/_Crypto/crypto.c:1.24 Rev: src/modules/_Crypto/des.c:1.11 Rev: src/modules/_Crypto/pipe.c:1.11 Rev: src/modules/_Crypto/sha.c:1.9 Rev: src/modules/files/socktest.pike:1.6 Rev: src/modules/system/system.c:1.37 Rev: src/object.c:1.31 Rev: src/object.h:1.13 Rev: src/opcodes.c:1.10 Rev: src/operators.c:1.22 Rev: src/peep.c:1.16 Rev: src/peep.in:1.9 Rev: src/pike_types.c:1.27 Rev: src/pike_types.h:1.6 Rev: src/program.c:1.48 Rev: src/program.h:1.24 Rev: src/program_areas.h:1.2 Rev: src/stralloc.c:1.21 Rev: src/stralloc.h:1.10 Rev: src/svalue.c:1.18 Rev: src/testsuite.in:1.64 Rev: src/threads.c:1.51 Rev: src/threads.h:1.26
Fredrik Hübinette (Hubbe) authoredRev: src/acconfig.h:1.14 Rev: src/builtin_functions.c:1.59 Rev: src/builtin_functions.h:1.5 Rev: src/compilation.h:1.4 Rev: src/configure.in:1.149 Rev: src/cpp.c:1.3 Rev: src/docode.c:1.24 Rev: src/docode.h:1.4 Rev: src/gc.c:1.24 Rev: src/interpret.c:1.57 Rev: src/interpret.h:1.16 Rev: src/language.yacc:1.51 Rev: src/las.c:1.40 Rev: src/las.h:1.9 Rev: src/lex.c:1.37 Rev: src/lex.h:1.7 Rev: src/main.c:1.32 Rev: src/modules/Image/blit.c:1.26 Rev: src/modules/Image/colortable.c:1.33 Rev: src/modules/Image/dct.c:1.11 Rev: src/modules/Image/image.c:1.73 Rev: src/modules/Image/matrix.c:1.13 Rev: src/modules/Image/operator.c:1.11 Rev: src/modules/Image/pattern.c:1.11 Rev: src/modules/Image/pnm.c:1.9 Rev: src/modules/Image/polyfill.c:1.18 Rev: src/modules/Image/togif.c:1.29 Rev: src/modules/Image/x.c:1.17 Rev: src/modules/Pipe/pipe.c:1.15 Rev: src/modules/Regexp/glue.c:1.9 Rev: src/modules/_Crypto/cbc.c:1.10 Rev: src/modules/_Crypto/crypto.c:1.24 Rev: src/modules/_Crypto/des.c:1.11 Rev: src/modules/_Crypto/pipe.c:1.11 Rev: src/modules/_Crypto/sha.c:1.9 Rev: src/modules/files/socktest.pike:1.6 Rev: src/modules/system/system.c:1.37 Rev: src/object.c:1.31 Rev: src/object.h:1.13 Rev: src/opcodes.c:1.10 Rev: src/operators.c:1.22 Rev: src/peep.c:1.16 Rev: src/peep.in:1.9 Rev: src/pike_types.c:1.27 Rev: src/pike_types.h:1.6 Rev: src/program.c:1.48 Rev: src/program.h:1.24 Rev: src/program_areas.h:1.2 Rev: src/stralloc.c:1.21 Rev: src/stralloc.h:1.10 Rev: src/svalue.c:1.18 Rev: src/testsuite.in:1.64 Rev: src/threads.c:1.51 Rev: src/threads.h:1.26
base64-meta.c NaN GiB
/* base64-meta.c */
/* nettle, low-level cryptographics library
*
* Copyright (C) 2002 Dan Egnor, Niels Möller
*
* The nettle library is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; either version 2.1 of the License, or (at your
* option) any later version.
*
* The nettle library is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
* License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with the nettle library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02111-1301, USA.
*/
#if HAVE_CONFIG_H
# include "config.h"
#endif
#include "nettle-meta.h"
#include "base64.h"
/* Same as the macros with the same name */
static nettle_armor_length_func base64_encode_length;
static size_t
base64_encode_length(size_t length)
{
return BASE64_ENCODE_LENGTH(length);
}
static nettle_armor_length_func base64_decode_length;
static size_t
base64_decode_length(size_t length)
{
return BASE64_DECODE_LENGTH(length);
}
const struct nettle_armor nettle_base64
= _NETTLE_ARMOR(base64, BASE64);