00001 /* 00002 Copyright (C) 2005-2007 Feeling Software Inc. 00003 Portions of the code are: 00004 Copyright (C) 2005-2007 Sony Computer Entertainment America 00005 00006 MIT License: http://www.opensource.org/licenses/mit-license.php 00007 */ 00008 /* 00009 This file was mostly inspired by source code found at: 00010 http://www.codeguru.com/cpp/cpp/algorithms/article.php/c5099/ 00011 */ 00012 00019 #ifndef _FUTILS_BASE64_H_ 00020 #define _FUTILS_BASE64_H_ 00021 00022 namespace FUBase64 00023 { 00028 FCOLLADA_EXPORT void encode(const UInt8List& input, UInt8List& output); 00029 00035 FCOLLADA_EXPORT void decode(const UInt8List& input, UInt8List& output); 00036 00037 } // namespace FUBase64 00038 00039 #endif // _FUTILS_BASE64_H_