EasyVault 0.1.0
dotnet add package EasyVault --version 0.1.0
NuGet\Install-Package EasyVault -Version 0.1.0
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="EasyVault" Version="0.1.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="EasyVault" Version="0.1.0" />
<PackageReference Include="EasyVault" />
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 EasyVault --version 0.1.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: EasyVault, 0.1.0"
#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 EasyVault@0.1.0
#: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=EasyVault&version=0.1.0
#tool nuget:?package=EasyVault&version=0.1.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
EasyVault
A pragmatic secrets bag for developers who just want it to work.
EasyVault is a lightweight secrets storage service. No endless unseal steps, no enterprise overkill, no GitLab-variable mess. Just a simple REST API + SDK that lets you encrypt, store and fetch application secrets with minimal friction.
✨ Features
- 🚀 Zero setup pain – single container, Postgres or SQLite inside.
- 🔑 Client-side encryption – secrets are encrypted before hitting the DB; server never sees plaintext.
- 🌐 Access rules – restrict by IP ranges, User-Agent, or extra headers.
- 🛠 NuGet SDK – drop into .NET projects, async API, DI-friendly.
- 📦 Batteries included – migrations, health checks, simple ENV config.
- 🐒 No bullshit – no plugins, no manual unseals, no 50-page manuals.
🛠 Quick start
Docker Compose
services:
easyvault:
image: bvdcode/easyvault:latest
volumes:
- ev_data:/data
Bring it up:
docker compose up -d
🔑 Using the API
Add a secret
POST /api/v1/vault/my-key
Content-Type: application/json
{
"secrets": {
"DB_PASSWORD": "supersecret",
"API_TOKEN": "abcdef123"
}
}
Fetch secrets
GET /api/v1/vault/secrets/my-key
Response:
{
"DB_PASSWORD": "supersecret",
"API_TOKEN": "abcdef123"
}
Access is checked against your IP / UA / headers config.
📦 SDK for .NET
Install via NuGet:
dotnet add package EasyVault.SDK
Usage:
var client = new EasyVaultClient("https://vault.mycompany.dev", "my-key");
var secrets = await client.GetSecretsAsync();
Console.WriteLine(secrets["DB_PASSWORD"]);
⚡ Roadmap
- Optional PSK request signing (HMAC)
- Audit logs (without secrets)
- Admin UI for quick edits
- Helm chart
📜 License
MIT.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. 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. |
.NET Core | netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.1 is compatible. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
.NETStandard 2.1
- Microsoft.Extensions.Configuration (>= 9.0.8)
- System.Configuration.ConfigurationManager (>= 9.0.8)
- System.Text.Json (>= 9.0.8)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last Updated |
---|---|---|
0.1.0 | 178 | 8/26/2025 |