Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adjust README.md #568

Merged
merged 1 commit into from
Nov 12, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 4 additions & 7 deletions src/SQLitePCLRaw.bundle_e_sqlite3mc/README.md
Original file line number Diff line number Diff line change
@@ -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.

Expand All @@ -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)

Expand Down Expand Up @@ -97,7 +96,7 @@ using (db)
}
}
```
## <a name="encryption" />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/).

Expand Down Expand Up @@ -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

Expand Down
Loading