We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f3d153 commit adc18e5Copy full SHA for adc18e5
2 files changed
app/Common.php
@@ -11,5 +11,5 @@
11
* loaded early on, and may also contain additional functions
12
* that you'd like to use throughout your entire application
13
*
14
- * @see: https://codeigniter4.github.io/CodeIgniter4/
+ * @see: https://codeigniter.com/user_guide/extending/common.html
15
*/
app/Config/Encryption.php
@@ -80,4 +80,13 @@ class Encryption extends BaseConfig
80
* Set to 'authentication' for CI3 Encryption compatibility.
81
82
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';
92
}
0 commit comments