@@ -61,17 +61,18 @@ Configuring the Library
6161
6262The example above uses the configuration settings found in **app/Config/Encryption.php **.
6363
64- ============== ========================================================
64+ ============== ==========================================================================
6565Option Possible values (default in parentheses)
66- ============== ========================================================
66+ ============== ==========================================================================
6767key Encryption key starter
6868driver Preferred handler, e.g., OpenSSL or Sodium (``OpenSSL ``)
69- blockSize Padding length in bytes for SodiumHandler (``16 ``)
7069digest Message digest algorithm (``SHA512 ``)
71- encryptKeyInfo Encryption key info (``'' ``). This is only used by OpenSSLHandler.
72- authKeyInfo Authentication key info (``'' ``). This is only used by OpenSSLHandler.
73- rawData Whether the cipher-text should be raw (``true ``). This is only used by OpenSSLHandler.
74- ============== ========================================================
70+ blockSize [**SodiumHandler ** only] Padding length in bytes (``16 ``)
71+ cipher [**OpenSSLHandler ** only] Cipher to use (``AES-256-CTR ``)
72+ encryptKeyInfo [**OpenSSLHandler ** only] Encryption key info (``'' ``)
73+ authKeyInfo [**OpenSSLHandler ** only] Authentication key info (``'' ``)
74+ rawData [**OpenSSLHandler ** only] Whether the cipher-text should be raw (``true ``)
75+ ============== ==========================================================================
7576
7677You can replace the config file's settings by passing a configuration
7778object of your own to the ``Services `` call. The ``$config `` variable must be
@@ -281,7 +282,7 @@ Class Reference
281282
282283 Please refer to the :ref: `configuration ` section for detailed info.
283284
284- .. php :interface :: CodeIgniter\\ Encryption\ \EncrypterInterface
285+ .. php :interface :: CodeIgniter\Encryption\EncrypterInterface
285286
286287 .. php :method :: encrypt($data[, $params = null])
287288
0 commit comments