aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_encryption/lib/crypt.php
diff options
context:
space:
mode:
Diffstat (limited to 'apps/files_encryption/lib/crypt.php')
-rwxr-xr-xapps/files_encryption/lib/crypt.php18
1 files changed, 0 insertions, 18 deletions
diff --git a/apps/files_encryption/lib/crypt.php b/apps/files_encryption/lib/crypt.php
index 4323ad66de2..bfffda9ba32 100755
--- a/apps/files_encryption/lib/crypt.php
+++ b/apps/files_encryption/lib/crypt.php
@@ -615,24 +615,6 @@ class Crypt {
}
- public static function changekeypasscode($oldPassword, $newPassword) {
-
- //
- // TODO: UNDEFINED VARIABLES: $user, $view
- //
-
- if(\OCP\User::isLoggedIn()){
- $key = Keymanager::getPrivateKey( $user, $view );
- if ( ($key = Crypt::symmetricDecryptFileContent($key,$oldPassword)) ) {
- if ( ($key = Crypt::symmetricEncryptFileContent($key, $newPassword)) ) {
- Keymanager::setPrivateKey($key);
- return true;
- }
- }
- }
- return false;
- }
-
/**
* @brief Get the blowfish encryption handeler for a key
* @param $key string (optional)