d26a9c3c58
This adds some security utilities to core including: - A library for basic crypto operations (e.g. to encrypt passwords) - A better library for cryptographic actions which allows you to specify the charset - A library for secure string comparisions Remove .htaccess Remove .htaccess Fix typo Add public API Use timing constant comparision Remove CBC constant Adjust code Remove confusing $this
37 lines
838 B
PHP
37 lines
838 B
PHP
<?php
|
|
/**
|
|
* Copyright (c) 2014 Lukas Reschke <lukas@owncloud.com>
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
* later.
|
|
* See the COPYING-README file.
|
|
*/
|
|
|
|
namespace OC\Repair;
|
|
|
|
use OC\Hooks\BasicEmitter;
|
|
use OC\RepairStep;
|
|
use Sabre\DAV\Exception;
|
|
|
|
class RepairConfig extends BasicEmitter implements RepairStep {
|
|
|
|
public function getName() {
|
|
return 'Repair config';
|
|
}
|
|
|
|
/**
|
|
* Updates the configuration after running an update
|
|
*/
|
|
public function run() {
|
|
$this->addSecret();
|
|
}
|
|
|
|
/**
|
|
* Adds a secret to config.php
|
|
*/
|
|
private function addSecret() {
|
|
if(\OC::$server->getConfig()->getSystemValue('secret', null) === null) {
|
|
$secret = \OC::$server->getSecureRandom()->getMediumStrengthGenerator()->generate(48);
|
|
\OC::$server->getConfig()->setSystemValue('secret', $secret);
|
|
}
|
|
}
|
|
}
|