8000 More README cleanup · codeguru85/sqlcipher@ebcae49 · GitHub
[go: up one dir, main page]

Skip to content

Commit ebcae49

Browse files
More README cleanup
1 parent a8906c4 commit ebcae49

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

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

2828
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.
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

0 commit comments

Comments
 (0)
0