From 0cf88a39ce0e628c97a9a8bd8a74a502792e5276 Mon Sep 17 00:00:00 2001 From: Ulrich Telle Date: Sat, 11 Nov 2023 08:01:19 +0100 Subject: [PATCH] Adjust README.md - Fix section anchor (TOC entry for encryption section didn't function on NuGet.org) - Adjust acknowledegment section - Remove license section (not necessary on NuGet.org package page) --- src/SQLitePCLRaw.bundle_e_sqlite3mc/README.md | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/src/SQLitePCLRaw.bundle_e_sqlite3mc/README.md b/src/SQLitePCLRaw.bundle_e_sqlite3mc/README.md index c24242fb..deed4a34 100644 --- a/src/SQLitePCLRaw.bundle_e_sqlite3mc/README.md +++ b/src/SQLitePCLRaw.bundle_e_sqlite3mc/README.md @@ -1,4 +1,4 @@ -# SQLite3 Multiple Ciphers NuGet +# SQLite3 Multiple Ciphers NuGet Package This library provides C#/.NET bindings for [SQLite3 Multiple Ciphers](https://utelle.github.io/SQLite3MultipleCiphers/). It leverages [SQLitePCLRaw](https://github.com/ericsink/SQLitePCL.raw#readme) to create the bindings. @@ -7,7 +7,6 @@ This library provides C#/.NET bindings for [SQLite3 Multiple Ciphers](https://ut - [Usage](#usage) - [Passphrase based database encryption support](#passphrase-based-database-encryption-support) - [Examples for cipher configuration](#examples-for-cipher-configuration) -- [License](#license) - [Acknowledgements](#acknowledgements) - [See also](#see-also) @@ -97,7 +96,7 @@ using (db) } } ``` -## Passphrase based database encryption support +## Passphrase based database encryption support This NuGet package supports access to **encrypted** [SQLite](https://www.sqlite.org) databases from .NET applications. It is based on the project [SQLite3 Multiple Ciphers](https://utelle.github.io/SQLite3MultipleCiphers/). @@ -162,16 +161,14 @@ The resulting connection string looks like this: using var connection = new SqliteConnection("Data Source=file:example.db?cipher=rc4;Password=Password12!"); ``` -## License - -**SQLite3 Multiple Ciphers NuGet** is free software and is licensed under the [MIT license](LICENSE). - ## Acknowledgements The following people have contributed to **SQLite3 Multiple Ciphers NuGet**: - [Brice Lambson](https://github.com/bricelam) - [Josh Menzel](https://github.com/jammerxd) +- [Eric Sink](https://github.com/ericsink) +- [Ulrich Telle](https://github.com/utelle) ## See also