2020-05-27 18:46:16 +02:00
|
|
|
<?php
|
2020-08-04 11:25:22 +00:00
|
|
|
|
2021-06-08 09:52:11 +00:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2020-05-27 18:46:16 +02:00
|
|
|
namespace Config;
|
|
|
|
|
|
|
|
use CodeIgniter\Config\BaseConfig;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Encryption configuration.
|
|
|
|
*
|
2021-05-19 16:35:13 +00:00
|
|
|
* These are the settings used for encryption, if you don't pass a parameter array to the encrypter for
|
|
|
|
* creation/initialization.
|
2020-05-27 18:46:16 +02:00
|
|
|
*/
|
|
|
|
class Encryption extends BaseConfig
|
|
|
|
{
|
2021-04-02 17:20:02 +00:00
|
|
|
/**
|
|
|
|
* --------------------------------------------------------------------------
|
|
|
|
* Encryption Key Starter
|
|
|
|
* --------------------------------------------------------------------------
|
|
|
|
*
|
|
|
|
* If you use the Encryption class you must set an encryption key (seed).
|
|
|
|
* You need to ensure it is long enough for the cipher and mode you plan to use.
|
|
|
|
* See the user guide for more info.
|
2020-08-04 11:25:22 +00:00
|
|
|
*/
|
2021-05-18 17:16:36 +00:00
|
|
|
public string $key = '';
|
2020-05-27 18:46:16 +02:00
|
|
|
|
2021-04-02 17:20:02 +00:00
|
|
|
/**
|
|
|
|
* --------------------------------------------------------------------------
|
|
|
|
* Encryption Driver to Use
|
|
|
|
* --------------------------------------------------------------------------
|
|
|
|
*
|
|
|
|
* One of the supported encryption drivers.
|
|
|
|
*
|
|
|
|
* Available drivers:
|
|
|
|
* - OpenSSL
|
|
|
|
* - Sodium
|
2020-08-04 11:25:22 +00:00
|
|
|
*/
|
2021-05-18 17:16:36 +00:00
|
|
|
public string $driver = 'OpenSSL';
|
2021-04-02 17:20:02 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* --------------------------------------------------------------------------
|
|
|
|
* SodiumHandler's Padding Length in Bytes
|
|
|
|
* --------------------------------------------------------------------------
|
|
|
|
*
|
|
|
|
* This is the number of bytes that will be padded to the plaintext message
|
|
|
|
* before it is encrypted. This value should be greater than zero.
|
|
|
|
*
|
|
|
|
* See the user guide for more information on padding.
|
|
|
|
*/
|
2021-05-18 17:16:36 +00:00
|
|
|
public int $blockSize = 16;
|
2021-04-02 17:20:02 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* --------------------------------------------------------------------------
|
|
|
|
* Encryption digest
|
|
|
|
* --------------------------------------------------------------------------
|
|
|
|
*
|
|
|
|
* HMAC digest to use, e.g. 'SHA512' or 'SHA256'. Default value is 'SHA512'.
|
|
|
|
*/
|
2021-05-18 17:16:36 +00:00
|
|
|
public string $digest = 'SHA512';
|
2020-05-27 18:46:16 +02:00
|
|
|
}
|