From cb057829f72c70e819f456edfadbb29d72dba832 Mon Sep 17 00:00:00 2001 From: Christoph Wurst Date: Wed, 29 Apr 2020 11:57:22 +0200 Subject: Update license headers for 19 Signed-off-by: Christoph Wurst --- lib/private/Security/Bruteforce/Throttler.php | 1 + lib/private/Security/CSP/ContentSecurityPolicyManager.php | 1 + lib/private/Security/CSP/ContentSecurityPolicyNonceManager.php | 1 + lib/private/Security/CSRF/CsrfToken.php | 1 + lib/private/Security/CSRF/CsrfTokenManager.php | 1 + lib/private/Security/CSRF/TokenStorage/SessionStorage.php | 1 + lib/private/Security/Certificate.php | 1 + lib/private/Security/CredentialsManager.php | 2 ++ lib/private/Security/Crypto.php | 1 + lib/private/Security/Hasher.php | 1 + lib/private/Security/IdentityProof/Manager.php | 1 + lib/private/Security/IdentityProof/Signer.php | 1 + lib/private/Security/RateLimiting/Backend/MemoryCache.php | 1 + lib/private/Security/SecureRandom.php | 1 + lib/private/Security/TrustedDomainHelper.php | 2 +- 15 files changed, 16 insertions(+), 1 deletion(-) (limited to 'lib/private/Security') diff --git a/lib/private/Security/Bruteforce/Throttler.php b/lib/private/Security/Bruteforce/Throttler.php index d1fead6759f..1bece6a05d5 100644 --- a/lib/private/Security/Bruteforce/Throttler.php +++ b/lib/private/Security/Bruteforce/Throttler.php @@ -3,6 +3,7 @@ * @copyright Copyright (c) 2016 Lukas Reschke * * @author Bjoern Schiessle + * @author Christoph Wurst * @author Lukas Reschke * @author Mark Berezovsky * @author Morris Jobke diff --git a/lib/private/Security/CSP/ContentSecurityPolicyManager.php b/lib/private/Security/CSP/ContentSecurityPolicyManager.php index 4245fdcb2de..e0403e77936 100644 --- a/lib/private/Security/CSP/ContentSecurityPolicyManager.php +++ b/lib/private/Security/CSP/ContentSecurityPolicyManager.php @@ -5,6 +5,7 @@ declare(strict_types=1); /** * @copyright Copyright (c) 2016, ownCloud, Inc. * + * @author Christoph Wurst * @author Lukas Reschke * @author Roeland Jago Douma * diff --git a/lib/private/Security/CSP/ContentSecurityPolicyNonceManager.php b/lib/private/Security/CSP/ContentSecurityPolicyNonceManager.php index 06f8faece13..cc5a3c2d8fb 100644 --- a/lib/private/Security/CSP/ContentSecurityPolicyNonceManager.php +++ b/lib/private/Security/CSP/ContentSecurityPolicyNonceManager.php @@ -5,6 +5,7 @@ declare(strict_types=1); /** * @copyright Copyright (c) 2016 Lukas Reschke * + * @author Christoph Wurst * @author Joas Schilling * @author Lukas Reschke * @author Pavel Krasikov diff --git a/lib/private/Security/CSRF/CsrfToken.php b/lib/private/Security/CSRF/CsrfToken.php index a0ecdbd1008..25ec8572a66 100644 --- a/lib/private/Security/CSRF/CsrfToken.php +++ b/lib/private/Security/CSRF/CsrfToken.php @@ -5,6 +5,7 @@ declare(strict_types=1); /** * @copyright Copyright (c) 2016, ownCloud, Inc. * + * @author Christoph Wurst * @author Leon Klingele * @author Lukas Reschke * @author Roeland Jago Douma diff --git a/lib/private/Security/CSRF/CsrfTokenManager.php b/lib/private/Security/CSRF/CsrfTokenManager.php index 2f64aeb24f4..f0536c770b5 100644 --- a/lib/private/Security/CSRF/CsrfTokenManager.php +++ b/lib/private/Security/CSRF/CsrfTokenManager.php @@ -5,6 +5,7 @@ declare(strict_types=1); /** * @copyright Copyright (c) 2016, ownCloud, Inc. * + * @author Christoph Wurst * @author Lukas Reschke * @author Roeland Jago Douma * diff --git a/lib/private/Security/CSRF/TokenStorage/SessionStorage.php b/lib/private/Security/CSRF/TokenStorage/SessionStorage.php index 34adc566bf7..ed9b068faa2 100644 --- a/lib/private/Security/CSRF/TokenStorage/SessionStorage.php +++ b/lib/private/Security/CSRF/TokenStorage/SessionStorage.php @@ -5,6 +5,7 @@ declare(strict_types=1); /** * @copyright Copyright (c) 2016, ownCloud, Inc. * + * @author Christoph Wurst * @author Joas Schilling * @author Lukas Reschke * @author Roeland Jago Douma diff --git a/lib/private/Security/Certificate.php b/lib/private/Security/Certificate.php index cc4baeaa658..c89122f9a4b 100644 --- a/lib/private/Security/Certificate.php +++ b/lib/private/Security/Certificate.php @@ -2,6 +2,7 @@ /** * @copyright Copyright (c) 2016, ownCloud, Inc. * + * @author Christoph Wurst * @author Lukas Reschke * @author Morris Jobke * @author Robin Appelman diff --git a/lib/private/Security/CredentialsManager.php b/lib/private/Security/CredentialsManager.php index d187acdf02b..ace8e6889ec 100644 --- a/lib/private/Security/CredentialsManager.php +++ b/lib/private/Security/CredentialsManager.php @@ -2,6 +2,8 @@ /** * @copyright Copyright (c) 2016, ownCloud, Inc. * + * @author Arthur Schiwon + * @author Christoph Wurst * @author Robin McCorkell * @author Roeland Jago Douma * diff --git a/lib/private/Security/Crypto.php b/lib/private/Security/Crypto.php index 19258d2018e..10a52d9fc8f 100644 --- a/lib/private/Security/Crypto.php +++ b/lib/private/Security/Crypto.php @@ -6,6 +6,7 @@ declare(strict_types=1); * @copyright Copyright (c) 2016, ownCloud, Inc. * * @author Andreas Fischer + * @author Christoph Wurst * @author Lukas Reschke * @author Morris Jobke * @author Roeland Jago Douma diff --git a/lib/private/Security/Hasher.php b/lib/private/Security/Hasher.php index 8c081414353..7a6c66d8f87 100644 --- a/lib/private/Security/Hasher.php +++ b/lib/private/Security/Hasher.php @@ -6,6 +6,7 @@ declare(strict_types=1); * @copyright Copyright (c) 2016, ownCloud, Inc. * * @author Arthur Schiwon + * @author Christoph Wurst * @author Lukas Reschke * @author Morris Jobke * @author Roeland Jago Douma diff --git a/lib/private/Security/IdentityProof/Manager.php b/lib/private/Security/IdentityProof/Manager.php index abbda2f11eb..2fa09da3189 100644 --- a/lib/private/Security/IdentityProof/Manager.php +++ b/lib/private/Security/IdentityProof/Manager.php @@ -6,6 +6,7 @@ declare(strict_types=1); * @copyright Copyright (c) 2016 Lukas Reschke * * @author Bjoern Schiessle + * @author Christoph Wurst * @author Joas Schilling * @author Lukas Reschke * @author Roeland Jago Douma diff --git a/lib/private/Security/IdentityProof/Signer.php b/lib/private/Security/IdentityProof/Signer.php index 9f6b27d358f..26293a5ec4a 100644 --- a/lib/private/Security/IdentityProof/Signer.php +++ b/lib/private/Security/IdentityProof/Signer.php @@ -5,6 +5,7 @@ declare(strict_types=1); /** * @copyright Copyright (c) 2016 Lukas Reschke * + * @author Christoph Wurst * @author Lukas Reschke * @author Roeland Jago Douma * diff --git a/lib/private/Security/RateLimiting/Backend/MemoryCache.php b/lib/private/Security/RateLimiting/Backend/MemoryCache.php index ce8bacfb588..2893d31ece2 100644 --- a/lib/private/Security/RateLimiting/Backend/MemoryCache.php +++ b/lib/private/Security/RateLimiting/Backend/MemoryCache.php @@ -5,6 +5,7 @@ declare(strict_types=1); /** * @copyright Copyright (c) 2017 Lukas Reschke * + * @author Christoph Wurst * @author Lukas Reschke * @author Morris Jobke * @author Roeland Jago Douma diff --git a/lib/private/Security/SecureRandom.php b/lib/private/Security/SecureRandom.php index 4826399ff5b..815b70caa03 100644 --- a/lib/private/Security/SecureRandom.php +++ b/lib/private/Security/SecureRandom.php @@ -5,6 +5,7 @@ declare(strict_types=1); /** * @copyright Copyright (c) 2016, ownCloud, Inc. * + * @author Christoph Wurst * @author Lukas Reschke * @author Morris Jobke * @author Roeland Jago Douma diff --git a/lib/private/Security/TrustedDomainHelper.php b/lib/private/Security/TrustedDomainHelper.php index 320646e1b7f..8004bf7dc6f 100644 --- a/lib/private/Security/TrustedDomainHelper.php +++ b/lib/private/Security/TrustedDomainHelper.php @@ -2,8 +2,8 @@ /** * @copyright Copyright (c) 2016, ownCloud, Inc. * + * @author Christoph Wurst * @author Johannes Ernst - * @author Johannes Koenig * @author Julius Härtl * @author Lukas Reschke * @author Morris Jobke -- cgit v1.2.3