74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
+
+
|
# Security-relevant
But not otherwise SCM-relevant...
- **Port over `db_unprotect()` and `db_protect_pop()`** APIs, which allow a db to effectively be made read-only except for limited windows where specific sections of it needs to be writable. Related: `db.c:db_top_autorizer()`.
- ***SQLite3 Security Encryption Extension (SEE)*** support: <https://sqlite.org/see>. We have received an SEE license which can be used to develop this support, so it's now just a matter of figuring out how best to integrate it in such a way that arbitrary clients can plug into it.
# Non-SCM TODOs
In no particular order...
- **Add [SPDX-style](https://spdx.dev/) license attribution** to all source files. This is ongoing.
|