From c0042966cfeebed28817a82edb42da4bc8d395e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20M=C3=B6ller?= <nisse@lysator.liu.se> Date: Sat, 19 Oct 2002 12:49:58 +0200 Subject: [PATCH] (base64_encode_length, base64_decode_length): New functions, corresponding to the macros with the same name. Rev: src/nettle/base64-meta.c:1.3 --- base64-meta.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/base64-meta.c b/base64-meta.c index 86785c3d..1c827db8 100644 --- a/base64-meta.c +++ b/base64-meta.c @@ -24,5 +24,18 @@ #include "base64.h" +/* Same as the macros with the same name */ +static unsigned +base64_encode_length(unsigned length) +{ + return BASE64_ENCODE_LENGTH(length); +} + +static unsigned +base64_decode_length(unsigned length) +{ + return BASE64_DECODE_LENGTH(length); +} + const struct nettle_armor nettle_base64 = _NETTLE_ARMOR(base64, BASE64); -- GitLab