Skip to content

Commit adc18e5

Browse files
committed
Release v4.3.3
1 parent 2f3d153 commit adc18e5

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

app/Common.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@
1111
* loaded early on, and may also contain additional functions
1212
* that you'd like to use throughout your entire application
1313
*
14-
* @see: https://codeigniter4.github.io/CodeIgniter4/
14+
* @see: https://codeigniter.com/user_guide/extending/common.html
1515
*/

app/Config/Encryption.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,4 +80,13 @@ class Encryption extends BaseConfig
8080
* Set to 'authentication' for CI3 Encryption compatibility.
8181
*/
8282
public string $authKeyInfo = '';
83+
84+
/**
85+
* Cipher to use.
86+
* This setting is only used by OpenSSLHandler.
87+
*
88+
* Set to 'AES-128-CBC' to decrypt encrypted data that encrypted
89+
* by CI3 Encryption default configuration.
90+
*/
91+
public string $cipher = 'AES-256-CTR';
8392
}

0 commit comments

Comments
 (0)