AzureSecureAccess 1.0.6
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
The owner has unlisted this package.
This could mean that the package is deprecated, has security vulnerabilities or shouldn't be used anymore.
dotnet add package AzureSecureAccess --version 1.0.6
NuGet\Install-Package AzureSecureAccess -Version 1.0.6
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="AzureSecureAccess" Version="1.0.6" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="AzureSecureAccess" Version="1.0.6" />
<PackageReference Include="AzureSecureAccess" />
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 AzureSecureAccess --version 1.0.6
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: AzureSecureAccess, 1.0.6"
#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 AzureSecureAccess@1.0.6
#: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=AzureSecureAccess&version=1.0.6
#tool nuget:?package=AzureSecureAccess&version=1.0.6
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Azure Secure Access
Azure Secure Access is a C# project that provides secure access to Azure Key Vault secrets and encryption using Azure Key Vault. It includes providers for retrieving secrets, managing credentials, and handling encryption.
Features
- Retrieve secrets from Azure Key Vault
- Manage Azure Key Vault credentials using client secrets or certificates
- Register Azure Key Vault provider for SQL Server Always Encrypted
- Load X509 certificates from file or certificate store
Getting Started
Prerequisites
- .NET 9.0 or later
- Azure Key Vault
- Azure Active Directory application with appropriate permissions
Usage
Retrieving Secrets
Use the KeyVaultSecretProvider to retrieve secrets from Azure Key Vault:
var credentialProvider = new ClientSecretCredentialProvider(tenantId, clientId, clientSecret);
var secretProvider = new KeyVaultSecretProvider(keyVaultName, credentialProvider.GetCredential());
string secretValue = await secretProvider.GetSecretValueAsync("MySecret");
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 is compatible. 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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net8.0
- Azure.Core (>= 1.44.1)
- Azure.Identity (>= 1.13.1)
- Azure.Security.KeyVault.Certificates (>= 4.7.0)
- Azure.Security.KeyVault.Secrets (>= 4.7.0)
- Microsoft.Data.SqlClient.AlwaysEncrypted.AzureKeyVaultProvider (>= 5.1.0)
- Microsoft.Extensions.Caching.Memory (>= 9.0.0)
- System.Formats.Asn1 (>= 9.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.