aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/pubkey/mce
diff options
context:
space:
mode:
authorlloyd <[email protected]>2015-01-10 04:15:52 +0000
committerlloyd <[email protected]>2015-01-10 04:15:52 +0000
commit3f16815c9e6349c4a0eeb6a6ecfe004e5d31e287 (patch)
treee6660bee8f66909b5508c5b4f1c235bf7bdbe817 /src/lib/pubkey/mce
parent832f538e603b6660644c26beb063d0ac81549746 (diff)
Ensure all files have copyright and license info.
Update license header line to specify the terms and refer to the file, neither of which it included before.
Diffstat (limited to 'src/lib/pubkey/mce')
-rw-r--r--src/lib/pubkey/mce/binary_matrix.cpp2
-rw-r--r--src/lib/pubkey/mce/binary_matrix.h2
-rw-r--r--src/lib/pubkey/mce/code_based_key_gen.cpp2
-rw-r--r--src/lib/pubkey/mce/code_based_key_gen.h2
-rw-r--r--src/lib/pubkey/mce/code_based_util.h2
-rw-r--r--src/lib/pubkey/mce/gf2m_rootfind_dcmp.cpp2
-rw-r--r--src/lib/pubkey/mce/gf2m_rootfind_dcmp.h2
-rw-r--r--src/lib/pubkey/mce/gf2m_small_m.cpp17
-rw-r--r--src/lib/pubkey/mce/gf2m_small_m.h2
-rw-r--r--src/lib/pubkey/mce/goppa_code.cpp2
-rw-r--r--src/lib/pubkey/mce/goppa_code.h2
-rw-r--r--src/lib/pubkey/mce/mce_kem.cpp2
-rw-r--r--src/lib/pubkey/mce/mce_kem.h2
-rw-r--r--src/lib/pubkey/mce/mceliece.cpp2
-rw-r--r--src/lib/pubkey/mce/mceliece.h2
-rw-r--r--src/lib/pubkey/mce/mceliece_key.cpp2
-rw-r--r--src/lib/pubkey/mce/mceliece_key.h2
-rw-r--r--src/lib/pubkey/mce/polyn_gf2m.cpp2
-rw-r--r--src/lib/pubkey/mce/polyn_gf2m.h2
-rw-r--r--src/lib/pubkey/mce/workfactor.cpp3
20 files changed, 29 insertions, 27 deletions
diff --git a/src/lib/pubkey/mce/binary_matrix.cpp b/src/lib/pubkey/mce/binary_matrix.cpp
index 4670a75c4..30d04b987 100644
--- a/src/lib/pubkey/mce/binary_matrix.cpp
+++ b/src/lib/pubkey/mce/binary_matrix.cpp
@@ -5,7 +5,7 @@
* (C) 2014 cryptosource GmbH
* (C) 2014 Falko Strenzke [email protected]
*
- * Distributed under the terms of the Botan license
+ * Botan is released under the Simplified BSD License (see license.txt)
*
*/
diff --git a/src/lib/pubkey/mce/binary_matrix.h b/src/lib/pubkey/mce/binary_matrix.h
index a5438666d..29d09cf45 100644
--- a/src/lib/pubkey/mce/binary_matrix.h
+++ b/src/lib/pubkey/mce/binary_matrix.h
@@ -5,7 +5,7 @@
* (C) 2014 cryptosource GmbH
* (C) 2014 Falko Strenzke [email protected]
*
- * Distributed under the terms of the Botan license
+ * Botan is released under the Simplified BSD License (see license.txt)
*
*/
diff --git a/src/lib/pubkey/mce/code_based_key_gen.cpp b/src/lib/pubkey/mce/code_based_key_gen.cpp
index 997e51685..3936e6960 100644
--- a/src/lib/pubkey/mce/code_based_key_gen.cpp
+++ b/src/lib/pubkey/mce/code_based_key_gen.cpp
@@ -5,7 +5,7 @@
* (C) 2014 cryptosource GmbH
* (C) 2014 Falko Strenzke [email protected]
*
- * Distributed under the terms of the Botan license
+ * Botan is released under the Simplified BSD License (see license.txt)
*
*/
diff --git a/src/lib/pubkey/mce/code_based_key_gen.h b/src/lib/pubkey/mce/code_based_key_gen.h
index 15b417fb6..6764e13d6 100644
--- a/src/lib/pubkey/mce/code_based_key_gen.h
+++ b/src/lib/pubkey/mce/code_based_key_gen.h
@@ -5,7 +5,7 @@
* (C) 2014 cryptosource GmbH
* (C) 2014 Falko Strenzke [email protected]
*
- * Distributed under the terms of the Botan license
+ * Botan is released under the Simplified BSD License (see license.txt)
*
*/
diff --git a/src/lib/pubkey/mce/code_based_util.h b/src/lib/pubkey/mce/code_based_util.h
index fd8bcaa49..6b567dbff 100644
--- a/src/lib/pubkey/mce/code_based_util.h
+++ b/src/lib/pubkey/mce/code_based_util.h
@@ -5,7 +5,7 @@
* (C) 2014 cryptosource GmbH
* (C) 2014 Falko Strenzke [email protected]
*
- * Distributed under the terms of the Botan license
+ * Botan is released under the Simplified BSD License (see license.txt)
*
*/
diff --git a/src/lib/pubkey/mce/gf2m_rootfind_dcmp.cpp b/src/lib/pubkey/mce/gf2m_rootfind_dcmp.cpp
index 5782f5e4c..4f47de815 100644
--- a/src/lib/pubkey/mce/gf2m_rootfind_dcmp.cpp
+++ b/src/lib/pubkey/mce/gf2m_rootfind_dcmp.cpp
@@ -2,7 +2,7 @@
* (C) 2014 cryptosource GmbH
* (C) 2014 Falko Strenzke [email protected]
*
- * Distributed under the terms of the Botan license
+ * Botan is released under the Simplified BSD License (see license.txt)
*
*/
diff --git a/src/lib/pubkey/mce/gf2m_rootfind_dcmp.h b/src/lib/pubkey/mce/gf2m_rootfind_dcmp.h
index 79874fe7e..5914ad3ae 100644
--- a/src/lib/pubkey/mce/gf2m_rootfind_dcmp.h
+++ b/src/lib/pubkey/mce/gf2m_rootfind_dcmp.h
@@ -2,7 +2,7 @@
* (C) 2014 cryptosource GmbH
* (C) 2014 Falko Strenzke [email protected]
*
- * Distributed under the terms of the Botan license
+ * Botan is released under the Simplified BSD License (see license.txt)
*/
#ifndef BOTAN_GF2M_ROOTFIND_DCMP_H__
diff --git a/src/lib/pubkey/mce/gf2m_small_m.cpp b/src/lib/pubkey/mce/gf2m_small_m.cpp
index 76e5b0efd..d5007a082 100644
--- a/src/lib/pubkey/mce/gf2m_small_m.cpp
+++ b/src/lib/pubkey/mce/gf2m_small_m.cpp
@@ -1,11 +1,12 @@
-/**
- * (C) Copyright Projet SECRET, INRIA, Rocquencourt
- * (C) Bhaskar Biswas and Nicolas Sendrier
- *
- * (C) 2014 cryptosource GmbH
- * (C) 2014 Falko Strenzke [email protected]
- */
-
+/*
+* (C) Copyright Projet SECRET, INRIA, Rocquencourt
+* (C) Bhaskar Biswas and Nicolas Sendrier
+*
+* (C) 2014 cryptosource GmbH
+* (C) 2014 Falko Strenzke [email protected]
+*
+* Botan is released under the Simplified BSD License (see license.txt)
+*/
#include <botan/gf2m_small_m.h>
#include <botan/code_based_util.h>
diff --git a/src/lib/pubkey/mce/gf2m_small_m.h b/src/lib/pubkey/mce/gf2m_small_m.h
index 9fc42f1fc..223dfd511 100644
--- a/src/lib/pubkey/mce/gf2m_small_m.h
+++ b/src/lib/pubkey/mce/gf2m_small_m.h
@@ -5,7 +5,7 @@
* (C) 2014 cryptosource GmbH
* (C) 2014 Falko Strenzke [email protected]
*
- * Distributed under the terms of the Botan license
+ * Botan is released under the Simplified BSD License (see license.txt)
*
*/
diff --git a/src/lib/pubkey/mce/goppa_code.cpp b/src/lib/pubkey/mce/goppa_code.cpp
index bc8fb7b32..bb335e994 100644
--- a/src/lib/pubkey/mce/goppa_code.cpp
+++ b/src/lib/pubkey/mce/goppa_code.cpp
@@ -5,7 +5,7 @@
* (C) 2014 cryptosource GmbH
* (C) 2014 Falko Strenzke [email protected]
*
- * Distributed under the terms of the Botan license
+ * Botan is released under the Simplified BSD License (see license.txt)
*
*/
diff --git a/src/lib/pubkey/mce/goppa_code.h b/src/lib/pubkey/mce/goppa_code.h
index 463a2eb72..377cd9b3d 100644
--- a/src/lib/pubkey/mce/goppa_code.h
+++ b/src/lib/pubkey/mce/goppa_code.h
@@ -5,7 +5,7 @@
* (C) 2014 cryptosource GmbH
* (C) 2014 Falko Strenzke [email protected]
*
- * Distributed under the terms of the Botan license
+ * Botan is released under the Simplified BSD License (see license.txt)
*
*/
diff --git a/src/lib/pubkey/mce/mce_kem.cpp b/src/lib/pubkey/mce/mce_kem.cpp
index 31dc2cfe2..dd4af4acc 100644
--- a/src/lib/pubkey/mce/mce_kem.cpp
+++ b/src/lib/pubkey/mce/mce_kem.cpp
@@ -2,7 +2,7 @@
* (C) 2014 cryptosource GmbH
* (C) 2014 Falko Strenzke [email protected]
*
- * Distributed under the terms of the Botan license
+ * Botan is released under the Simplified BSD License (see license.txt)
*
*/
diff --git a/src/lib/pubkey/mce/mce_kem.h b/src/lib/pubkey/mce/mce_kem.h
index 2bb1edba5..14d5cd678 100644
--- a/src/lib/pubkey/mce/mce_kem.h
+++ b/src/lib/pubkey/mce/mce_kem.h
@@ -2,7 +2,7 @@
* (C) 2014 cryptosource GmbH
* (C) 2014 Falko Strenzke [email protected]
*
- * Distributed under the terms of the Botan license
+ * Botan is released under the Simplified BSD License (see license.txt)
*
*/
diff --git a/src/lib/pubkey/mce/mceliece.cpp b/src/lib/pubkey/mce/mceliece.cpp
index 69d5eb008..d0c36a92e 100644
--- a/src/lib/pubkey/mce/mceliece.cpp
+++ b/src/lib/pubkey/mce/mceliece.cpp
@@ -5,7 +5,7 @@
* (C) 2014 cryptosource GmbH
* (C) 2014 Falko Strenzke [email protected]
*
- * Distributed under the terms of the Botan license
+ * Botan is released under the Simplified BSD License (see license.txt)
*
*/
diff --git a/src/lib/pubkey/mce/mceliece.h b/src/lib/pubkey/mce/mceliece.h
index 6e6dffe02..b0246ac88 100644
--- a/src/lib/pubkey/mce/mceliece.h
+++ b/src/lib/pubkey/mce/mceliece.h
@@ -5,7 +5,7 @@
* (C) 2014 cryptosource GmbH
* (C) 2014 Falko Strenzke [email protected]
*
- * Distributed under the terms of the Botan license
+ * Botan is released under the Simplified BSD License (see license.txt)
*
*/
diff --git a/src/lib/pubkey/mce/mceliece_key.cpp b/src/lib/pubkey/mce/mceliece_key.cpp
index 15fba67e2..e0f8b4cd6 100644
--- a/src/lib/pubkey/mce/mceliece_key.cpp
+++ b/src/lib/pubkey/mce/mceliece_key.cpp
@@ -5,7 +5,7 @@
* (C) 2014 cryptosource GmbH
* (C) 2014 Falko Strenzke [email protected]
*
- * Distributed under the terms of the Botan license
+ * Botan is released under the Simplified BSD License (see license.txt)
*
*/
diff --git a/src/lib/pubkey/mce/mceliece_key.h b/src/lib/pubkey/mce/mceliece_key.h
index d8b4b59ce..3a0d0eea8 100644
--- a/src/lib/pubkey/mce/mceliece_key.h
+++ b/src/lib/pubkey/mce/mceliece_key.h
@@ -5,7 +5,7 @@
* (C) 2014 cryptosource GmbH
* (C) 2014 Falko Strenzke [email protected]
*
- * Distributed under the terms of the Botan license
+ * Botan is released under the Simplified BSD License (see license.txt)
*
*/
diff --git a/src/lib/pubkey/mce/polyn_gf2m.cpp b/src/lib/pubkey/mce/polyn_gf2m.cpp
index a0da9b479..e340e29e8 100644
--- a/src/lib/pubkey/mce/polyn_gf2m.cpp
+++ b/src/lib/pubkey/mce/polyn_gf2m.cpp
@@ -5,7 +5,7 @@
* (C) 2014 cryptosource GmbH
* (C) 2014 Falko Strenzke [email protected]
*
- * Distributed under the terms of the Botan license
+ * Botan is released under the Simplified BSD License (see license.txt)
*
*/
diff --git a/src/lib/pubkey/mce/polyn_gf2m.h b/src/lib/pubkey/mce/polyn_gf2m.h
index 9dff549e0..6ec028a25 100644
--- a/src/lib/pubkey/mce/polyn_gf2m.h
+++ b/src/lib/pubkey/mce/polyn_gf2m.h
@@ -5,7 +5,7 @@
* (C) 2014 cryptosource GmbH
* (C) 2014 Falko Strenzke [email protected]
*
- * Distributed under the terms of the Botan license
+ * Botan is released under the Simplified BSD License (see license.txt)
*
*/
diff --git a/src/lib/pubkey/mce/workfactor.cpp b/src/lib/pubkey/mce/workfactor.cpp
index 18eaf65e5..b0a990a3a 100644
--- a/src/lib/pubkey/mce/workfactor.cpp
+++ b/src/lib/pubkey/mce/workfactor.cpp
@@ -1,8 +1,9 @@
/**
* (C) Copyright Projet SECRET, INRIA, Rocquencourt
* (C) Bhaskar Biswas and Nicolas Sendrier
+ * (C) 2014 Jack Lloyd
*
- * Distributed under the terms of the Botan license
+ * Botan is released under the Simplified BSD License (see license.txt)
*
*/