Encryption

- Removed unneeded encryption code.
- Configured Encryption settings for CI4
This commit is contained in:
objecttothis
2023-02-24 13:46:23 +04:00
committed by Steve Ireland
parent 7d78eec7de
commit 7738242386
2 changed files with 5 additions and 13 deletions

View File

@@ -71,7 +71,7 @@ class Encryption extends BaseConfig
*
* Set to false for CI3 Encryption compatibility.
*/
public bool $rawData = false;
public bool $rawData = true;
/**
* Encryption key info.
@@ -79,7 +79,7 @@ class Encryption extends BaseConfig
*
* Set to 'encryption' for CI3 Encryption compatibility.
*/
public string $encryptKeyInfo = 'encryption';
public string $encryptKeyInfo = '';
/**
* Authentication key info.
@@ -87,5 +87,5 @@ class Encryption extends BaseConfig
*
* Set to 'authentication' for CI3 Encryption compatibility.
*/
public string $authKeyInfo = 'authentication';
public string $authKeyInfo = '';
}