Disable the encryption of uploads, in line with other efforts not to encrypt local data.

This commit is contained in:
James Cole
2019-08-25 07:25:01 +02:00
parent 6b86a35ffb
commit af2f085aa7
8 changed files with 46 additions and 41 deletions

View File

@@ -57,7 +57,7 @@ class NewFinTSJobHandler implements FinTSConfigurationInterface
$config['fints_port'] = (int)($data['fints_port'] ?? '');
$config['fints_bank_code'] = (string)($data['fints_bank_code'] ?? '');
$config['fints_username'] = (string)($data['fints_username'] ?? '');
$config['fints_password'] = (string)(Crypt::encrypt($data['fints_password']) ?? '');
$config['fints_password'] = (string)(Crypt::encrypt($data['fints_password']) ?? ''); // verified
$config['apply-rules'] = 1 === (int)$data['apply_rules'];
// sanitize FinTS URL.