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:
26
26
2 . If compiling against the default OpenSSL crypto provider, you will need to link libcrypto
27
27
28
28
Example 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.
30
30
31
31
$ ./configure --enable-tempstore=yes CFLAGS="-DSQLITE_HAS_CODEC" \
32
32
LDFLAGS="/opt/local/lib/libcrypto.a"
@@ -53,9 +53,9 @@ key data without key derivation.
53
53
54
54
PRAGMA key = "x'2DD29CA851E7B56E4697B0E1F08507293D761A05CE4D1B628663F411A8086D99'";
55
55
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 ` .
59
59
60
60
int sqlite3_key(sqlite3 *db, const void *pKey, int nKey);
61
61
You can’t perform that action at this time.
0 commit comments