Formatting

- Convert indents to tabs
- Remove unnecessary else statement
- Correct PHPDoc formatting
This commit is contained in:
objecttothis
2023-02-07 11:07:43 +04:00
committed by jekkos
parent 38a1815d31
commit ae357cab4a
147 changed files with 6208 additions and 2849 deletions

View File

@@ -57,7 +57,15 @@ class Encryption extends BaseConfig
*/
public string $digest = 'SHA512';
/**
/**
* The cipher to use.
* This setting is only used by OpenSSLHandler.
*
* Set to aes-128-cbc for CI3 Encryption compatibility.
*/
public string $cipher = 'aes-256-ctr';
/**
* Whether the cipher-text should be raw. If set to false, then it will be base64 encoded.
* This setting is only used by OpenSSLHandler.
*