Base64 library borrowed from HTTPServer implementation...

Dependents:   GSMandSdWork

Files at this revision

API Documentation at this revision

Comitter:
ansond
Date:
Tue Dec 30 03:17:43 2014 +0000
Parent:
0:687575a500e5
Commit message:
updated header

Changed in this revision

Base64.cpp Show annotated file Show diff for this revision Revisions of this file
Base64.h Show annotated file Show diff for this revision Revisions of this file
diff -r 687575a500e5 -r 4920bc5699f3 Base64.cpp
--- 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
diff -r 687575a500e5 -r 4920bc5699f3 Base64.h
--- a/Base64.h	Thu Dec 18 03:59:35 2014 +0000
+++ b/Base64.h	Tue Dec 30 03:17:43 2014 +0000
@@ -1,3 +1,36 @@
+/**
+ * @file    Base64.h
+ * @brief   Base64 encoding and decoding header (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 BASE64_H
 #define BASE64_H