Cleanup boilerplate notices. 98/71498/2
authorDariusz Michaluk <d.michaluk@samsung.com>
Wed, 25 May 2016 13:48:23 +0000 (15:48 +0200)
committerKrzysztof Jackiewicz <k.jackiewicz@samsung.com>
Fri, 27 May 2016 08:31:13 +0000 (01:31 -0700)
Change-Id: I162fe9cdfa095a4aefe0d14e83b55fd2a786c4d3

examples/misc.c
examples/sign.c
src/crypto.c
src/debug.c
src/digest.c
src/encrypt.c
src/internal.h
src/key.c
src/seal.c
src/sign.c
src/simple.c

index ef8c53c..2a96106 100644 (file)
@@ -1,3 +1,26 @@
+/*
+ *  Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved
+ *
+ *  Contact: Krzysztof Jackiewicz <k.jackiewicz@samsung.com>
+ *
+ *  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
+ */
+
+/**
+ * @file misc.c
+ * @brief
+ */
+
 #include <stdio.h>
 #include <stdarg.h>
 #include <string.h>
index e9268bb..c66e5d7 100644 (file)
@@ -1,7 +1,7 @@
 /*
  *  Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved
  *
- *  Contact:
+ *  Contact: Krzysztof Jackiewicz <k.jackiewicz@samsung.com>
  *
  *  Licensed under the Apache License, Version 2.0 (the "License");
  *  you may not use this file except in compliance with the License.
index bca42a8..ec1d35b 100644 (file)
  *  limitations under the License
  */
 
+/**
+ * @file crypto.c
+ * @brief
+ */
+
 #include <assert.h>
 #include <string.h>
 
index 4192585..b5f55bb 100644 (file)
@@ -1,5 +1,7 @@
 /*
- *  Copyright (c) 2000 - 2016 Samsung Electronics Co., Ltd All Rights Reserved
+ *  Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved
+ *
+ *  Contact: Krzysztof Jackiewicz <k.jackiewicz@samsung.com>
  *
  *  Licensed under the Apache License, Version 2.0 (the "License");
  *  you may not use this file except in compliance with the License.
  *  See the License for the specific language governing permissions and
  *  limitations under the License
  */
-/*
- * @file       debug.c
- * @author     Krzysztof Jackiewicz (k.jackiewicz@samsung.com)
+
+/**
+ * @file debug.c
+ * @brief
  */
 
 #include <stdio.h>
index 71f928a..89eb1ff 100644 (file)
  *  limitations under the License
  */
 
+/**
+ * @file digest.c
+ * @brief
+ */
+
 #include <assert.h>
 #include <stdint.h>
 
index 0237af9..b28c6be 100644 (file)
  *  limitations under the License
  */
 
+/**
+ * @file encrypt.c
+ * @brief
+ */
+
 #include <assert.h>
 #include <string.h>
 #include <stdint.h>
index 0e87776..9a2a102 100644 (file)
@@ -17,8 +17,8 @@
  */
 
 /**
- * @file encrypt.h
- * @brief Internal API
+ * @file internal.h
+ * @brief
  */
 
 #ifndef YACA_INTERNAL_H
index 4c3b8a5..e3d5ffc 100644 (file)
--- a/src/key.c
+++ b/src/key.c
  *  limitations under the License
  */
 
+/**
+ * @file key.c
+ * @brief
+ */
+
 #include <assert.h>
 #include <stdlib.h>
 #include <string.h>
index bbaa2ca..cbfe0ca 100644 (file)
  *  limitations under the License
  */
 
+/**
+ * @file seal.c
+ * @brief
+ */
+
 #include <assert.h>
 #include <string.h>
 #include <stdint.h>
index 33a2850..1a3a589 100644 (file)
  *  limitations under the License
  */
 
+/**
+ * @file sign.c
+ * @brief
+ */
+
 #include <assert.h>
 #include <string.h>
 
index e55aea1..80414f8 100644 (file)
  *  limitations under the License
  */
 
+/**
+ * @file simple.c
+ * @brief
+ */
+
 #include <assert.h>
 #include <limits.h>
 #include <stdint.h>