Annotation of parser3/src/include/pa_base64.h, revision 1.1
1.1 ! moko 1: /** @file
! 2: Parser: base64 functions.
! 3:
! 4: Copyright (c) 2001-2017 Art. Lebedev Studio (http://www.artlebedev.com)
! 5: Author: Alexandr Petrosian <paf@design.ru> (http://paf.design.ru)
! 6: */
! 7:
! 8: #ifndef PA_BASE64_H
! 9: #define PA_BASE64_H
! 10:
! 11: #define IDENT_PA_BASE64_H "$Id: pa_base64.h,v 1.1 2019/09/06 10:17:07 moko Exp $"
! 12:
! 13: #include "pa_string.h"
! 14:
! 15: void pa_base64_decode(const char *in, size_t in_size, char*& result, size_t& result_size, bool strict=false);
! 16: char* pa_base64_encode(const char *in, size_t in_size);
! 17: char* pa_base64_encode(const String& file_spec);
! 18:
! 19: #endif
E-mail: