kolibrios/programs/develop/libraries/base64/readme.txt
Albom e7a9812564 base64.obj src added
git-svn-id: svn://kolibrios.org@2331 a494cfbc-eb01-0410-851d-a64ba20cac60
2011-12-29 16:47:24 +00:00

12 lines
427 B
Plaintext
Raw Blame History

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