]> source.dussan.org Git - nextcloud-server.git/commit
Initial commit
authorClark Tomlinson <fallen013@gmail.com>
Tue, 24 Feb 2015 18:05:19 +0000 (13:05 -0500)
committerThomas Müller <thomas.mueller@tmit.eu>
Tue, 7 Apr 2015 11:30:27 +0000 (13:30 +0200)
commit39733c8da1c12cc79b7d650edf2ea1074330ee5f
tree9d072f0ebd7c0a185c5d6afeb345b5d0ae55295e
parent63e7fe608a5f507c5d2b417c45cf26589d091ebc
Initial commit
37 files changed:
apps/encryption/appinfo/app.php [new file with mode: 0644]
apps/encryption/appinfo/encryption.php [new file with mode: 0644]
apps/encryption/appinfo/info.xml [new file with mode: 0644]
apps/encryption/appinfo/routes.php [new file with mode: 0644]
apps/encryption/controller/recoverycontroller.php [new file with mode: 0644]
apps/encryption/hooks/apphooks.php [new file with mode: 0644]
apps/encryption/hooks/contracts/ihook.php [new file with mode: 0644]
apps/encryption/hooks/filesystemhooks.php [new file with mode: 0644]
apps/encryption/hooks/sharehooks.php [new file with mode: 0644]
apps/encryption/hooks/userhooks.php [new file with mode: 0644]
apps/encryption/lib/crypto/Encryption.php [new file with mode: 0644]
apps/encryption/lib/crypto/crypt.php [new file with mode: 0644]
apps/encryption/lib/hookmanager.php [new file with mode: 0644]
apps/encryption/lib/keymanager.php [new file with mode: 0644]
apps/encryption/lib/migrator.php [new file with mode: 0644]
apps/encryption/lib/recovery.php [new file with mode: 0644]
apps/encryption/lib/setup.php [new file with mode: 0644]
apps/encryption/lib/users/setup.php [new file with mode: 0644]
apps/encryption/settings/settings-admin.php [new file with mode: 0644]
apps/encryption/settings/settings-personal.php [new file with mode: 0644]
apps/encryption/tests/lib/KeyManagerTest.php [new file with mode: 0644]
apps/encryption/tests/lib/MigratorTest.php [new file with mode: 0644]
apps/encryption/tests/lib/RequirementsCheckerTest.php [new file with mode: 0644]
apps/files_encryption/lib/hooks.php
lib/private/encryption/exceptions/decryptionfailedexception.php [new file with mode: 0644]
lib/private/encryption/exceptions/emptyencryptiondataexception.php [new file with mode: 0644]
lib/private/encryption/exceptions/encryptionfailedexception.php [new file with mode: 0644]
lib/private/encryption/exceptions/encryptionheadertolargeexception.php [new file with mode: 0644]
lib/private/encryption/exceptions/genericencryptionexception.php [new file with mode: 0644]
lib/private/encryption/exceptions/privatekeymissingexception.php [new file with mode: 0644]
lib/private/encryption/exceptions/publickeymissingexception.php [new file with mode: 0644]
lib/private/encryption/exceptions/unexpectedblocksizeexception.php [new file with mode: 0644]
lib/private/encryption/exceptions/unexpectedendofencryptionheaderexception.php [new file with mode: 0644]
lib/private/encryption/exceptions/unknowncipherexception.php [new file with mode: 0644]
lib/private/encryption/keystorage.php
lib/public/encryption/ikeystorage.php
tests/lib/encryption/managertest.php