aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rwxr-xr-xsrc/benchmark-flags2
-rw-r--r--src/benchmark.c2
-rw-r--r--src/libkeccak.h2
-rw-r--r--src/libkeccak/digest.c2
-rw-r--r--src/libkeccak/digest.h2
-rw-r--r--src/libkeccak/files.c2
-rw-r--r--src/libkeccak/files.h2
-rw-r--r--src/libkeccak/generalised-spec.c2
-rw-r--r--src/libkeccak/generalised-spec.h2
-rw-r--r--src/libkeccak/hex.c2
-rw-r--r--src/libkeccak/hex.h2
-rw-r--r--src/libkeccak/internal.h2
-rw-r--r--src/libkeccak/mac/hmac.c2
-rw-r--r--src/libkeccak/mac/hmac.h2
-rw-r--r--src/libkeccak/spec.h2
-rw-r--r--src/libkeccak/state.c2
-rw-r--r--src/libkeccak/state.h2
17 files changed, 17 insertions, 17 deletions
diff --git a/src/benchmark-flags b/src/benchmark-flags
index 6141137..0143f40 100755
--- a/src/benchmark-flags
+++ b/src/benchmark-flags
@@ -1,7 +1,7 @@
#!/bin/sh
# libkeccak – Keccak-family hashing library
#
-# Copyright © 2014, 2015 Mattias Andrée (maandree@member.fsf.org)
+# Copyright © 2014, 2015, 2017 Mattias Andrée (maandree@kth.se)
#
# 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
diff --git a/src/benchmark.c b/src/benchmark.c
index 3de00ef..115fcc5 100644
--- a/src/benchmark.c
+++ b/src/benchmark.c
@@ -1,7 +1,7 @@
/**
* libkeccak – Keccak-family hashing library
*
- * Copyright © 2014, 2015 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014, 2015, 2017 Mattias Andrée (maandree@kth.se)
*
* 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
diff --git a/src/libkeccak.h b/src/libkeccak.h
index cedbc94..c53bcd1 100644
--- a/src/libkeccak.h
+++ b/src/libkeccak.h
@@ -1,7 +1,7 @@
/**
* libkeccak – Keccak-family hashing library
*
- * Copyright © 2014, 2015 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014, 2015, 2017 Mattias Andrée (maandree@kth.se)
*
* 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
diff --git a/src/libkeccak/digest.c b/src/libkeccak/digest.c
index 7acc867..6168f33 100644
--- a/src/libkeccak/digest.c
+++ b/src/libkeccak/digest.c
@@ -1,7 +1,7 @@
/**
* libkeccak – Keccak-family hashing library
*
- * Copyright © 2014, 2015 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014, 2015, 2017 Mattias Andrée (maandree@kth.se)
*
* 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
diff --git a/src/libkeccak/digest.h b/src/libkeccak/digest.h
index a6a2351..2dadd70 100644
--- a/src/libkeccak/digest.h
+++ b/src/libkeccak/digest.h
@@ -1,7 +1,7 @@
/**
* libkeccak – Keccak-family hashing library
*
- * Copyright © 2014, 2015 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014, 2015, 2017 Mattias Andrée (maandree@kth.se)
*
* 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
diff --git a/src/libkeccak/files.c b/src/libkeccak/files.c
index c9d06b8..07c2383 100644
--- a/src/libkeccak/files.c
+++ b/src/libkeccak/files.c
@@ -1,7 +1,7 @@
/**
* libkeccak – Keccak-family hashing library
*
- * Copyright © 2014, 2015 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014, 2015, 2017 Mattias Andrée (maandree@kth.se)
*
* 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
diff --git a/src/libkeccak/files.h b/src/libkeccak/files.h
index ebe0a81..d694bbc 100644
--- a/src/libkeccak/files.h
+++ b/src/libkeccak/files.h
@@ -1,7 +1,7 @@
/**
* libkeccak – Keccak-family hashing library
*
- * Copyright © 2014, 2015 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014, 2015, 2017 Mattias Andrée (maandree@kth.se)
*
* 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
diff --git a/src/libkeccak/generalised-spec.c b/src/libkeccak/generalised-spec.c
index 0b06413..79d673b 100644
--- a/src/libkeccak/generalised-spec.c
+++ b/src/libkeccak/generalised-spec.c
@@ -1,7 +1,7 @@
/**
* libkeccak – Keccak-family hashing library
*
- * Copyright © 2014, 2015 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014, 2015, 2017 Mattias Andrée (maandree@kth.se)
*
* 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
diff --git a/src/libkeccak/generalised-spec.h b/src/libkeccak/generalised-spec.h
index dc975ce..6bd091e 100644
--- a/src/libkeccak/generalised-spec.h
+++ b/src/libkeccak/generalised-spec.h
@@ -1,7 +1,7 @@
/**
* libkeccak – Keccak-family hashing library
*
- * Copyright © 2014, 2015 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014, 2015, 2017 Mattias Andrée (maandree@kth.se)
*
* 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
diff --git a/src/libkeccak/hex.c b/src/libkeccak/hex.c
index 16d281a..54f4006 100644
--- a/src/libkeccak/hex.c
+++ b/src/libkeccak/hex.c
@@ -1,7 +1,7 @@
/**
* libkeccak – Keccak-family hashing library
*
- * Copyright © 2014, 2015 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014, 2015, 2017 Mattias Andrée (maandree@kth.se)
*
* 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
diff --git a/src/libkeccak/hex.h b/src/libkeccak/hex.h
index 793f4a1..ce2a948 100644
--- a/src/libkeccak/hex.h
+++ b/src/libkeccak/hex.h
@@ -1,7 +1,7 @@
/**
* libkeccak – Keccak-family hashing library
*
- * Copyright © 2014, 2015 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014, 2015, 2017 Mattias Andrée (maandree@kth.se)
*
* 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
diff --git a/src/libkeccak/internal.h b/src/libkeccak/internal.h
index 69bc470..5c8432e 100644
--- a/src/libkeccak/internal.h
+++ b/src/libkeccak/internal.h
@@ -1,7 +1,7 @@
/**
* libkeccak – Keccak-family hashing library
*
- * Copyright © 2014, 2015 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014, 2015, 2017 Mattias Andrée (maandree@kth.se)
*
* 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
diff --git a/src/libkeccak/mac/hmac.c b/src/libkeccak/mac/hmac.c
index 83f4e3b..3ecf539 100644
--- a/src/libkeccak/mac/hmac.c
+++ b/src/libkeccak/mac/hmac.c
@@ -1,7 +1,7 @@
/**
* libkeccak – Keccak-family hashing library
*
- * Copyright © 2014, 2015 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014, 2015, 2017 Mattias Andrée (maandree@kth.se)
*
* 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
diff --git a/src/libkeccak/mac/hmac.h b/src/libkeccak/mac/hmac.h
index 256c439..0b3a29c 100644
--- a/src/libkeccak/mac/hmac.h
+++ b/src/libkeccak/mac/hmac.h
@@ -1,7 +1,7 @@
/**
* libkeccak – Keccak-family hashing library
*
- * Copyright © 2014, 2015 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014, 2015, 2017 Mattias Andrée (maandree@kth.se)
*
* 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
diff --git a/src/libkeccak/spec.h b/src/libkeccak/spec.h
index fe58c08..2f0b21b 100644
--- a/src/libkeccak/spec.h
+++ b/src/libkeccak/spec.h
@@ -1,7 +1,7 @@
/**
* libkeccak – Keccak-family hashing library
*
- * Copyright © 2014, 2015 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014, 2015, 2017 Mattias Andrée (maandree@kth.se)
*
* 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
diff --git a/src/libkeccak/state.c b/src/libkeccak/state.c
index 46b43ae..5eec52c 100644
--- a/src/libkeccak/state.c
+++ b/src/libkeccak/state.c
@@ -1,7 +1,7 @@
/**
* libkeccak – Keccak-family hashing library
*
- * Copyright © 2014, 2015 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014, 2015, 2017 Mattias Andrée (maandree@kth.se)
*
* 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
diff --git a/src/libkeccak/state.h b/src/libkeccak/state.h
index 6bf19f7..f030664 100644
--- a/src/libkeccak/state.h
+++ b/src/libkeccak/state.h
@@ -1,7 +1,7 @@
/**
* libkeccak – Keccak-family hashing library
*
- * Copyright © 2014, 2015 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014, 2015, 2017 Mattias Andrée (maandree@kth.se)
*
* 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