Base64 library borrowed from HTTPServer implementation...

Dependents:   GSMandSdWork

Revision:
1:4920bc5699f3
Parent:
0:687575a500e5
--- a/Base64.cpp	Thu Dec 18 03:59:35 2014 +0000
+++ b/Base64.cpp	Tue Dec 30 03:17:43 2014 +0000
@@ -1,17 +1,36 @@
-//
-// Base64 Encoding and Decoding
-//
-// @note Copyright © 2013 by Smartware Computing, all rights reserved.
-//     Individuals may use this application for evaluation or non-commercial
-//     purposes. Within this restriction, changes may be made to this application
-//     as long as this copyright notice is retained. The user shall make
-//     clear that their work is a derived work, and not the original.
-//     Users of this application and sources accept this application "as is" and
-//     shall hold harmless Smartware Computing, for any undesired results while
-//     using this application - whether real or imagined.
-//
-// author David Smart, Smartware Computing
-//
+/**
+ * @file    Base64.cpp
+ * @brief   Base64 encoding and decoding (DERIVED WORK)
+ * @author  David Smart, Smartware Computing, Doug Anson ARM
+ * @version 1.0
+ * @see     
+ *
+ * Copyright (c) 2014
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ * @note Copyright © 2013 by Smartware Computing, all rights reserved.
+ *     Individuals may use this application for evaluation or non-commercial
+ *     purposes. Within this restriction, changes may be made to this application
+ *     as long as this copyright notice is retained. The user shall make
+ *     clear that their work is a derived work, and not the original.
+ *     Users of this application and sources accept this application "as is" and
+ *     shall hold harmless Smartware Computing, for any undesired results while
+ *     using this application - whether real or imagined.
+ *
+ * author David Smart, Smartware Computing
+ */
+ 
 #ifndef WIN32
 #include "mbed.h"
 #else