diff options
author | Björn Schießle <bjoern@schiessle.org> | 2016-01-05 12:51:05 +0100 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2016-02-09 23:43:25 +0100 |
commit | 40a5ba72fc868207356c9143c99a947f1a6e6500 (patch) | |
tree | cea061a08b9d356b0b4b8bc9050ac96f81021f19 /apps/encryption/settings/settings-admin.php | |
parent | db8f267647a8d6682f132f8d6dc1334daf90fa4e (diff) | |
download | nextcloud-server-40a5ba72fc868207356c9143c99a947f1a6e6500.tar.gz nextcloud-server-40a5ba72fc868207356c9143c99a947f1a6e6500.zip |
sign all encrypted blocks and check signature on decrypt
Diffstat (limited to 'apps/encryption/settings/settings-admin.php')
-rw-r--r-- | apps/encryption/settings/settings-admin.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/encryption/settings/settings-admin.php b/apps/encryption/settings/settings-admin.php index c3d523f27da..6c7c0987fd7 100644 --- a/apps/encryption/settings/settings-admin.php +++ b/apps/encryption/settings/settings-admin.php @@ -29,7 +29,8 @@ $tmpl = new OCP\Template('encryption', 'settings-admin'); $crypt = new \OCA\Encryption\Crypto\Crypt( \OC::$server->getLogger(), \OC::$server->getUserSession(), - \OC::$server->getConfig()); + \OC::$server->getConfig(), + \OC::$server->getL10N('encryption')); $util = new \OCA\Encryption\Util( new \OC\Files\View(), |