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 ef8c53cdfc690119bbde6dcb139a19d0e6e99214..2a96106c049d930b991a4f44a6c6f5ab3a402ac6 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 e9268bb58330c0aae522c65002ad149cbae48388..c66e5d7e588cf8099c75c5b854beef060e6081a2 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 bca42a89c69601e7dcc2f4f373282f77f191eb63..ec1d35b87622d795d62622787c9ea7c1c1890332 100644 (file)
  *  limitations under the License
  */
 
+/**
+ * @file crypto.c
+ * @brief
+ */
+
 #include <assert.h>
 #include <string.h>
 
index 4192585552c14249d5fae9d654005fa0a7181dad..b5f55bb1b127ab78b92543ba6e5bf986b4c999ac 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 71f928a56dd4f5d641c3dd26b329d67ea1947170..89eb1ff5a97f5665996513a5691390c75ab0881d 100644 (file)
  *  limitations under the License
  */
 
+/**
+ * @file digest.c
+ * @brief
+ */
+
 #include <assert.h>
 #include <stdint.h>
 
index 0237af9d673ac65d99c28b42f983b169f85d0017..b28c6be29ddff012c4c9015e1e0373982650eb76 100644 (file)
  *  limitations under the License
  */
 
+/**
+ * @file encrypt.c
+ * @brief
+ */
+
 #include <assert.h>
 #include <string.h>
 #include <stdint.h>
index 0e87776f71005e6b371997d26e1aed130e14ce81..9a2a102ece6c9efe4d6b5e569803d53123bcf33a 100644 (file)
@@ -17,8 +17,8 @@
  */
 
 /**
- * @file encrypt.h
- * @brief Internal API
+ * @file internal.h
+ * @brief
  */
 
 #ifndef YACA_INTERNAL_H
index 4c3b8a59d044a6f8f145c133d8ffdda09c242f3f..e3d5ffc859f8fa8dcfc53f736ffb1bf369b169c1 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 bbaa2caaf3fe18173699e6fd6f135385ebc09735..cbfe0cad5cac7f75a1c40879898398a094c38315 100644 (file)
  *  limitations under the License
  */
 
+/**
+ * @file seal.c
+ * @brief
+ */
+
 #include <assert.h>
 #include <string.h>
 #include <stdint.h>
index 33a285048ada088d8db3189a91d9869eb88d3a63..1a3a58970f4a3371d7a5024505b83c333a408d6b 100644 (file)
  *  limitations under the License
  */
 
+/**
+ * @file sign.c
+ * @brief
+ */
+
 #include <assert.h>
 #include <string.h>
 
index e55aea12fab3b1378b73ef054b2fc71319e54239..80414f88eab320cc3ca9823a56b9237544d5d9de 100644 (file)
  *  limitations under the License
  */
 
+/**
+ * @file simple.c
+ * @brief
+ */
+
 #include <assert.h>
 #include <limits.h>
 #include <stdint.h>