Skip to content

Commit 3d582b8

Browse files
committed
Update C API documentation
- Added missing cipher type - Added info, in which version function `sqlite3mc_cipher_name_copy` was added
1 parent 3b80fe4 commit 3d582b8

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

docs/configuration/config_capi.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff 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

152153
The 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

198200
The 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

0 commit comments

Comments
 (0)