From 1a9330cd69631ef12b71239c4f98836e09e021ea Mon Sep 17 00:00:00 2001 From: Christoph Wurst Date: Tue, 31 Mar 2020 10:49:10 +0200 Subject: Update the license headers for Nextcloud 19 Signed-off-by: Christoph Wurst --- apps/encryption/lib/AppInfo/Application.php | 1 + apps/encryption/lib/Crypto/EncryptAll.php | 1 + apps/encryption/lib/Crypto/Encryption.php | 1 + apps/encryption/lib/Recovery.php | 1 + apps/encryption/tests/Controller/RecoveryControllerTest.php | 1 + apps/encryption/tests/Controller/SettingsControllerTest.php | 1 + apps/encryption/tests/Controller/StatusControllerTest.php | 1 + apps/encryption/tests/Crypto/CryptTest.php | 1 + apps/encryption/tests/Crypto/EncryptionTest.php | 1 + apps/encryption/tests/Hooks/UserHooksTest.php | 1 + apps/encryption/tests/KeyManagerTest.php | 1 + apps/encryption/tests/RecoveryTest.php | 1 + apps/encryption/tests/SessionTest.php | 1 + apps/encryption/tests/UtilTest.php | 1 + 14 files changed, 14 insertions(+) (limited to 'apps/encryption') diff --git a/apps/encryption/lib/AppInfo/Application.php b/apps/encryption/lib/AppInfo/Application.php index 745dfe59aa7..6c75a1912a8 100644 --- a/apps/encryption/lib/AppInfo/Application.php +++ b/apps/encryption/lib/AppInfo/Application.php @@ -4,6 +4,7 @@ * * @author Bjoern Schiessle * @author Björn Schießle + * @author Christoph Wurst * @author Clark Tomlinson * @author Joas Schilling * @author Roeland Jago Douma diff --git a/apps/encryption/lib/Crypto/EncryptAll.php b/apps/encryption/lib/Crypto/EncryptAll.php index 1820140337c..5c90631e85f 100644 --- a/apps/encryption/lib/Crypto/EncryptAll.php +++ b/apps/encryption/lib/Crypto/EncryptAll.php @@ -4,6 +4,7 @@ * * @author Bjoern Schiessle * @author Björn Schießle + * @author Christoph Wurst * @author Kenneth Newwood * @author Morris Jobke * @author Roeland Jago Douma diff --git a/apps/encryption/lib/Crypto/Encryption.php b/apps/encryption/lib/Crypto/Encryption.php index edeb04ce857..421e5f02ee6 100644 --- a/apps/encryption/lib/Crypto/Encryption.php +++ b/apps/encryption/lib/Crypto/Encryption.php @@ -4,6 +4,7 @@ * * @author Bjoern Schiessle * @author Björn Schießle + * @author Christoph Wurst * @author Clark Tomlinson * @author Jan-Christoph Borchardt * @author Joas Schilling diff --git a/apps/encryption/lib/Recovery.php b/apps/encryption/lib/Recovery.php index 335e6c13d73..1feb5759586 100644 --- a/apps/encryption/lib/Recovery.php +++ b/apps/encryption/lib/Recovery.php @@ -3,6 +3,7 @@ * @copyright Copyright (c) 2016, ownCloud, Inc. * * @author Björn Schießle + * @author Christoph Wurst * @author Clark Tomlinson * @author Joas Schilling * @author Lukas Reschke diff --git a/apps/encryption/tests/Controller/RecoveryControllerTest.php b/apps/encryption/tests/Controller/RecoveryControllerTest.php index c6f7a8649b6..3c8b239631e 100644 --- a/apps/encryption/tests/Controller/RecoveryControllerTest.php +++ b/apps/encryption/tests/Controller/RecoveryControllerTest.php @@ -2,6 +2,7 @@ /** * @copyright Copyright (c) 2016, ownCloud, Inc. * + * @author Christoph Wurst * @author Clark Tomlinson * @author Joas Schilling * @author Morris Jobke diff --git a/apps/encryption/tests/Controller/SettingsControllerTest.php b/apps/encryption/tests/Controller/SettingsControllerTest.php index c2f67478bb7..4ac26cde64c 100644 --- a/apps/encryption/tests/Controller/SettingsControllerTest.php +++ b/apps/encryption/tests/Controller/SettingsControllerTest.php @@ -3,6 +3,7 @@ * @copyright Copyright (c) 2016, ownCloud, Inc. * * @author Björn Schießle + * @author Christoph Wurst * @author Joas Schilling * @author Morris Jobke * @author Roeland Jago Douma diff --git a/apps/encryption/tests/Controller/StatusControllerTest.php b/apps/encryption/tests/Controller/StatusControllerTest.php index f93be963989..d9db99989d5 100644 --- a/apps/encryption/tests/Controller/StatusControllerTest.php +++ b/apps/encryption/tests/Controller/StatusControllerTest.php @@ -4,6 +4,7 @@ * * @author Bjoern Schiessle * @author Björn Schießle + * @author Christoph Wurst * @author Joas Schilling * @author Morris Jobke * @author Roeland Jago Douma diff --git a/apps/encryption/tests/Crypto/CryptTest.php b/apps/encryption/tests/Crypto/CryptTest.php index 31b61ee0664..43704c95d55 100644 --- a/apps/encryption/tests/Crypto/CryptTest.php +++ b/apps/encryption/tests/Crypto/CryptTest.php @@ -3,6 +3,7 @@ * @copyright Copyright (c) 2016, ownCloud, Inc. * * @author Björn Schießle + * @author Christoph Wurst * @author Joas Schilling * @author Lukas Reschke * @author Morris Jobke diff --git a/apps/encryption/tests/Crypto/EncryptionTest.php b/apps/encryption/tests/Crypto/EncryptionTest.php index cebb27580e2..26e32c3a182 100644 --- a/apps/encryption/tests/Crypto/EncryptionTest.php +++ b/apps/encryption/tests/Crypto/EncryptionTest.php @@ -4,6 +4,7 @@ * * @author Bjoern Schiessle * @author Björn Schießle + * @author Christoph Wurst * @author Joas Schilling * @author Morris Jobke * @author Roeland Jago Douma diff --git a/apps/encryption/tests/Hooks/UserHooksTest.php b/apps/encryption/tests/Hooks/UserHooksTest.php index 53548c7ccd8..3cfeb2362ac 100644 --- a/apps/encryption/tests/Hooks/UserHooksTest.php +++ b/apps/encryption/tests/Hooks/UserHooksTest.php @@ -4,6 +4,7 @@ * * @author Bjoern Schiessle * @author Björn Schießle + * @author Christoph Wurst * @author Clark Tomlinson * @author Joas Schilling * @author Morris Jobke diff --git a/apps/encryption/tests/KeyManagerTest.php b/apps/encryption/tests/KeyManagerTest.php index c7b9d62690e..2696698eabc 100644 --- a/apps/encryption/tests/KeyManagerTest.php +++ b/apps/encryption/tests/KeyManagerTest.php @@ -4,6 +4,7 @@ * * @author Bjoern Schiessle * @author Björn Schießle + * @author Christoph Wurst * @author Clark Tomlinson * @author Joas Schilling * @author Lukas Reschke diff --git a/apps/encryption/tests/RecoveryTest.php b/apps/encryption/tests/RecoveryTest.php index 414e8d895b8..a41c2ff9fea 100644 --- a/apps/encryption/tests/RecoveryTest.php +++ b/apps/encryption/tests/RecoveryTest.php @@ -3,6 +3,7 @@ * @copyright Copyright (c) 2016, ownCloud, Inc. * * @author Björn Schießle + * @author Christoph Wurst * @author Clark Tomlinson * @author Joas Schilling * @author Lukas Reschke diff --git a/apps/encryption/tests/SessionTest.php b/apps/encryption/tests/SessionTest.php index daa05b140da..4b5cd9f0cb5 100644 --- a/apps/encryption/tests/SessionTest.php +++ b/apps/encryption/tests/SessionTest.php @@ -4,6 +4,7 @@ * * @author Bjoern Schiessle * @author Björn Schießle + * @author Christoph Wurst * @author Clark Tomlinson * @author Joas Schilling * @author Roeland Jago Douma diff --git a/apps/encryption/tests/UtilTest.php b/apps/encryption/tests/UtilTest.php index e9133055f41..6f3aea38a9b 100644 --- a/apps/encryption/tests/UtilTest.php +++ b/apps/encryption/tests/UtilTest.php @@ -4,6 +4,7 @@ * * @author Bjoern Schiessle * @author Björn Schießle + * @author Christoph Wurst * @author Clark Tomlinson * @author Joas Schilling * @author Morris Jobke -- cgit v1.2.3