You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nextcloud-server/apps/files_external/lib/Service/EncryptionService.php

105 lines
3.2 KiB

<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
* SPDX-License-Identifier: AGPL-3.0-only
*/
namespace OCA\Files_External\Service;
use OCP\IConfig;
use OCP\Security\ISecureRandom;
use phpseclib3\Crypt\AES;
class EncryptionService {
public function __construct(
private IConfig $config,
private ISecureRandom $secureRandom,
) {
}
/**
* Encrypt passwords in the given config options
*
* @param array $options mount options
* @return array updated options
*/
public function encryptPasswords(array $options): array {
if (isset($options['password'])) {
$options['password_encrypted'] = $this->encryptPassword($options['password']);
// do not unset the password, we want to keep the keys order
// on load... because that's how the UI currently works
$options['password'] = '';
}
return $options;
}
/**
* Decrypt passwords in the given config options
*
* @param array $options mount options
* @return array updated options
*/
public function decryptPasswords(array $options): array {
// note: legacy options might still have the unencrypted password in the "password" field
if (isset($options['password_encrypted'])) {
$options['password'] = $this->decryptPassword($options['password_encrypted']);
unset($options['password_encrypted']);
}
return $options;
}
/**
* Encrypt a single password
*/
private function encryptPassword(string $password): string {
$cipher = $this->getCipher();
$iv = $this->secureRandom->generate(16);
$cipher->setIV($iv);
return base64_encode($iv . $cipher->encrypt($password));
}
/**
* Decrypts a single password
*/
private function decryptPassword(string $encryptedPassword): string {
$cipher = $this->getCipher();
$binaryPassword = base64_decode($encryptedPassword);
$iv = substr($binaryPassword, 0, 16);
$cipher->setIV($iv);
$binaryPassword = substr($binaryPassword, 16);
return $cipher->decrypt($binaryPassword);
}
/**
* Returns the encryption cipher
*/
private function getCipher(): AES {
$cipher = new AES('cbc');
$cipher->setKey($this->normalizeKey((string)$this->config->getSystemValue('passwordsalt', '')));
return $cipher;
}
/**
* Normalize the configured `passwordsalt` into a valid AES key.
*
* Note: phpseclib v2 accepted keys of any length and silently normalized them:
* the key length was rounded up to the next valid AES size (16, 24 or 32
* bytes), the key was read in whole 4-byte words (trailing bytes that did
* not form a full word were dropped) and any missing high words were
* treated as zero. phpseclib v3 rejects keys that are not exactly 16, 24 or
* 32 bytes, so we reproduce the v2 behaviour here to keep previously stored
* passwords decryptable.
*/
private function normalizeKey(string $key): string {
$length = strlen($key);
$keyLength = $length <= 16 ? 16 : ($length <= 24 ? 24 : 32);
// Drop trailing bytes that do not form a full 4-byte word (phpseclib v2 used unpack('N*'))
$key = substr($key, 0, intdiv($length, 4) * 4);
// Zero-pad missing high words and truncate to the target key length
return substr(str_pad($key, $keyLength, "\0"), 0, $keyLength);
}
}