Student project by David Berlin and Boris Dogadov made for the Embedded Systems Workshop course given in Tel-Aviv University on 2010 by Sivan Toledo. Visit the project website for more details: http://davidberlin.co.il/sadna/ .

Dependencies:   EthernetNetIf NTPClient_NetServices mbed HTTPServer HTTPClient CyaSSL

Committer:
sivan_toledo
Date:
Sun Apr 17 21:30:10 2011 +0000
Revision:
0:3e7d6f496a67

        

Who changed what in which revision?

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