From 17afdd4e46ac6bdcd4783e84030b9dad078d9a09 Mon Sep 17 00:00:00 2001 From: Mirek Kratochvil Date: Mon, 5 Nov 2012 22:45:35 +0100 Subject: [PATCH] licensing --- include/codecrypt.h | 17 +++++++++++++++++ lib/bvector.cpp | 17 +++++++++++++++++ lib/decoding.cpp | 17 +++++++++++++++++ lib/decoding.h | 17 +++++++++++++++++ lib/fwht.cpp | 17 +++++++++++++++++ lib/fwht.h | 17 +++++++++++++++++ lib/gf2m.cpp | 17 +++++++++++++++++ lib/ios.cpp | 17 +++++++++++++++++ lib/matrix.cpp | 17 +++++++++++++++++ lib/mce.cpp | 17 +++++++++++++++++ lib/mce_oc.cpp | 17 +++++++++++++++++ lib/mce_qd.cpp | 17 +++++++++++++++++ lib/nd.cpp | 17 +++++++++++++++++ lib/permutation.cpp | 17 +++++++++++++++++ lib/polynomial.cpp | 17 +++++++++++++++++ src/main.cpp | 17 +++++++++++++++++ 16 files changed, 272 insertions(+) diff --git a/include/codecrypt.h b/include/codecrypt.h index e5776b5..48b3494 100644 --- a/include/codecrypt.h +++ b/include/codecrypt.h @@ -1,4 +1,21 @@ +/* + * This file is part of Codecrypt. + * + * Codecrypt is free software: you can redistribute it and/or modify it + * under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or (at + * your option) any later version. + * + * Codecrypt is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public + * License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with Codecrypt. If not, see . + */ + #ifndef _CODECRYPT_H_ #define _CODECRYPT_H_ diff --git a/lib/bvector.cpp b/lib/bvector.cpp index 26b26be..1f35a3c 100644 --- a/lib/bvector.cpp +++ b/lib/bvector.cpp @@ -1,4 +1,21 @@ +/* + * This file is part of Codecrypt. + * + * Codecrypt is free software: you can redistribute it and/or modify it + * under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or (at + * your option) any later version. + * + * Codecrypt is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public + * License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with Codecrypt. If not, see . + */ + #include "codecrypt.h" using namespace ccr; diff --git a/lib/decoding.cpp b/lib/decoding.cpp index cc5e5d5..3957332 100644 --- a/lib/decoding.cpp +++ b/lib/decoding.cpp @@ -1,4 +1,21 @@ +/* + * This file is part of Codecrypt. + * + * Codecrypt is free software: you can redistribute it and/or modify it + * under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or (at + * your option) any later version. + * + * Codecrypt is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public + * License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with Codecrypt. If not, see . + */ + #include "decoding.h" void compute_goppa_error_locator (polynomial&syndrome, gf2m&fld, diff --git a/lib/decoding.h b/lib/decoding.h index 199ced8..11ea34e 100644 --- a/lib/decoding.h +++ b/lib/decoding.h @@ -1,4 +1,21 @@ +/* + * This file is part of Codecrypt. + * + * Codecrypt is free software: you can redistribute it and/or modify it + * under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or (at + * your option) any later version. + * + * Codecrypt is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public + * License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with Codecrypt. If not, see . + */ + #ifndef _decoding_h_ #define _decoding_h_ diff --git a/lib/fwht.cpp b/lib/fwht.cpp index 0544bd5..fc7da07 100644 --- a/lib/fwht.cpp +++ b/lib/fwht.cpp @@ -1,4 +1,21 @@ +/* + * This file is part of Codecrypt. + * + * Codecrypt is free software: you can redistribute it and/or modify it + * under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or (at + * your option) any later version. + * + * Codecrypt is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public + * License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with Codecrypt. If not, see . + */ + #include "fwht.h" #include diff --git a/lib/fwht.h b/lib/fwht.h index a7e51d1..640d268 100644 --- a/lib/fwht.h +++ b/lib/fwht.h @@ -1,4 +1,21 @@ +/* + * This file is part of Codecrypt. + * + * Codecrypt is free software: you can redistribute it and/or modify it + * under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or (at + * your option) any later version. + * + * Codecrypt is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public + * License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with Codecrypt. If not, see . + */ + #ifndef _fwht_h_ #define _fwht_h_ diff --git a/lib/gf2m.cpp b/lib/gf2m.cpp index fc2b4fb..765e8dd 100644 --- a/lib/gf2m.cpp +++ b/lib/gf2m.cpp @@ -1,4 +1,21 @@ +/* + * This file is part of Codecrypt. + * + * Codecrypt is free software: you can redistribute it and/or modify it + * under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or (at + * your option) any later version. + * + * Codecrypt is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public + * License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with Codecrypt. If not, see . + */ + #include "codecrypt.h" using namespace ccr; diff --git a/lib/ios.cpp b/lib/ios.cpp index f5c1504..8e85135 100644 --- a/lib/ios.cpp +++ b/lib/ios.cpp @@ -1,4 +1,21 @@ +/* + * This file is part of Codecrypt. + * + * Codecrypt is free software: you can redistribute it and/or modify it + * under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or (at + * your option) any later version. + * + * Codecrypt is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public + * License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with Codecrypt. If not, see . + */ + #include "codecrypt.h" #include diff --git a/lib/matrix.cpp b/lib/matrix.cpp index 4e9b64a..24095a9 100644 --- a/lib/matrix.cpp +++ b/lib/matrix.cpp @@ -1,4 +1,21 @@ +/* + * This file is part of Codecrypt. + * + * Codecrypt is free software: you can redistribute it and/or modify it + * under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or (at + * your option) any later version. + * + * Codecrypt is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public + * License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with Codecrypt. If not, see . + */ + #include "codecrypt.h" using namespace ccr; diff --git a/lib/mce.cpp b/lib/mce.cpp index 1d9b306..734d737 100644 --- a/lib/mce.cpp +++ b/lib/mce.cpp @@ -1,4 +1,21 @@ +/* + * This file is part of Codecrypt. + * + * Codecrypt is free software: you can redistribute it and/or modify it + * under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or (at + * your option) any later version. + * + * Codecrypt is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public + * License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with Codecrypt. If not, see . + */ + #include "codecrypt.h" using namespace ccr; diff --git a/lib/mce_oc.cpp b/lib/mce_oc.cpp index fe6ae07..56447ac 100644 --- a/lib/mce_oc.cpp +++ b/lib/mce_oc.cpp @@ -1,4 +1,21 @@ +/* + * This file is part of Codecrypt. + * + * Codecrypt is free software: you can redistribute it and/or modify it + * under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or (at + * your option) any later version. + * + * Codecrypt is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public + * License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with Codecrypt. If not, see . + */ + #include "codecrypt.h" using namespace ccr; diff --git a/lib/mce_qd.cpp b/lib/mce_qd.cpp index 7054adb..5597cf1 100644 --- a/lib/mce_qd.cpp +++ b/lib/mce_qd.cpp @@ -1,4 +1,21 @@ +/* + * This file is part of Codecrypt. + * + * Codecrypt is free software: you can redistribute it and/or modify it + * under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or (at + * your option) any later version. + * + * Codecrypt is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public + * License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with Codecrypt. If not, see . + */ + #include "codecrypt.h" using namespace ccr; diff --git a/lib/nd.cpp b/lib/nd.cpp index 2f8aea8..3bbe11c 100644 --- a/lib/nd.cpp +++ b/lib/nd.cpp @@ -1,4 +1,21 @@ +/* + * This file is part of Codecrypt. + * + * Codecrypt is free software: you can redistribute it and/or modify it + * under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or (at + * your option) any later version. + * + * Codecrypt is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public + * License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with Codecrypt. If not, see . + */ + #include "codecrypt.h" #include "decoding.h" diff --git a/lib/permutation.cpp b/lib/permutation.cpp index e475d1c..16abf7d 100644 --- a/lib/permutation.cpp +++ b/lib/permutation.cpp @@ -1,4 +1,21 @@ +/* + * This file is part of Codecrypt. + * + * Codecrypt is free software: you can redistribute it and/or modify it + * under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or (at + * your option) any later version. + * + * Codecrypt is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public + * License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with Codecrypt. If not, see . + */ + #include "codecrypt.h" using namespace ccr; diff --git a/lib/polynomial.cpp b/lib/polynomial.cpp index 664b28b..f7a97c1 100644 --- a/lib/polynomial.cpp +++ b/lib/polynomial.cpp @@ -1,4 +1,21 @@ +/* + * This file is part of Codecrypt. + * + * Codecrypt is free software: you can redistribute it and/or modify it + * under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or (at + * your option) any later version. + * + * Codecrypt is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public + * License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with Codecrypt. If not, see . + */ + #include "codecrypt.h" using namespace ccr; diff --git a/src/main.cpp b/src/main.cpp index 66277a0..09bd3a1 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,4 +1,21 @@ +/* + * This file is part of Codecrypt. + * + * Codecrypt is free software: you can redistribute it and/or modify it + * under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or (at + * your option) any later version. + * + * Codecrypt is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public + * License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with Codecrypt. If not, see . + */ + #include "codecrypt.h" #include