aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2014-11-05 20:55:11 +0100
committerMattias Andrée <maandree@operamail.com>2014-11-05 20:55:11 +0100
commit47d2293bbf10ef92f83aaf745aa846af47715388 (patch)
tree49ceb37fdebcd06921a90be51eb2f2ed9be6d39e /src
parentm doc (diff)
downloadlibkeccak-47d2293bbf10ef92f83aaf745aa846af47715388.tar.gz
libkeccak-47d2293bbf10ef92f83aaf745aa846af47715388.tar.bz2
libkeccak-47d2293bbf10ef92f83aaf745aa846af47715388.tar.xz
m
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'src')
-rw-r--r--src/libkeccak.h6
-rw-r--r--src/libkeccak/digest.c6
-rw-r--r--src/libkeccak/digest.h6
-rw-r--r--src/libkeccak/files.c6
-rw-r--r--src/libkeccak/files.h6
-rw-r--r--src/libkeccak/generalised-spec.c6
-rw-r--r--src/libkeccak/generalised-spec.h6
-rw-r--r--src/libkeccak/hex.c6
-rw-r--r--src/libkeccak/hex.h6
-rw-r--r--src/libkeccak/spec.h6
-rw-r--r--src/libkeccak/state.c6
-rw-r--r--src/libkeccak/state.h6
-rw-r--r--src/test/test.c8
13 files changed, 40 insertions, 40 deletions
diff --git a/src/libkeccak.h b/src/libkeccak.h
index ad64aff..ba212ae 100644
--- a/src/libkeccak.h
+++ b/src/libkeccak.h
@@ -3,18 +3,18 @@
*
* Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
*
- * This program is free software: you can redistribute it and/or modify
+ * This library is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
- * This program is distributed in the hope that it will be useful,
+ * This library 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this library. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef LIBKECCAK_H
#define LIBKECCAK_H 1
diff --git a/src/libkeccak/digest.c b/src/libkeccak/digest.c
index 228e6c0..fec92f9 100644
--- a/src/libkeccak/digest.c
+++ b/src/libkeccak/digest.c
@@ -3,18 +3,18 @@
*
* Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
*
- * This program is free software: you can redistribute it and/or modify
+ * This library is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
- * This program is distributed in the hope that it will be useful,
+ * This library 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this library. If not, see <http://www.gnu.org/licenses/>.
*/
#include "digest.h"
diff --git a/src/libkeccak/digest.h b/src/libkeccak/digest.h
index 286dbb1..23ca12b 100644
--- a/src/libkeccak/digest.h
+++ b/src/libkeccak/digest.h
@@ -3,18 +3,18 @@
*
* Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
*
- * This program is free software: you can redistribute it and/or modify
+ * This library is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
- * This program is distributed in the hope that it will be useful,
+ * This library 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this library. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef LIBKECCAK_DIGEST_H
#define LIBKECCAK_DIGEST_H 1
diff --git a/src/libkeccak/files.c b/src/libkeccak/files.c
index e5b0c11..fbc69a6 100644
--- a/src/libkeccak/files.c
+++ b/src/libkeccak/files.c
@@ -3,18 +3,18 @@
*
* Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
*
- * This program is free software: you can redistribute it and/or modify
+ * This library is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
- * This program is distributed in the hope that it will be useful,
+ * This library 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this library. If not, see <http://www.gnu.org/licenses/>.
*/
#include "files.h"
diff --git a/src/libkeccak/files.h b/src/libkeccak/files.h
index 534019f..de63c85 100644
--- a/src/libkeccak/files.h
+++ b/src/libkeccak/files.h
@@ -3,18 +3,18 @@
*
* Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
*
- * This program is free software: you can redistribute it and/or modify
+ * This library is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
- * This program is distributed in the hope that it will be useful,
+ * This library 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this library. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef LIBKECCAK_FILES_H
#define LIBKECCAK_FILES_H 1
diff --git a/src/libkeccak/generalised-spec.c b/src/libkeccak/generalised-spec.c
index aecf0fd..8e4714c 100644
--- a/src/libkeccak/generalised-spec.c
+++ b/src/libkeccak/generalised-spec.c
@@ -3,18 +3,18 @@
*
* Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
*
- * This program is free software: you can redistribute it and/or modify
+ * This library is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
- * This program is distributed in the hope that it will be useful,
+ * This library 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this library. If not, see <http://www.gnu.org/licenses/>.
*/
#include "generalised-spec.h"
diff --git a/src/libkeccak/generalised-spec.h b/src/libkeccak/generalised-spec.h
index dabfeca..6d77e63 100644
--- a/src/libkeccak/generalised-spec.h
+++ b/src/libkeccak/generalised-spec.h
@@ -3,18 +3,18 @@
*
* Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
*
- * This program is free software: you can redistribute it and/or modify
+ * This library is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
- * This program is distributed in the hope that it will be useful,
+ * This library 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this library. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef LIBKECCAK_GENERALISED_SPEC_H
#define LIBKECCAK_GENERALISED_SPEC_H 1
diff --git a/src/libkeccak/hex.c b/src/libkeccak/hex.c
index 64afef8..62d6f5d 100644
--- a/src/libkeccak/hex.c
+++ b/src/libkeccak/hex.c
@@ -3,18 +3,18 @@
*
* Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
*
- * This program is free software: you can redistribute it and/or modify
+ * This library is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
- * This program is distributed in the hope that it will be useful,
+ * This library 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this library. If not, see <http://www.gnu.org/licenses/>.
*/
#include "hex.h"
diff --git a/src/libkeccak/hex.h b/src/libkeccak/hex.h
index ae32669..4fc60dc 100644
--- a/src/libkeccak/hex.h
+++ b/src/libkeccak/hex.h
@@ -3,18 +3,18 @@
*
* Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
*
- * This program is free software: you can redistribute it and/or modify
+ * This library is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
- * This program is distributed in the hope that it will be useful,
+ * This library 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this library. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef LIBKECCAK_HEX_H
#define LIBKECCAK_HEX_H 1
diff --git a/src/libkeccak/spec.h b/src/libkeccak/spec.h
index 5c36b6a..c72c04d 100644
--- a/src/libkeccak/spec.h
+++ b/src/libkeccak/spec.h
@@ -3,18 +3,18 @@
*
* Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
*
- * This program is free software: you can redistribute it and/or modify
+ * This library is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
- * This program is distributed in the hope that it will be useful,
+ * This library 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this library. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef LIBKECCAK_SPEC_H
#define LIBKECCAK_SPEC_H 1
diff --git a/src/libkeccak/state.c b/src/libkeccak/state.c
index 18ec2d9..168d379 100644
--- a/src/libkeccak/state.c
+++ b/src/libkeccak/state.c
@@ -3,18 +3,18 @@
*
* Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
*
- * This program is free software: you can redistribute it and/or modify
+ * This library is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
- * This program is distributed in the hope that it will be useful,
+ * This library 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this library. If not, see <http://www.gnu.org/licenses/>.
*/
#include "state.h"
diff --git a/src/libkeccak/state.h b/src/libkeccak/state.h
index e11ac80..8acb56b 100644
--- a/src/libkeccak/state.h
+++ b/src/libkeccak/state.h
@@ -3,18 +3,18 @@
*
* Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
*
- * This program is free software: you can redistribute it and/or modify
+ * This library is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
- * This program is distributed in the hope that it will be useful,
+ * This library 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this library. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef LIBKECCAK_STATE_H
#define LIBKECCAK_STATE_H 1
diff --git a/src/test/test.c b/src/test/test.c
index 1f4cbd9..c8ab8de 100644
--- a/src/test/test.c
+++ b/src/test/test.c
@@ -3,18 +3,18 @@
*
* Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
*
- * This program is free software: you can redistribute it and/or modify
+ * This library is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
- * This program is distributed in the hope that it will be useful,
+ * This library 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this library. If not, see <http://www.gnu.org/licenses/>.
*/
#include <libkeccak.h>
@@ -557,7 +557,7 @@ static int test_file(const libkeccak_spec_t* restrict spec, const char* restrict
/**
- * Basically, verify the correctness of the program.
+ * Basically, verify the correctness of the library.
* The current working path must be the root directory
* of the repository (the project directory).
*