diff options
-rw-r--r-- | COPYING | 2 | ||||
-rwxr-xr-x | src/benchmark-flags | 2 | ||||
-rw-r--r-- | src/benchmark.c | 2 | ||||
-rw-r--r-- | src/libkeccak.h | 2 | ||||
-rw-r--r-- | src/libkeccak/digest.c | 2 | ||||
-rw-r--r-- | src/libkeccak/digest.h | 2 | ||||
-rw-r--r-- | src/libkeccak/files.c | 2 | ||||
-rw-r--r-- | src/libkeccak/files.h | 2 | ||||
-rw-r--r-- | src/libkeccak/generalised-spec.c | 2 | ||||
-rw-r--r-- | src/libkeccak/generalised-spec.h | 2 | ||||
-rw-r--r-- | src/libkeccak/hex.c | 2 | ||||
-rw-r--r-- | src/libkeccak/hex.h | 2 | ||||
-rw-r--r-- | src/libkeccak/spec.h | 2 | ||||
-rw-r--r-- | src/libkeccak/state.c | 2 | ||||
-rw-r--r-- | src/libkeccak/state.h | 2 | ||||
-rw-r--r-- | src/test.c | 2 |
16 files changed, 16 insertions, 16 deletions
@@ -1,6 +1,6 @@ libkeccak – Keccak-family hashing library -Copyright © 2014 Mattias Andrée (maandree@member.fsf.org) +Copyright © 2014, 2015 Mattias Andrée (maandree@member.fsf.org) 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-flags b/src/benchmark-flags index 840d04c..6141137 100755 --- a/src/benchmark-flags +++ b/src/benchmark-flags @@ -1,7 +1,7 @@ #!/bin/sh # libkeccak – Keccak-family hashing library # -# Copyright © 2014 Mattias Andrée (maandree@member.fsf.org) +# Copyright © 2014, 2015 Mattias Andrée (maandree@member.fsf.org) # # 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 08d945a..5ea29df 100644 --- a/src/benchmark.c +++ b/src/benchmark.c @@ -1,7 +1,7 @@ /** * libkeccak – Keccak-family hashing library * - * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2014, 2015 Mattias Andrée (maandree@member.fsf.org) * * 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 ba212ae..3812a6b 100644 --- a/src/libkeccak.h +++ b/src/libkeccak.h @@ -1,7 +1,7 @@ /** * libkeccak – Keccak-family hashing library * - * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2014, 2015 Mattias Andrée (maandree@member.fsf.org) * * 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 c18556e..01a600a 100644 --- a/src/libkeccak/digest.c +++ b/src/libkeccak/digest.c @@ -1,7 +1,7 @@ /** * libkeccak – Keccak-family hashing library * - * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2014, 2015 Mattias Andrée (maandree@member.fsf.org) * * 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 e87dc3d..8a69fdb 100644 --- a/src/libkeccak/digest.h +++ b/src/libkeccak/digest.h @@ -1,7 +1,7 @@ /** * libkeccak – Keccak-family hashing library * - * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2014, 2015 Mattias Andrée (maandree@member.fsf.org) * * 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 46aea61..e415126 100644 --- a/src/libkeccak/files.c +++ b/src/libkeccak/files.c @@ -1,7 +1,7 @@ /** * libkeccak – Keccak-family hashing library * - * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2014, 2015 Mattias Andrée (maandree@member.fsf.org) * * 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 f3279af..91b25dd 100644 --- a/src/libkeccak/files.h +++ b/src/libkeccak/files.h @@ -1,7 +1,7 @@ /** * libkeccak – Keccak-family hashing library * - * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2014, 2015 Mattias Andrée (maandree@member.fsf.org) * * 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 8e4714c..94d6321 100644 --- a/src/libkeccak/generalised-spec.c +++ b/src/libkeccak/generalised-spec.c @@ -1,7 +1,7 @@ /** * libkeccak – Keccak-family hashing library * - * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2014, 2015 Mattias Andrée (maandree@member.fsf.org) * * 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 6d77e63..538c260 100644 --- a/src/libkeccak/generalised-spec.h +++ b/src/libkeccak/generalised-spec.h @@ -1,7 +1,7 @@ /** * libkeccak – Keccak-family hashing library * - * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2014, 2015 Mattias Andrée (maandree@member.fsf.org) * * 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 62d6f5d..16d281a 100644 --- a/src/libkeccak/hex.c +++ b/src/libkeccak/hex.c @@ -1,7 +1,7 @@ /** * libkeccak – Keccak-family hashing library * - * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2014, 2015 Mattias Andrée (maandree@member.fsf.org) * * 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 4fc60dc..58e07f8 100644 --- a/src/libkeccak/hex.h +++ b/src/libkeccak/hex.h @@ -1,7 +1,7 @@ /** * libkeccak – Keccak-family hashing library * - * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2014, 2015 Mattias Andrée (maandree@member.fsf.org) * * 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 06e250b..cccd27c 100644 --- a/src/libkeccak/spec.h +++ b/src/libkeccak/spec.h @@ -1,7 +1,7 @@ /** * libkeccak – Keccak-family hashing library * - * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2014, 2015 Mattias Andrée (maandree@member.fsf.org) * * 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 22a7d0c..60a842d 100644 --- a/src/libkeccak/state.c +++ b/src/libkeccak/state.c @@ -1,7 +1,7 @@ /** * libkeccak – Keccak-family hashing library * - * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2014, 2015 Mattias Andrée (maandree@member.fsf.org) * * 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 5fdaca5..33785a4 100644 --- a/src/libkeccak/state.h +++ b/src/libkeccak/state.h @@ -1,7 +1,7 @@ /** * libkeccak – Keccak-family hashing library * - * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2014, 2015 Mattias Andrée (maandree@member.fsf.org) * * 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 @@ -1,7 +1,7 @@ /** * libkeccak – Keccak-family hashing library * - * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2014, 2015 Mattias Andrée (maandree@member.fsf.org) * * 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 |