From d379157289d2e09f41b10253d90ed0867e267a7e Mon Sep 17 00:00:00 2001 From: Roeland Jago Douma Date: Fri, 22 Apr 2016 17:34:01 +0200 Subject: [PATCH] Move \OC\Encryption to PSR-4 --- .../{encryption/decryptall.php => Encryption/DecryptAll.php} | 0 .../encryptionwrapper.php => Encryption/EncryptionWrapper.php} | 0 .../Exceptions/DecryptionFailedException.php} | 0 .../Exceptions/EmptyEncryptionDataException.php} | 0 .../Exceptions/EncryptionFailedException.php} | 0 .../Exceptions/EncryptionHeaderKeyExistsException.php} | 0 .../Exceptions/EncryptionHeaderToLargeException.php} | 0 .../Exceptions/ModuleAlreadyExistsException.php} | 0 .../Exceptions/ModuleDoesNotExistsException.php} | 0 .../Exceptions/UnknownCipherException.php} | 0 lib/private/{encryption/file.php => Encryption/File.php} | 0 .../{encryption/hookmanager.php => Encryption/HookManager.php} | 0 .../{encryption/keys/storage.php => Encryption/Keys/Storage.php} | 0 lib/private/{encryption/manager.php => Encryption/Manager.php} | 0 lib/private/{encryption/update.php => Encryption/Update.php} | 0 lib/private/{encryption/util.php => Encryption/Util.php} | 0 16 files changed, 0 insertions(+), 0 deletions(-) rename lib/private/{encryption/decryptall.php => Encryption/DecryptAll.php} (100%) rename lib/private/{encryption/encryptionwrapper.php => Encryption/EncryptionWrapper.php} (100%) rename lib/private/{encryption/exceptions/decryptionfailedexception.php => Encryption/Exceptions/DecryptionFailedException.php} (100%) rename lib/private/{encryption/exceptions/emptyencryptiondataexception.php => Encryption/Exceptions/EmptyEncryptionDataException.php} (100%) rename lib/private/{encryption/exceptions/encryptionfailedexception.php => Encryption/Exceptions/EncryptionFailedException.php} (100%) rename lib/private/{encryption/exceptions/encryptionheaderkeyexistsexception.php => Encryption/Exceptions/EncryptionHeaderKeyExistsException.php} (100%) rename lib/private/{encryption/exceptions/encryptionheadertolargeexception.php => Encryption/Exceptions/EncryptionHeaderToLargeException.php} (100%) rename lib/private/{encryption/exceptions/modulealreadyexistsexception.php => Encryption/Exceptions/ModuleAlreadyExistsException.php} (100%) rename lib/private/{encryption/exceptions/moduledoesnotexistsexception.php => Encryption/Exceptions/ModuleDoesNotExistsException.php} (100%) rename lib/private/{encryption/exceptions/unknowncipherexception.php => Encryption/Exceptions/UnknownCipherException.php} (100%) rename lib/private/{encryption/file.php => Encryption/File.php} (100%) rename lib/private/{encryption/hookmanager.php => Encryption/HookManager.php} (100%) rename lib/private/{encryption/keys/storage.php => Encryption/Keys/Storage.php} (100%) rename lib/private/{encryption/manager.php => Encryption/Manager.php} (100%) rename lib/private/{encryption/update.php => Encryption/Update.php} (100%) rename lib/private/{encryption/util.php => Encryption/Util.php} (100%) diff --git a/lib/private/encryption/decryptall.php b/lib/private/Encryption/DecryptAll.php similarity index 100% rename from lib/private/encryption/decryptall.php rename to lib/private/Encryption/DecryptAll.php diff --git a/lib/private/encryption/encryptionwrapper.php b/lib/private/Encryption/EncryptionWrapper.php similarity index 100% rename from lib/private/encryption/encryptionwrapper.php rename to lib/private/Encryption/EncryptionWrapper.php diff --git a/lib/private/encryption/exceptions/decryptionfailedexception.php b/lib/private/Encryption/Exceptions/DecryptionFailedException.php similarity index 100% rename from lib/private/encryption/exceptions/decryptionfailedexception.php rename to lib/private/Encryption/Exceptions/DecryptionFailedException.php diff --git a/lib/private/encryption/exceptions/emptyencryptiondataexception.php b/lib/private/Encryption/Exceptions/EmptyEncryptionDataException.php similarity index 100% rename from lib/private/encryption/exceptions/emptyencryptiondataexception.php rename to lib/private/Encryption/Exceptions/EmptyEncryptionDataException.php diff --git a/lib/private/encryption/exceptions/encryptionfailedexception.php b/lib/private/Encryption/Exceptions/EncryptionFailedException.php similarity index 100% rename from lib/private/encryption/exceptions/encryptionfailedexception.php rename to lib/private/Encryption/Exceptions/EncryptionFailedException.php diff --git a/lib/private/encryption/exceptions/encryptionheaderkeyexistsexception.php b/lib/private/Encryption/Exceptions/EncryptionHeaderKeyExistsException.php similarity index 100% rename from lib/private/encryption/exceptions/encryptionheaderkeyexistsexception.php rename to lib/private/Encryption/Exceptions/EncryptionHeaderKeyExistsException.php diff --git a/lib/private/encryption/exceptions/encryptionheadertolargeexception.php b/lib/private/Encryption/Exceptions/EncryptionHeaderToLargeException.php similarity index 100% rename from lib/private/encryption/exceptions/encryptionheadertolargeexception.php rename to lib/private/Encryption/Exceptions/EncryptionHeaderToLargeException.php diff --git a/lib/private/encryption/exceptions/modulealreadyexistsexception.php b/lib/private/Encryption/Exceptions/ModuleAlreadyExistsException.php similarity index 100% rename from lib/private/encryption/exceptions/modulealreadyexistsexception.php rename to lib/private/Encryption/Exceptions/ModuleAlreadyExistsException.php diff --git a/lib/private/encryption/exceptions/moduledoesnotexistsexception.php b/lib/private/Encryption/Exceptions/ModuleDoesNotExistsException.php similarity index 100% rename from lib/private/encryption/exceptions/moduledoesnotexistsexception.php rename to lib/private/Encryption/Exceptions/ModuleDoesNotExistsException.php diff --git a/lib/private/encryption/exceptions/unknowncipherexception.php b/lib/private/Encryption/Exceptions/UnknownCipherException.php similarity index 100% rename from lib/private/encryption/exceptions/unknowncipherexception.php rename to lib/private/Encryption/Exceptions/UnknownCipherException.php diff --git a/lib/private/encryption/file.php b/lib/private/Encryption/File.php similarity index 100% rename from lib/private/encryption/file.php rename to lib/private/Encryption/File.php diff --git a/lib/private/encryption/hookmanager.php b/lib/private/Encryption/HookManager.php similarity index 100% rename from lib/private/encryption/hookmanager.php rename to lib/private/Encryption/HookManager.php diff --git a/lib/private/encryption/keys/storage.php b/lib/private/Encryption/Keys/Storage.php similarity index 100% rename from lib/private/encryption/keys/storage.php rename to lib/private/Encryption/Keys/Storage.php diff --git a/lib/private/encryption/manager.php b/lib/private/Encryption/Manager.php similarity index 100% rename from lib/private/encryption/manager.php rename to lib/private/Encryption/Manager.php diff --git a/lib/private/encryption/update.php b/lib/private/Encryption/Update.php similarity index 100% rename from lib/private/encryption/update.php rename to lib/private/Encryption/Update.php diff --git a/lib/private/encryption/util.php b/lib/private/Encryption/Util.php similarity index 100% rename from lib/private/encryption/util.php rename to lib/private/Encryption/Util.php