Plugin.Maui.FileVault
1.0.0
See the version list below for details.
dotnet add package Plugin.Maui.FileVault --version 1.0.0
NuGet\Install-Package Plugin.Maui.FileVault -Version 1.0.0
<PackageReference Include="Plugin.Maui.FileVault" Version="1.0.0" />
<PackageVersion Include="Plugin.Maui.FileVault" Version="1.0.0" />
<PackageReference Include="Plugin.Maui.FileVault" />
paket add Plugin.Maui.FileVault --version 1.0.0
#r "nuget: Plugin.Maui.FileVault, 1.0.0"
#:package Plugin.Maui.FileVault@1.0.0
#addin nuget:?package=Plugin.Maui.FileVault&version=1.0.0
#tool nuget:?package=Plugin.Maui.FileVault&version=1.0.0
Plugin.Maui.FileVault
Secure local files for .NET MAUI on iOS and Android.
The package stores app-private files as AES-256-GCM ciphertext, keeps the master key in the platform secure store, and manages the file lifecycle (expire, purge, lock, destroy).
| Feature | What it does |
|---|---|
| Encryption | AES-256-GCM per file, unique nonce, authenticated decrypt |
| Key protection | Master key in iOS Keychain / Android Keystore via SecureStorage |
| Passphrase | Optional PBKDF2-SHA256 wrap so the key never sits in SecureStorage |
| Platform files | iOS NSFileProtectionComplete + backup exclusion; Android app-private / no-backup dir |
| Lifecycle | TTL, idle timeout, purge on resume, lock on background, secure delete, quota eviction |
Install
dotnet add package Plugin.Maui.FileVault
Quick start
using Plugin.Maui.FileVault;
public static class MauiProgram
{
public static MauiApp CreateMauiApp()
{
var builder = MauiApp.CreateBuilder();
builder
.UseMauiApp<App>()
.UseFileVault(options =>
{
options.DefaultTimeToLive = TimeSpan.FromDays(30);
options.LockOnBackground = true;
options.ExcludeFromBackup = true;
});
return builder.Build();
}
}
Resolve IFileVault or use FileVault.Current:
var vault = handler.Services.GetRequiredService<IFileVault>();
await vault.WriteTextAsync("notes/pin.txt", "1234", new VaultWriteOptions
{
TimeToLive = TimeSpan.FromHours(12),
Metadata = new Dictionary<string, string> { ["kind"] = "pin" }
});
var pin = await vault.ReadTextAsync("notes/pin.txt");
var files = await vault.ListAsync("notes");
Device-key vaults unlock automatically on first use. Passphrase vaults stay locked until UnlockAsync.
Passphrase lock
builder.UseFileVault(options => options.RequirePassphrase = true);
await vault.UnlockAsync(passphrase);
await vault.LockAsync();
await vault.ChangePassphraseAsync(current, next);
ChangePassphraseAsync(current, newPassphrase: null) moves the master key back to SecureStorage. Files are not re-encrypted; only the key wrap changes.
Expiration and purge
options.DefaultTimeToLive = TimeSpan.FromDays(7);
options.MaxIdleTime = TimeSpan.FromHours(6);
options.AutoPurgeOnResume = true;
await vault.SetExpirationAsync("cache/token.json", DateTimeOffset.UtcNow.AddMinutes(15));
var removed = await vault.PurgeExpiredAsync();
Reading an expired file deletes it and throws FileVaultException with FileVaultError.Expired.
Quota
options.MaxVaultSizeBytes = 10 * 1024 * 1024;
options.EvictionPolicy = VaultEvictionPolicy.LeastRecentlyUsed;
await vault.WriteAsync("photo.jpg", bytes, new VaultWriteOptions { Pin = true });
Pinned files are skipped during eviction. VaultEvictionPolicy.None fails the write with QuotaExceeded.
Lifecycle hooks
UseFileVault wires platform resume/pause:
- Resume — purge expired and idle files
- Background — lock the vault when
LockOnBackgroundistrue
vault.NotifyForeground();
vault.NotifyBackground();
DestroyAsync securely deletes every vault file, the manifest, and the stored key.
Without the generic host
var vault = FileVault.Create(new FileVaultOptions
{
DefaultTimeToLive = TimeSpan.FromDays(1)
});
await vault.UnlockAsync();
Target frameworks
The package targets net10.0, net10.0-android, and net10.0-ios.
Pack from source
dotnet pack src/Plugin.Maui.FileVault/Plugin.Maui.FileVault.csproj -c Release -o artifacts
The .nupkg is written to artifacts/Plugin.Maui.FileVault.1.0.0.nupkg.
License
MIT
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 is compatible. net10.0-android was computed. net10.0-android36.0 is compatible. net10.0-browser was computed. net10.0-ios was computed. net10.0-ios26.0 is compatible. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net10.0
- No dependencies.
-
net10.0-android36.0
- No dependencies.
-
net10.0-ios26.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Initial release. Encrypted local files, platform key protection, passphrase lock, expiration, purge, and quota eviction for .NET MAUI on iOS and Android.