Skip to content

Commit

Permalink
Release v4.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Mar 26, 2023
1 parent 2f3d153 commit adc18e5
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion app/Common.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@
* loaded early on, and may also contain additional functions
* that you'd like to use throughout your entire application
*
* @see: https://codeigniter4.github.io/CodeIgniter4/
* @see: https://codeigniter.com/user_guide/extending/common.html
*/
9 changes: 9 additions & 0 deletions app/Config/Encryption.php
Original file line number Diff line number Diff line change
Expand Up @@ -80,4 +80,13 @@ class Encryption extends BaseConfig
* Set to 'authentication' for CI3 Encryption compatibility.
*/
public string $authKeyInfo = '';

/**
* Cipher to use.
* This setting is only used by OpenSSLHandler.
*
* Set to 'AES-128-CBC' to decrypt encrypted data that encrypted
* by CI3 Encryption default configuration.
*/
public string $cipher = 'AES-256-CTR';
}

0 comments on commit adc18e5

Please sign in to comment.