crypto-algorithms.c

Basic implementations of standard cryptography algorithms, like AES and SHA-1
git clone git://git.finwo.net/lib/crypto-algorithms.c
Log | Files | Refs | README

commit e0ed714bb02796a0ae91268f93268ab625945a22
parent 8cdca1827f41a9bed47140c274e652714e93c40b
Author: finwo <finwo@pm.me>
Date:   Sat, 10 Jan 2026 22:15:02 +0100

Remove unused variable in base64.c

Diffstat:
Mbase64.c | 1-
1 file changed, 0 insertions(+), 1 deletion(-)

diff --git a/base64.c b/base64.c @@ -87,7 +87,6 @@ size_t base64_encode(const BYTE in[], BYTE out[], size_t len, int newline_flag) size_t base64_decode(const BYTE in[], BYTE out[], size_t len) { - BYTE ch; size_t idx, idx2, blks, blk_ceiling, left_over; if (in[len - 1] == '=')