diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2019-09-09 20:39:19 +0200 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2019-09-14 13:52:10 +0200 |
commit | 2b98eea1297a8024650c456fccbc33824721053e (patch) | |
tree | 8736f4693dfb086d70cf26fe69115f442c8e3d8e /lib/private/Server.php | |
parent | 89d3b2cdd3c43386dea4f985e890ad332d8e6249 (diff) | |
download | nextcloud-server-2b98eea1297a8024650c456fccbc33824721053e.tar.gz nextcloud-server-2b98eea1297a8024650c456fccbc33824721053e.zip |
Harden identifyproof openssl code
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'lib/private/Server.php')
-rw-r--r-- | lib/private/Server.php | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/lib/private/Server.php b/lib/private/Server.php index 433ee044fa4..b4af17ba288 100644 --- a/lib/private/Server.php +++ b/lib/private/Server.php @@ -1186,14 +1186,6 @@ class Server extends ServerContainer implements IServerContainer { $this->registerAlias(IDashboardManager::class, DashboardManager::class); $this->registerAlias(IFullTextSearchManager::class, FullTextSearchManager::class); - $this->registerService(\OC\Security\IdentityProof\Manager::class, function (Server $c) { - return new \OC\Security\IdentityProof\Manager( - $c->query(\OC\Files\AppData\Factory::class), - $c->getCrypto(), - $c->getConfig() - ); - }); - $this->registerAlias(ISubAdmin::class, SubAdmin::class); $this->registerAlias(IInitialStateService::class, InitialStateService::class); |