diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2016-11-18 06:22:00 +0100 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2016-11-21 01:00:07 +0100 |
commit | e6e1fd126c90749576473c235c69e89657f4d78f (patch) | |
tree | 12e90877d542dcd998b8d590a9b4a6f73c29d37d /src/crypto | |
parent | a361c3b6fd1f9fe282e86b70f302610e985b3892 (diff) |
headers: cleanup notices
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'src/crypto')
-rw-r--r-- | src/crypto/blake2s.c | 2 | ||||
-rw-r--r-- | src/crypto/blake2s.h | 2 | ||||
-rw-r--r-- | src/crypto/chacha20poly1305.c | 2 | ||||
-rw-r--r-- | src/crypto/chacha20poly1305.h | 2 | ||||
-rw-r--r-- | src/crypto/curve25519.c | 2 | ||||
-rw-r--r-- | src/crypto/curve25519.h | 2 | ||||
-rw-r--r-- | src/crypto/siphash24.c | 2 | ||||
-rw-r--r-- | src/crypto/siphash24.h | 2 |
8 files changed, 8 insertions, 8 deletions
diff --git a/src/crypto/blake2s.c b/src/crypto/blake2s.c index 0118dab..b8a7535 100644 --- a/src/crypto/blake2s.c +++ b/src/crypto/blake2s.c @@ -1,6 +1,6 @@ /* Original author: Samuel Neves <sneves@dei.uc.pt> * - * Copyright 2015-2016 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. + * Copyright (C) 2015-2016 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */ #include "blake2s.h" diff --git a/src/crypto/blake2s.h b/src/crypto/blake2s.h index b48937f..ed7ea50 100644 --- a/src/crypto/blake2s.h +++ b/src/crypto/blake2s.h @@ -1,4 +1,4 @@ -/* Copyright 2015-2016 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */ +/* Copyright (C) 2015-2016 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */ #ifndef BLAKE2S_H #define BLAKE2S_H diff --git a/src/crypto/chacha20poly1305.c b/src/crypto/chacha20poly1305.c index cc1af39..96e39bf 100644 --- a/src/crypto/chacha20poly1305.c +++ b/src/crypto/chacha20poly1305.c @@ -1,5 +1,5 @@ /* - * Copyright 2015-2016 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. + * Copyright (C) 2015-2016 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. * Copyright 2015 Martin Willi. */ diff --git a/src/crypto/chacha20poly1305.h b/src/crypto/chacha20poly1305.h index 49bd5f9..4ffcd1e 100644 --- a/src/crypto/chacha20poly1305.h +++ b/src/crypto/chacha20poly1305.h @@ -1,4 +1,4 @@ -/* Copyright 2015-2016 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */ +/* Copyright (C) 2015-2016 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */ #ifndef CHACHA20POLY1305_H #define CHACHA20POLY1305_H diff --git a/src/crypto/curve25519.c b/src/crypto/curve25519.c index afc2e8a..41eeea8 100644 --- a/src/crypto/curve25519.c +++ b/src/crypto/curve25519.c @@ -1,7 +1,7 @@ /* Original author: Adam Langley <agl@imperialviolet.org> * * Copyright 2008 Google Inc. All Rights Reserved. - * Copyright 2015-2016 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. + * Copyright (C) 2015-2016 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */ #include "curve25519.h" diff --git a/src/crypto/curve25519.h b/src/crypto/curve25519.h index f16fc30..361b858 100644 --- a/src/crypto/curve25519.h +++ b/src/crypto/curve25519.h @@ -1,4 +1,4 @@ -/* Copyright 2015-2016 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */ +/* Copyright (C) 2015-2016 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */ #ifndef CURVE25519_H #define CURVE25519_H diff --git a/src/crypto/siphash24.c b/src/crypto/siphash24.c index 7395413..1d3865a 100644 --- a/src/crypto/siphash24.c +++ b/src/crypto/siphash24.c @@ -1,4 +1,4 @@ -/* Copyright 2015-2016 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */ +/* Copyright (C) 2015-2016 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */ #include "siphash24.h" diff --git a/src/crypto/siphash24.h b/src/crypto/siphash24.h index f06a87c..d3a221e 100644 --- a/src/crypto/siphash24.h +++ b/src/crypto/siphash24.h @@ -1,4 +1,4 @@ -/* Copyright 2015-2016 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */ +/* Copyright (C) 2015-2016 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */ #ifndef SIPHASH24_H #define SIPHASH24_H |