0
0
mirror of https://github.com/tursodatabase/libsql.git synced 2025-10-12 03:05:00 +00:00
Files
libsql/bindings/c
Pekka Enberg 161c0afd1d bindings/c: Don't forward empty encryption key string
op-sqlite, for example, always passes the remote encryption key:

```
DB opsqlite_libsql_open_sync(std::string const &name,
                             std::string const &base_path,
                             std::string const &url,
                             std::string const &auth_token, int sync_interval,
                             bool offline, std::string const &encryption_key,
                             std::string const &remote_encryption_key) {
```

Therefore, ensure that remote encryption key is not null and non-empty
before passing it as part of HTTP requests.
2025-09-23 09:00:30 +03:00
..
2023-10-16 09:06:25 -07:00
2023-10-16 09:06:25 -07:00
2024-11-29 10:51:13 +01:00