kolibrios-fun/programs/develop/libraries/base64
Anton Krotov 40faa04f49 base64.obj: decoding algorithm skips spaces, newlines and tabs
git-svn-id: svn://kolibrios.org@9637 a494cfbc-eb01-0410-851d-a64ba20cac60
2022-01-15 05:31:50 +00:00
..
base64.c base64.obj: decoding algorithm skips spaces, newlines and tabs 2022-01-15 05:31:50 +00:00
base64.h base64.obj src added 2011-12-29 16:47:24 +00:00
compile.bat base64.obj src added 2011-12-29 16:47:24 +00:00
readme.txt base64.obj src added 2011-12-29 16:47:24 +00:00
Tupfile.lua switch build system to Tup 2014-09-12 15:15:23 +00:00

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

Кодирование/декодирование base64
================================

int base64_encode(char inp[], char outp[], int len);
Кодирование массива inp длиной len в массив outp (строку с '\0'). Функция возвращает длину outp.

int base64_decode(char inp[], char outp[], int len);
Декодирование массива inp длиной len в массив outp (строку с '\0'). Функция возвращает длину outp.

================================
Albom, 2010