File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ SQLite with two small exceptions:
2626 2 . If compiling against the default OpenSSL crypto provider, you will need to link libcrypto
2727
2828Example Static linking (replace /opt/local/lib with the path to libcrypto.a). Note in this
29- example, --enable-tempstore=yes is setting SQLITE_TEMP_STORE=2 for the build.
29+ example, ` --enable-tempstore=yes ` is setting ` SQLITE_TEMP_STORE=2 ` for the build.
3030
3131 $ ./configure --enable-tempstore=yes CFLAGS="-DSQLITE_HAS_CODEC" \
3232 LDFLAGS="/opt/local/lib/libcrypto.a"
@@ -53,9 +53,9 @@ key data without key derivation.
5353
5454 PRAGMA key = "x'2DD29CA851E7B56E4697B0E1F08507293D761A05CE4D1B628663F411A8086D99'";
5555
56- To encrypt a database programatically you can use the sqlite3_key function.
57- The data provided in pKey is converted to an encryption key according to the
58- same rules as PRAGMA key.
56+ To encrypt a database programatically you can use the ` sqlite3_key ` function.
57+ The data provided in ` pKey ` is converted to an encryption key according to the
58+ same rules as ` PRAGMA key ` .
5959
6060 int sqlite3_key(sqlite3 *db, const void *pKey, int nKey);
6161
You can’t perform that action at this time.
0 commit comments