VaultSharp 0.10.4003

There is a newer version of this package available.
See the version list below for details.
dotnet add package VaultSharp --version 0.10.4003
NuGet\Install-Package VaultSharp -Version 0.10.4003
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="VaultSharp" Version="0.10.4003" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add VaultSharp --version 0.10.4003
#r "nuget: VaultSharp, 0.10.4003"
#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.
// Install VaultSharp as a Cake Addin
#addin nuget:?package=VaultSharp&version=0.10.4003

// Install VaultSharp as a Cake Tool
#tool nuget:?package=VaultSharp&version=0.10.4003

VaultSharp

A cross-platform .NET Library for HashiCorp's Vault - A Secret Management System.

VaultSharp Latest Documentation: Inline Below and also at: http://rajanadar.github.io/VaultSharp/

What is VaultSharp?

  • VaultSharp is a .NET Standard 1.3 (and .NET 4.5) cross-platform C# Library that can be used in any .NET application to interact with Hashicorp's Vault.
  • The Vault system is a secret management system built as an Http Service by Hashicorp.

VaultSharp has been re-designed ground up, to give a structured user experience across the various auth methods, secrets engines & system apis. Also, the Intellisense on IVaultClient class should help. I have tried to add a lot of documentation.

Give me a quick snippet for use!

  • Add a Nuget reference to VaultSharp as follows Install-Package VaultSharp -Version <latest_version>
  • Instantiate a IVaultClient as follows:
// Initialize one of the several auth methods.
IAuthMethodInfo authMethod = new TokenAuthMethodInfo("MY_VAULT_TOKEN");

// Initialize settings. You can also set proxies, custom delegates etc. here.
var vaultClientSettings = new VaultClientSettings("https://MY_VAULT_SERVER:8200", authMethod);

IVaultClient vaultClient = new VaultClient(vaultClientSettings);

// Use client to read a key-value secret.
var kv2Secret = await vaultClient.V1.Secrets.KeyValue.V2.ReadSecretAsync("secret-name");

// Generate a dynamic Consul credential
var consulCreds = await vaultClient.V1.Secrets.Consul.GetCredentialsAsync(consulRole, consulMount);	
var consulToken = consulCredentials.Data.Token;

Gist of the features

  • VaultSharp 0.10.x supports
    • All the Auth Methods for Logging into Vault. (AppRole, AWS, Azure, GitHub, Google Cloud, JWT/OIDC, Kubernetes, LDAP, Okta, RADIUS, TLS, Tokens & UserPass)
    • All the secret engines to get dynamic credentials. (AD, AWS EC2 and IAM, Consul, Cubbyhole, Databases, Google Cloud, Key-Value, Nomad, PKI, RabbitMQ, SSH and TOTP)
    • Several system APIs including enterprise vault apis
  • You can also bring your own "Auth Method" by providing a custom delegate to fetch a token from anywhere.
  • VaultSharp has first class support for Consul engine.
  • KeyValue engine supports both v1 and v2 apis.
  • Abundant intellisense.
  • Provides hooks into http-clients to set custom proxy settings etc.

VaultSharp - Supported .NET Platforms

VaultSharp is built on .NET Standard 1.3 & .NET Framework 4.5. This makes it highly compatible and cross-platform.

The following platforms are supported due to that.

  • .NET Core 1.0 and above including .NET Core 2.0
  • .NET Framework 4.5 and above
  • Mono 4.6 and above
  • Xamarin.iOS 10.0 and above
  • Xamarin Mac 3.0 and above
  • Xamarin.Android 7.0 and above
  • UWP 10.0 and above

In Conclusion

Happy Coding folks!

Product 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. 
.NET Core netcoreapp1.0 was computed.  netcoreapp1.1 was computed.  netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard1.3 is compatible.  netstandard1.4 was computed.  netstandard1.5 was computed.  netstandard1.6 was computed.  netstandard2.0 was computed.  netstandard2.1 was computed. 
.NET Framework net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen30 was computed.  tizen40 was computed.  tizen60 was computed. 
Universal Windows Platform uap was computed.  uap10.0 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.

NuGet packages (74)

Showing the top 5 NuGet packages that depend on VaultSharp:

Package Downloads
FenixAlliance.APS.Core

Application Component for the Alliance Business Suite.

VaultSharp.Extensions.Configuration

Configuration extension that allows you to use Hashicorp Vault as a configuration backend. This library is built with .NET Standard 2.0, 2.1, .NET 6, .NET 7, .NET 8

Convey.Secrets.Vault

Convey.Secrets.Vault

Else.Convey.Secrets.Vault

Convey.Secrets.Vault

Else.Else.WebApi.Vault

Else.WebApi.Vault

GitHub repositories (7)

Showing the top 5 popular GitHub repositories that depend on VaultSharp:

Repository Stars
phongnguyend/Practical.CleanArchitecture
Full-stack .Net 8 Clean Architecture (Microservices, Modular Monolith, Monolith), Blazor, Angular 17, React 18, Vue 3, BFF with YARP, Domain-Driven Design, CQRS, SOLID, Asp.Net Core Identity Custom Storage, OpenID Connect, Entity Framework Core, Selenium, SignalR, Hosted Services, Health Checks, Rate Limiting, Cloud Services (Azure, AWS, Google)...
snatch-dev/Convey
A simple recipe for .NET Core microservices.
andrewlock/NetEscapades.Configuration
Additional configuration providers to use with ASP.NET Core
Raiffeisen-DGTL/ViennaNET
Framework for quickly creating enterprise microservices on .NET https://habr.com/ru/company/raiffeisenbank/blog/494830/
devmentors/DNC-DShop.Common
[Distributed .NET Core] Common library for DShop project.
Version Downloads Last updated
1.13.0.1 1,342,961 4/3/2023
1.13.0.1-beta1 2,106 4/1/2023
1.13.0 35,122 3/25/2023
1.12.2.1 504,387 1/24/2023
1.12.2 346,887 12/9/2022
1.8.12 12,549 12/9/2022
1.7.2.2 31,727 12/7/2022
1.7.2.1 5,445 12/7/2022
1.7.2 4,054 12/6/2022
1.7.1 1,061,767 7/28/2022
1.7.0.5 236,007 7/18/2022
1.7.0.4 1,815,328 11/26/2021
1.7.0.3 32,736 11/21/2021
1.7.0.2 5,180 11/20/2021
1.7.0.1 307,651 10/4/2021
1.7.0 357,633 8/14/2021
1.6.5.1 107,234 7/17/2021
1.6.5 41,897 6/27/2021
1.6.2.5 239,579 6/15/2021
1.6.2.4 44,592 6/13/2021
1.6.2.3 58,163 6/5/2021
1.6.2.2 55,606 5/23/2021
1.6.2.1 575,461 3/1/2021
1.6.2 98,115 2/22/2021
1.6.0.3 26,273 2/11/2021
1.6.0.2 421,220 1/4/2021
1.6.0.1 48,698 12/7/2020
1.6.0 153,487 11/26/2020
1.4.0.7 145,795 11/25/2020
1.4.0.6 10,888 11/20/2020
1.4.0.5 799,946 8/1/2020
1.4.0.4 282,969 6/25/2020
1.4.0.3 365,811 5/7/2020
1.4.0.2 2,798 5/7/2020
1.4.0.1 141,954 4/28/2020
1.4.0 30,451 4/25/2020
0.11.1003 151,493 4/23/2020
0.11.1002 2,439,159 4/21/2019
0.11.1001 2,849 4/20/2019
0.11.1000 387,325 4/15/2019
0.11.1-beta1 3,162 3/18/2019
0.11.0 678,166 9/1/2018
0.10.4003 4,503 8/22/2018
0.10.4002 3,170 8/16/2018
0.10.4001 3,384 8/10/2018
0.10.4000 15,707 7/31/2018
0.6.5-beta1 26,161 4/11/2017
0.6.4 486,380 1/18/2017
0.6.1 10,026 10/3/2016
0.4.1 6,587 1/21/2016
0.4.0 5,441 1/21/2016