diff options
author | Frank Karlitschek <karlitschek@kde.org> | 2011-08-20 11:53:14 +0200 |
---|---|---|
committer | Frank Karlitschek <karlitschek@kde.org> | 2011-08-20 11:53:14 +0200 |
commit | 109302a928fa6953f1ecd00148fe06d3b6bf2baf (patch) | |
tree | 0447ba5ccd75266695f094fe5c124b5e718ae9a0 /lib | |
parent | eac4d4ff06e9d96fb05b5fb9c6f2eb7cc9d4256e (diff) | |
download | nextcloud-server-109302a928fa6953f1ecd00148fe06d3b6bf2baf.tar.gz nextcloud-server-109302a928fa6953f1ecd00148fe06d3b6bf2baf.zip |
add some todos
Diffstat (limited to 'lib')
-rwxr-xr-x | lib/crypt.php | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/lib/crypt.php b/lib/crypt.php index de1f6c73387..60020679480 100755 --- a/lib/crypt.php +++ b/lib/crypt.php @@ -23,11 +23,12 @@ // Todo: -// Crypt/decrypt button in the userinterface -// setting if crypto should be on by default -// transparent decrypt/encrpt in filesystem.php -// don't use a password directly as encryption key. but a key which is stored on the server and encrypted with the user password. -> password change faster -// check if the block lenght of the encrypted data stays the same +// - Crypt/decrypt button in the userinterface +// - Setting if crypto should be on by default +// - Add a setting "DonĀ“t encrypt files larger than xx because of performance reasons" +// - Transparent decrypt/encrpt in filesystem.php. Autodetect if a file is encrypted (.encrypted extensio) +// - Don't use a password directly as encryption key. but a key which is stored on the server and encrypted with the user password. -> password change faster +// - IMPORTANT! Check if the block lenght of the encrypted data stays the same require_once('Crypt_Blowfish/Blowfish.php'); |