File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -148,6 +148,7 @@ The following table lists the builtin cipher schemes:
148148| ` sqlcipher ` | ` CODEC_TYPE_SQLCIPHER ` | [ SQLCipher: AES 256 Bit] ({{ site.baseurl }}{% link docs/ciphers/cipher_sqlcipher.md %}) |
149149| ` rc4 ` | ` CODEC_TYPE_RC4 ` | [ System.Data.SQLite: RC4] ({{ site.baseurl }}{% link docs/ciphers/cipher_sds_rc4.md %}) |
150150| ` ascon128 ` | ` CODEC_TYPE_ASCON128 ` | [ Ascon: Ascon-128 v1.2] ({{ site.baseurl }}{% link docs/ciphers/cipher_ascon.md %}) |
151+ | ` aegis ` | ` CODEC_TYPE_AEGIS ` | [ AEGIS: AEGIS family] ({{ site.baseurl }}{% link docs/ciphers/cipher_aegis.md %}) |
151152
152153The return value always is the current parameter value on success, or ** -1** on failure.
153154
@@ -194,6 +195,7 @@ The following cipher names are used as the `cipherName` for the supported builti
194195| ` sqlcipher ` | [ AES 256 Bit CBC - SHA1 HMAC (SQLCipher)] ({{ site.baseurl }}{% link docs/ciphers/cipher_sqlcipher.md %}) |
195196| ` rc4 ` | [ RC4 (System.Data.SQLite)] ({{ site.baseurl }}{% link docs/ciphers/cipher_sds_rc4.md %}) |
196197| ` ascon128 ` | [ Ascon: Ascon-128 v1.2] ({{ site.baseurl }}{% link docs/ciphers/cipher_ascon.md %}) |
198+ | ` aegis ` | [ AEGIS: AEGIS family] ({{ site.baseurl }}{% link docs/ciphers/cipher_aegis.md %}) |
197199
198200The return value always is the current parameter value on success, or ** -1** on failure.
199201
@@ -295,6 +297,7 @@ Notes
295297 - ` 1 ` : The name of the cipher scheme was sucessfully retrieved
296298 - ` 0 ` : The index of the cipher scheme was invalid (out of range)
297299 - ` -n ` : The provided buffer was too small, the required buffer size is at least ` n ` characters
300+ - Function added in version 2.3.2
298301
299302## <a name =" cipher_register " />Function ` sqlite3mc_register_cipher() `
300303
You can’t perform that action at this time.
0 commit comments