Sharc.Crypto 1.2.82

dotnet add package Sharc.Crypto --version 1.2.82
                    
NuGet\Install-Package Sharc.Crypto -Version 1.2.82
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Sharc.Crypto" Version="1.2.82" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Sharc.Crypto" Version="1.2.82" />
                    
Directory.Packages.props
<PackageReference Include="Sharc.Crypto" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Sharc.Crypto --version 1.2.82
                    
#r "nuget: Sharc.Crypto, 1.2.82"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Sharc.Crypto@1.2.82
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Sharc.Crypto&version=1.2.82
                    
Install as a Cake Addin
#tool nuget:?package=Sharc.Crypto&version=1.2.82
                    
Install as a Cake Tool

Sharc.Crypto

Production-grade encryption extensions for the Sharc database engine.

Page-level encryption for SQLite databases using modern cryptographic primitives, with zero native dependencies.

Features

  • AES-256-GCM: Authenticated encryption for every database page.
  • Argon2id: Memory-hard key derivation to protect against brute-force attacks.
  • Zero-Dependency: Pure .NET cryptographic implementations — no native libraries.
  • Secure Lifecycle: SharcKeyHandle ensures keys are handled safely in memory.

Quick Start

using Sharc;

// Open an encrypted database
var options = new SharcOpenOptions { Password = "your-secure-password" };
using var db = SharcDatabase.Open("secure_data.db", options);

// Reads are transparently decrypted at the page level
// with zero intermediate byte[] allocations.
using var reader = db.CreateReader("users");
while (reader.Read())
    Console.WriteLine(reader.GetString(1));

Full Documentation

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Sharc.Crypto:

Package Downloads
Sharc

Pure C# SQLite read/write engine — 95x faster point lookups, zero per-row allocation, no native dependencies. Full CRUD, SQL query pipeline, WASM-ready (~40KB). Built for AI agents, Blazor, and edge deployment.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.2.82 0 3/5/2026
1.2.80 113 2/27/2026
1.2.77 116 2/26/2026
1.2.74 88 2/26/2026
1.2.65 119 2/26/2026
1.2.59 118 2/25/2026
1.1.2-beta 95 2/24/2026
1.0.0.1-alpha 100 2/18/2026
1.0.0-alpha.1 44 2/16/2026