kolibrios/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
compile.bat
readme.txt
Tupfile.lua

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