Dependents:   Lab3Translator lab3_Radio_design Sync WeatherPlatform_20110408 ... more

Committer:
mamezu
Date:
Thu Dec 09 01:36:34 2010 +0000
Revision:
0:62fac7f06c8d

        

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mamezu 0:62fac7f06c8d 1
mamezu 0:62fac7f06c8d 2 /*
mamezu 0:62fac7f06c8d 3 Copyright (c) 2010 Donatien Garnier (donatiengar [at] gmail [dot] com)
mamezu 0:62fac7f06c8d 4
mamezu 0:62fac7f06c8d 5 Permission is hereby granted, free of charge, to any person obtaining a copy
mamezu 0:62fac7f06c8d 6 of this software and associated documentation files (the "Software"), to deal
mamezu 0:62fac7f06c8d 7 in the Software without restriction, including without limitation the rights
mamezu 0:62fac7f06c8d 8 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
mamezu 0:62fac7f06c8d 9 copies of the Software, and to permit persons to whom the Software is
mamezu 0:62fac7f06c8d 10 furnished to do so, subject to the following conditions:
mamezu 0:62fac7f06c8d 11
mamezu 0:62fac7f06c8d 12 The above copyright notice and this permission notice shall be included in
mamezu 0:62fac7f06c8d 13 all copies or substantial portions of the Software.
mamezu 0:62fac7f06c8d 14
mamezu 0:62fac7f06c8d 15 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
mamezu 0:62fac7f06c8d 16 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
mamezu 0:62fac7f06c8d 17 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
mamezu 0:62fac7f06c8d 18 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
mamezu 0:62fac7f06c8d 19 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
mamezu 0:62fac7f06c8d 20 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
mamezu 0:62fac7f06c8d 21 THE SOFTWARE.
mamezu 0:62fac7f06c8d 22 */
mamezu 0:62fac7f06c8d 23
mamezu 0:62fac7f06c8d 24 #ifndef BASE64_H
mamezu 0:62fac7f06c8d 25 #define BASE64_H
mamezu 0:62fac7f06c8d 26
mamezu 0:62fac7f06c8d 27 #include <string>
mamezu 0:62fac7f06c8d 28 using std::string;
mamezu 0:62fac7f06c8d 29
mamezu 0:62fac7f06c8d 30 #ifdef __cplusplus
mamezu 0:62fac7f06c8d 31 extern "C" {
mamezu 0:62fac7f06c8d 32 #endif
mamezu 0:62fac7f06c8d 33
mamezu 0:62fac7f06c8d 34 //Originaly from Rolf's iputil.h
mamezu 0:62fac7f06c8d 35
mamezu 0:62fac7f06c8d 36 unsigned int base64enc_len(const char *str);
mamezu 0:62fac7f06c8d 37
mamezu 0:62fac7f06c8d 38 void base64enc(const char *input, unsigned int length, char *output);
mamezu 0:62fac7f06c8d 39
mamezu 0:62fac7f06c8d 40 #ifdef __cplusplus
mamezu 0:62fac7f06c8d 41 }
mamezu 0:62fac7f06c8d 42 #endif
mamezu 0:62fac7f06c8d 43
mamezu 0:62fac7f06c8d 44 class Base64
mamezu 0:62fac7f06c8d 45 {
mamezu 0:62fac7f06c8d 46 public:
mamezu 0:62fac7f06c8d 47 static string encode(const string& str)
mamezu 0:62fac7f06c8d 48 {
mamezu 0:62fac7f06c8d 49 char* out = new char[ base64enc_len(str.c_str()) ];
mamezu 0:62fac7f06c8d 50 base64enc(str.c_str(), str.length(), out);
mamezu 0:62fac7f06c8d 51 string res(out);
mamezu 0:62fac7f06c8d 52 delete[] out;
mamezu 0:62fac7f06c8d 53 return res;
mamezu 0:62fac7f06c8d 54 }
mamezu 0:62fac7f06c8d 55 };
mamezu 0:62fac7f06c8d 56
mamezu 0:62fac7f06c8d 57 #endif /* LWIP_UTILS_H */