diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2014-06-03 12:19:04 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2014-06-03 12:19:04 +0200 |
commit | d3e830e938fe85da2fd6d9912c26677034d952f7 (patch) | |
tree | 0bcf83d2a867586d3f993f5c5dd097b27e00e6c6 /apps/files_encryption/lib | |
parent | b62cb007715e649d9656c32bfe4b42599fd96983 (diff) | |
parent | 17cbfc714a77cfe8b89199fcf780319bd87a43a0 (diff) | |
download | nextcloud-server-d3e830e938fe85da2fd6d9912c26677034d952f7.tar.gz nextcloud-server-d3e830e938fe85da2fd6d9912c26677034d952f7.zip |
Merge pull request #8729 from owncloud/add-phpseclib-master
use phpseclib from 3rdparty
Diffstat (limited to 'apps/files_encryption/lib')
-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 ec7b3bc92e4..694791810c9 100755 --- a/apps/files_encryption/lib/crypt.php +++ b/apps/files_encryption/lib/crypt.php @@ -532,7 +532,7 @@ class Crypt { if ($key) {
- return new \Crypt_Blowfish($key);
+ return new \Legacy_Crypt_Blowfish($key);
} else {
|