diff options
author | Björn Schießle <schiessle@owncloud.com> | 2013-05-27 12:21:39 +0200 |
---|---|---|
committer | Björn Schießle <schiessle@owncloud.com> | 2013-05-27 17:35:28 +0200 |
commit | df22a7c4954acb67c9365f9900bd7a3f70f13487 (patch) | |
tree | 7da644cb3478e26ca29e21b83964ae071e47836d /apps/files_encryption/lib/crypt.php | |
parent | 8b355788333f9078066b3f877c4e5c1c4001597c (diff) | |
download | nextcloud-server-df22a7c4954acb67c9365f9900bd7a3f70f13487.tar.gz nextcloud-server-df22a7c4954acb67c9365f9900bd7a3f70f13487.zip |
make legacyDecrypt() private als always call legacyBlockDecrypt() from other classes
Diffstat (limited to 'apps/files_encryption/lib/crypt.php')
-rwxr-xr-x | apps/files_encryption/lib/crypt.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_encryption/lib/crypt.php b/apps/files_encryption/lib/crypt.php index 009a648016b..9345712a455 100755 --- a/apps/files_encryption/lib/crypt.php +++ b/apps/files_encryption/lib/crypt.php @@ -607,7 +607,7 @@ class Crypt *
* This function decrypts an content
*/
- public static function legacyDecrypt( $content, $passphrase = '' ) {
+ private static function legacyDecrypt( $content, $passphrase = '' ) {
$bf = self::getBlowfish( $passphrase );
|