summaryrefslogtreecommitdiffstats
path: root/src/crypto
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2015-01-14 17:33:52 +0100
committerMatthias Schiffer <mschiffer@universe-factory.net>2015-01-14 17:33:52 +0100
commit0a69b958bdfd8da663577be2be557a1bc319cd12 (patch)
treed5fd9a8b0ef8f36912bc78accd0aecfc2b34a2d5 /src/crypto
parent6a5fa572cf2f0dbdae6936ff44edc1be82a6e13a (diff)
downloadfastd-0a69b958bdfd8da663577be2be557a1bc319cd12.tar
fastd-0a69b958bdfd8da663577be2be557a1bc319cd12.zip
Update copyright years
Diffstat (limited to 'src/crypto')
-rw-r--r--src/crypto/cipher/aes128_ctr/aes128_ctr.c2
-rw-r--r--src/crypto/cipher/aes128_ctr/nacl/cipher_aes128_ctr_nacl.c2
-rw-r--r--src/crypto/cipher/aes128_ctr/openssl/aes128_ctr_openssl.c2
-rw-r--r--src/crypto/cipher/ciphers.c.in2
-rw-r--r--src/crypto/cipher/null/memcpy/null_memcpy.c2
-rw-r--r--src/crypto/cipher/null/null.c2
-rw-r--r--src/crypto/cipher/salsa20/nacl/salsa20_nacl.c2
-rw-r--r--src/crypto/cipher/salsa20/salsa20.c2
-rw-r--r--src/crypto/cipher/salsa20/xmm/salsa20_xmm.c2
-rw-r--r--src/crypto/cipher/salsa2012/nacl/salsa2012_nacl.c2
-rw-r--r--src/crypto/cipher/salsa2012/salsa2012.c2
-rw-r--r--src/crypto/cipher/salsa2012/xmm/salsa2012_xmm.c2
-rw-r--r--src/crypto/mac/ghash/builtin/ghash_builtin.c2
-rw-r--r--src/crypto/mac/ghash/ghash.c2
-rw-r--r--src/crypto/mac/ghash/pclmulqdq/ghash_pclmulqdq.c2
-rw-r--r--src/crypto/mac/ghash/pclmulqdq/ghash_pclmulqdq.h2
-rw-r--r--src/crypto/mac/ghash/pclmulqdq/ghash_pclmulqdq_impl.c2
-rw-r--r--src/crypto/mac/macs.c.in2
-rw-r--r--src/crypto/mac/uhash/builtin/uhash_builtin.c2
-rw-r--r--src/crypto/mac/uhash/uhash.c2
20 files changed, 20 insertions, 20 deletions
diff --git a/src/crypto/cipher/aes128_ctr/aes128_ctr.c b/src/crypto/cipher/aes128_ctr/aes128_ctr.c
index 4448dd0..b071369 100644
--- a/src/crypto/cipher/aes128_ctr/aes128_ctr.c
+++ b/src/crypto/cipher/aes128_ctr/aes128_ctr.c
@@ -1,5 +1,5 @@
/*
- Copyright (c) 2012-2014, Matthias Schiffer <mschiffer@universe-factory.net>
+ Copyright (c) 2012-2015, Matthias Schiffer <mschiffer@universe-factory.net>
All rights reserved.
Redistribution and use in source and binary forms, with or without
diff --git a/src/crypto/cipher/aes128_ctr/nacl/cipher_aes128_ctr_nacl.c b/src/crypto/cipher/aes128_ctr/nacl/cipher_aes128_ctr_nacl.c
index 9611b11..98dd304 100644
--- a/src/crypto/cipher/aes128_ctr/nacl/cipher_aes128_ctr_nacl.c
+++ b/src/crypto/cipher/aes128_ctr/nacl/cipher_aes128_ctr_nacl.c
@@ -1,5 +1,5 @@
/*
- Copyright (c) 2012-2014, Matthias Schiffer <mschiffer@universe-factory.net>
+ Copyright (c) 2012-2015, Matthias Schiffer <mschiffer@universe-factory.net>
All rights reserved.
Redistribution and use in source and binary forms, with or without
diff --git a/src/crypto/cipher/aes128_ctr/openssl/aes128_ctr_openssl.c b/src/crypto/cipher/aes128_ctr/openssl/aes128_ctr_openssl.c
index cfb824d..a9716ae 100644
--- a/src/crypto/cipher/aes128_ctr/openssl/aes128_ctr_openssl.c
+++ b/src/crypto/cipher/aes128_ctr/openssl/aes128_ctr_openssl.c
@@ -1,5 +1,5 @@
/*
- Copyright (c) 2012-2014, Matthias Schiffer <mschiffer@universe-factory.net>
+ Copyright (c) 2012-2015, Matthias Schiffer <mschiffer@universe-factory.net>
All rights reserved.
Redistribution and use in source and binary forms, with or without
diff --git a/src/crypto/cipher/ciphers.c.in b/src/crypto/cipher/ciphers.c.in
index 4b8c929..2f8c595 100644
--- a/src/crypto/cipher/ciphers.c.in
+++ b/src/crypto/cipher/ciphers.c.in
@@ -1,5 +1,5 @@
/*
- Copyright (c) 2012-2014, Matthias Schiffer <mschiffer@universe-factory.net>
+ Copyright (c) 2012-2015, Matthias Schiffer <mschiffer@universe-factory.net>
All rights reserved.
Redistribution and use in source and binary forms, with or without
diff --git a/src/crypto/cipher/null/memcpy/null_memcpy.c b/src/crypto/cipher/null/memcpy/null_memcpy.c
index 1f090ca..36b7ac5 100644
--- a/src/crypto/cipher/null/memcpy/null_memcpy.c
+++ b/src/crypto/cipher/null/memcpy/null_memcpy.c
@@ -1,5 +1,5 @@
/*
- Copyright (c) 2012-2014, Matthias Schiffer <mschiffer@universe-factory.net>
+ Copyright (c) 2012-2015, Matthias Schiffer <mschiffer@universe-factory.net>
All rights reserved.
Redistribution and use in source and binary forms, with or without
diff --git a/src/crypto/cipher/null/null.c b/src/crypto/cipher/null/null.c
index 353090a..d2d9657 100644
--- a/src/crypto/cipher/null/null.c
+++ b/src/crypto/cipher/null/null.c
@@ -1,5 +1,5 @@
/*
- Copyright (c) 2012-2014, Matthias Schiffer <mschiffer@universe-factory.net>
+ Copyright (c) 2012-2015, Matthias Schiffer <mschiffer@universe-factory.net>
All rights reserved.
Redistribution and use in source and binary forms, with or without
diff --git a/src/crypto/cipher/salsa20/nacl/salsa20_nacl.c b/src/crypto/cipher/salsa20/nacl/salsa20_nacl.c
index 6960ead..f1d5a04 100644
--- a/src/crypto/cipher/salsa20/nacl/salsa20_nacl.c
+++ b/src/crypto/cipher/salsa20/nacl/salsa20_nacl.c
@@ -1,5 +1,5 @@
/*
- Copyright (c) 2012-2014, Matthias Schiffer <mschiffer@universe-factory.net>
+ Copyright (c) 2012-2015, Matthias Schiffer <mschiffer@universe-factory.net>
All rights reserved.
Redistribution and use in source and binary forms, with or without
diff --git a/src/crypto/cipher/salsa20/salsa20.c b/src/crypto/cipher/salsa20/salsa20.c
index dad6a6c..b283750 100644
--- a/src/crypto/cipher/salsa20/salsa20.c
+++ b/src/crypto/cipher/salsa20/salsa20.c
@@ -1,5 +1,5 @@
/*
- Copyright (c) 2012-2014, Matthias Schiffer <mschiffer@universe-factory.net>
+ Copyright (c) 2012-2015, Matthias Schiffer <mschiffer@universe-factory.net>
All rights reserved.
Redistribution and use in source and binary forms, with or without
diff --git a/src/crypto/cipher/salsa20/xmm/salsa20_xmm.c b/src/crypto/cipher/salsa20/xmm/salsa20_xmm.c
index 54fe428..2025c98 100644
--- a/src/crypto/cipher/salsa20/xmm/salsa20_xmm.c
+++ b/src/crypto/cipher/salsa20/xmm/salsa20_xmm.c
@@ -1,5 +1,5 @@
/*
- Copyright (c) 2012-2014, Matthias Schiffer <mschiffer@universe-factory.net>
+ Copyright (c) 2012-2015, Matthias Schiffer <mschiffer@universe-factory.net>
All rights reserved.
Redistribution and use in source and binary forms, with or without
diff --git a/src/crypto/cipher/salsa2012/nacl/salsa2012_nacl.c b/src/crypto/cipher/salsa2012/nacl/salsa2012_nacl.c
index 2f601fc..3dd3db4 100644
--- a/src/crypto/cipher/salsa2012/nacl/salsa2012_nacl.c
+++ b/src/crypto/cipher/salsa2012/nacl/salsa2012_nacl.c
@@ -1,5 +1,5 @@
/*
- Copyright (c) 2012-2014, Matthias Schiffer <mschiffer@universe-factory.net>
+ Copyright (c) 2012-2015, Matthias Schiffer <mschiffer@universe-factory.net>
All rights reserved.
Redistribution and use in source and binary forms, with or without
diff --git a/src/crypto/cipher/salsa2012/salsa2012.c b/src/crypto/cipher/salsa2012/salsa2012.c
index d10c4fb..9afe419 100644
--- a/src/crypto/cipher/salsa2012/salsa2012.c
+++ b/src/crypto/cipher/salsa2012/salsa2012.c
@@ -1,5 +1,5 @@
/*
- Copyright (c) 2012-2014, Matthias Schiffer <mschiffer@universe-factory.net>
+ Copyright (c) 2012-2015, Matthias Schiffer <mschiffer@universe-factory.net>
All rights reserved.
Redistribution and use in source and binary forms, with or without
diff --git a/src/crypto/cipher/salsa2012/xmm/salsa2012_xmm.c b/src/crypto/cipher/salsa2012/xmm/salsa2012_xmm.c
index 004d502..25f7bb0 100644
--- a/src/crypto/cipher/salsa2012/xmm/salsa2012_xmm.c
+++ b/src/crypto/cipher/salsa2012/xmm/salsa2012_xmm.c
@@ -1,5 +1,5 @@
/*
- Copyright (c) 2012-2014, Matthias Schiffer <mschiffer@universe-factory.net>
+ Copyright (c) 2012-2015, Matthias Schiffer <mschiffer@universe-factory.net>
All rights reserved.
Redistribution and use in source and binary forms, with or without
diff --git a/src/crypto/mac/ghash/builtin/ghash_builtin.c b/src/crypto/mac/ghash/builtin/ghash_builtin.c
index 2e70f52..246ec8f 100644
--- a/src/crypto/mac/ghash/builtin/ghash_builtin.c
+++ b/src/crypto/mac/ghash/builtin/ghash_builtin.c
@@ -1,5 +1,5 @@
/*
- Copyright (c) 2012-2014, Matthias Schiffer <mschiffer@universe-factory.net>
+ Copyright (c) 2012-2015, Matthias Schiffer <mschiffer@universe-factory.net>
All rights reserved.
Redistribution and use in source and binary forms, with or without
diff --git a/src/crypto/mac/ghash/ghash.c b/src/crypto/mac/ghash/ghash.c
index 0ba6440..e0307f7 100644
--- a/src/crypto/mac/ghash/ghash.c
+++ b/src/crypto/mac/ghash/ghash.c
@@ -1,5 +1,5 @@
/*
- Copyright (c) 2012-2014, Matthias Schiffer <mschiffer@universe-factory.net>
+ Copyright (c) 2012-2015, Matthias Schiffer <mschiffer@universe-factory.net>
All rights reserved.
Redistribution and use in source and binary forms, with or without
diff --git a/src/crypto/mac/ghash/pclmulqdq/ghash_pclmulqdq.c b/src/crypto/mac/ghash/pclmulqdq/ghash_pclmulqdq.c
index 2fe5bca..310a177 100644
--- a/src/crypto/mac/ghash/pclmulqdq/ghash_pclmulqdq.c
+++ b/src/crypto/mac/ghash/pclmulqdq/ghash_pclmulqdq.c
@@ -1,5 +1,5 @@
/*
- Copyright (c) 2012-2014, Matthias Schiffer <mschiffer@universe-factory.net>
+ Copyright (c) 2012-2015, Matthias Schiffer <mschiffer@universe-factory.net>
All rights reserved.
Redistribution and use in source and binary forms, with or without
diff --git a/src/crypto/mac/ghash/pclmulqdq/ghash_pclmulqdq.h b/src/crypto/mac/ghash/pclmulqdq/ghash_pclmulqdq.h
index f1a3f52..eb8b883 100644
--- a/src/crypto/mac/ghash/pclmulqdq/ghash_pclmulqdq.h
+++ b/src/crypto/mac/ghash/pclmulqdq/ghash_pclmulqdq.h
@@ -1,5 +1,5 @@
/*
- Copyright (c) 2012-2014, Matthias Schiffer <mschiffer@universe-factory.net>
+ Copyright (c) 2012-2015, Matthias Schiffer <mschiffer@universe-factory.net>
All rights reserved.
Redistribution and use in source and binary forms, with or without
diff --git a/src/crypto/mac/ghash/pclmulqdq/ghash_pclmulqdq_impl.c b/src/crypto/mac/ghash/pclmulqdq/ghash_pclmulqdq_impl.c
index 040ce14..192d3f8 100644
--- a/src/crypto/mac/ghash/pclmulqdq/ghash_pclmulqdq_impl.c
+++ b/src/crypto/mac/ghash/pclmulqdq/ghash_pclmulqdq_impl.c
@@ -1,5 +1,5 @@
/*
- Copyright (c) 2012-2014, Matthias Schiffer <mschiffer@universe-factory.net>
+ Copyright (c) 2012-2015, Matthias Schiffer <mschiffer@universe-factory.net>
All rights reserved.
Redistribution and use in source and binary forms, with or without
diff --git a/src/crypto/mac/macs.c.in b/src/crypto/mac/macs.c.in
index 29e9f57..fa09299 100644
--- a/src/crypto/mac/macs.c.in
+++ b/src/crypto/mac/macs.c.in
@@ -1,5 +1,5 @@
/*
- Copyright (c) 2012-2014, Matthias Schiffer <mschiffer@universe-factory.net>
+ Copyright (c) 2012-2015, Matthias Schiffer <mschiffer@universe-factory.net>
All rights reserved.
Redistribution and use in source and binary forms, with or without
diff --git a/src/crypto/mac/uhash/builtin/uhash_builtin.c b/src/crypto/mac/uhash/builtin/uhash_builtin.c
index e4710ae..a77bd89 100644
--- a/src/crypto/mac/uhash/builtin/uhash_builtin.c
+++ b/src/crypto/mac/uhash/builtin/uhash_builtin.c
@@ -1,5 +1,5 @@
/*
- Copyright (c) 2012-2014, Matthias Schiffer <mschiffer@universe-factory.net>
+ Copyright (c) 2012-2015, Matthias Schiffer <mschiffer@universe-factory.net>
All rights reserved.
Redistribution and use in source and binary forms, with or without
diff --git a/src/crypto/mac/uhash/uhash.c b/src/crypto/mac/uhash/uhash.c
index 2cc89e0..cda237f 100644
--- a/src/crypto/mac/uhash/uhash.c
+++ b/src/crypto/mac/uhash/uhash.c
@@ -1,5 +1,5 @@
/*
- Copyright (c) 2012-2014, Matthias Schiffer <mschiffer@universe-factory.net>
+ Copyright (c) 2012-2015, Matthias Schiffer <mschiffer@universe-factory.net>
All rights reserved.
Redistribution and use in source and binary forms, with or without