Add copyright headers
authorMatt Corallo <git@bluematt.me>
Sat, 7 Sep 2013 22:07:13 +0000 (18:07 -0400)
committerMatt Corallo <git@bluematt.me>
Thu, 5 Sep 2013 15:00:31 +0000 (11:00 -0400)
main.c
shamirssecret.c
shamirssecret.h

diff --git a/main.c b/main.c
index 8301c0b9616ab56bce515bee85fdaa483ddb6420..af352fd09fb692da34db9b573460410ff5fba4b7 100644 (file)
--- a/main.c
+++ b/main.c
@@ -1,3 +1,22 @@
+/*
+ * Shamir's secret sharing CLI interface
+ *
+ * Copyright (C) 2013 Matt Corallo <git@bluematt.me>
+ *
+ * This program is free software; you can redistribute it and/or modify it
+ * under the terms and conditions of the GNU General Public License,
+ * version 2, as published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
+ * more details.
+ *
+ * You should have received a copy of the GNU General Public License along with
+ * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
+ * Place - Suite 330, Boston, MA 02111-1307 USA.
+ */
+
 #define _GNU_SOURCE
 
 #include <stdio.h>
index 9293f79eafea0282b28d43fbae7f8bcf4a2f75a1..2d6e7aac0c9a77bc41d9fc12465fd400bf82a2e6 100644 (file)
@@ -1,3 +1,22 @@
+/*
+ * Shamir's secret sharing sharing implementation
+ *
+ * Copyright (C) 2013 Matt Corallo <git@bluematt.me>
+ *
+ * This program is free software; you can redistribute it and/or modify it
+ * under the terms and conditions of the GNU General Public License,
+ * version 2, as published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
+ * more details.
+ *
+ * You should have received a copy of the GNU General Public License along with
+ * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
+ * Place - Suite 330, Boston, MA 02111-1307 USA.
+ */
+
 #include <stdint.h>
 
 #ifndef IN_KERNEL
index 416d2fce990423bc91ec315dad17f1a8e487a0ab..d84804082e3ecde7e8d5960716f32f75c57ecbff 100644 (file)
@@ -1,3 +1,22 @@
+/*
+ * Shamir's secret sharing public functions
+ *
+ * Copyright (C) 2013 Matt Corallo <git@bluematt.me>
+ *
+ * This program is free software; you can redistribute it and/or modify it
+ * under the terms and conditions of the GNU General Public License,
+ * version 2, as published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
+ * more details.
+ *
+ * You should have received a copy of the GNU General Public License along with
+ * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
+ * Place - Suite 330, Boston, MA 02111-1307 USA.
+ */
+
 #include <stdint.h>
 
 #define P 256