Call us Today +1 630 534 0220
Topics covered in this article are…

  1. Introduction to Azure Key Vault
  2. Creating a .NET Core Web API Project
  3. Setup keys in Azure Portal
  4. Configuring Azure Key Vault Secrets Integration

Introduction to Azure Key Vault:

What is Azure Key Vault?

Azure Key Vault is a cloud service provided by Microsoft Azure that helps you securely manage keys, secrets, certificates, and other sensitive information used by your applications. It acts as a centralized repository for managing cryptographic assets and secrets in a secure and scalable manner.

Key Concepts

  1. Keys: Azure Key Vault allows you to create and manage cryptographic keys used for encryption, decryption, and signing. These keys can be used to secure data at rest and in transit.
  2. Secrets: Secrets are sensitive values like connection strings, passwords, API keys, and other configuration details. Azure Key Vault provides a secure location to store and manage these secrets separately from your application code.
  3. Certificates: You can upload and manage X.509 certificates in Azure Key Vault, making it easier to secure communication between components of your applications.

Why Use Azure Key Vault?

  1. Centralized Management: Azure Key Vault provides a single place to securely manage all your cryptographic assets and secrets, reducing the risk of exposure.
  2. Security: Key Vault offers advanced security features like hardware security modules (HSMs) and strong access controls, ensuring that your sensitive information is well protected.
  3. Ease of Use: Integrating Azure Key Vault with your applications is straightforward. You can access secrets and keys programmatically or integrate them into your application’s configuration.
  4. Compliance: Azure Key Vault helps you meet regulatory and compliance requirements by providing auditable access and usage logs.

Creating a .NET Core Web API Project:

Setting up .NET Core 7 Web API Project

Please follow step for creating Web API Project:
  1. Open Visual Studio.
  2. Click on “Create a new project.”
  3. In the “Create a new project” window:
    • Search for “ASP.NET Core Web API.”
    • Select the “ASP.NET Core Web API” template.
    • Choose a location and provide a name for your project.
    • Click “Create.”
Note: Please follow this link to learn how to create a new project:

https://learn.microsoft.com/en-us/aspnet/core/tutorials/first-web-api?view=aspnetcore-7.0&tabs=visual-studio

Setup Keys In Azure Portal:

Firstly, setting up Azure Key Vault involves several steps, which can be outlined as follows. Azure Key Vault is a service that enables the secure management of keys, secrets, and certificates used by cloud applications and services.

Create an Azure Key Vault:

  • Step 1: Start by going to the Azure portal and logging in with your credentials.

image-1692267861797.png
  • Step 2: Once logged in, navigate to the “All Services” section in the portal’s sidebar. search “Key Vaults” in the search bar.
image-1692270024087.png

Click on “All Services”.

image-1692270046895.png

Now, navigate to the “All Services” section. Within this section, search and select “Key Vault.”

image-1692270080108.png

  • Step 3: Proceed to acquire a subscription for Azure Key Vaults. (You can proceed with Azure free trial)

image-1692622288503.png

Step 4: Click on the “+” sign to initiate the creation of a new Key Vault.

image-1692270125607.png

Step 5: In the creation process, select a subscription, specify a resource group, enter a name for the Key Vault, choose a region, and set the pricing tier. Afterward, scroll down the page.

image-1692270174389.png

Step 6: In the recovery options, specify the number of days for retaining deleted vaults. Then, proceed by clicking on the “Next” button.

image-1692270203871.png

Step 7: After carefully reviewing all the provided details and ensuring they meet your requirements, proceed by clicking the “Create” button to complete the Key Vault creation process

image-1692270486173.png

Go to the “Overview” section and click on “Go to resource.”

image-1692270528933.png

In this section, You can see Your Azure key vault URL and Directory ID.

Note: Directory ID is also called Tenant ID.

image-1693808992777.png

Add Keys In Key Vaults:

  • Step 1: Within the previously created KeyVault, navigate to the “Keys” menu located in the sidebar..

  • Step 2: Next, click on the “+” sign, labeled “Generate/Import,” to initiate the process of adding new Keys.

  • Step 3: In the “Create a Key” section, Provide the following information:
  1. Name: Provide a unique name for the key.
  2. Key Type: Choose a key type (RSA or EC) and specify the key size or curve.
  3. Set activation date: Set the key’s activation date
  4. Set expiration date: Set the key’s expiration dateand other relevant settings as needed
  5. Click the “Create” button to create the key.

Now, You can see the message “The key MyTestKey has been successfully created” And your Key.

Register an App:

  • Step 1: Start by searching for “App registration” in the search bar.

image-1692598529062.png

Select the “+” symbol, labeled “New registration” to create a new registration.

image-1692598550835.png

  • Step 2: To complete the application registration process, provide the necessary additional information. After providing the details, click on the “Register” button to finalize the registration.

image-1692598906158.png

After Click on the Register button you will navigate to the below page.

image-1692598916423.png

Retrieve Client ID, Client Secret, and Tenant ID:

  • Step 1: Navigate to “Certificates and Secrets” in the sidebar and click on it.

image-1692770332126.png

In the Above picture Application (client) ID is your “AzureClientID” and Directory(tenant) ID is your “AzureTenantID“.
  • Step 2: Next, select the “+” symbol, labeled “New client secret” to add a client secret.

image-1692617809883.png

  • Step 3: On the “Add a Client Secret” page, provide a description (such as Secret name, etc.), choose an expiration duration from the dropdown menu, and then click the “Add” button to include the client secret.

image-1692617847296.png

After Click on the Add button you will navigate to the below page.

image-1692769681603.png

In Above Value is your “AzureClientSecret
Note: Be sure to copy and save the client secret value, as it won’t be visible after you close this tab

Troubleshoot:

Note: If you getting the Above warning while creating a Keys then follow the below step

  • Step 1: Navigate to the “Access Control (IAM)” section in the sidebar of the key vault.

image-1693920616857.png

  • Step 2: Then, select the “+” symbol labeled as “add” and proceed to “add role assignment.”

image-1692703694806.png

  • Step 3: Choose “Key Vault Administrator” and then click on “Members.”

image-1692703738741.png

  • Step 4: Select the desired members by clicking on “Select the members” and searching for them.
image-1692703769549.png

After Clicking on the Select member button you will see the member list like the below page.
image-1692703787144.png

  • Step 5: After selecting the members, click on the “Review + Assign” button to add the role.

image-1692703814404.png
  • If you encounter the given exception:

    “Caller is not authorized to perform action on resource.
    If role assignments, deny assignments or role definitions were changed recently, please observe propagation time.

    • Here are the steps to address this issue:

      To resolve this exception, you can grant the necessary permissions to your Key Vault. There are two approaches to achieve this:
      • Access Policies: Open your Key Vault and navigate to the “Access policies” section. Add the required permissions for the specified action to the caller (YourAPP). Ensure that the specified Assignment is created correctly.
image-1692868152946.png

  • Access Control (IAM): Alternatively, go to the “Access control (IAM)” section in your Azure Key Vault. Add the necessary role assignment to the caller’s identity (YourAPP) for the specific action mentioned . Confirm that the Assignment is properly configured.

image-1692868422044.png

You can see the “Add Role Assignment” section.

image-1692703738741.png

In this Add Role Assignment section you can select Key Vault Administrator and click on Member button.

image-1692868710773.png

After Clicking on the Select member button you will see the member list like the below page.

image-1692868740404.png

In the above, search for your app by its name, and once located, select it

image-1692869014550.png

Configuring Azure Key Vault-Key Integration:

Our project structure look like this:

Installing the NuGet package

Need to add the Azure.Identity and Azure.Security.KeyVault.Keys NuGet package to your web API project.

Code Implementation:

Configure appsettings.Json: Set some environmental variables in Azure_Demo/appsettings.json file.

{
    "AzureKeyVault": {
        "AzureKeyVaultURL": "",
        "AzureClientId": "",
        "AzureClientSecret": "",
        "AzureClientTenantId": "",
        "KeyName": ""
    }
}
Add the following values with your actual Azure Key Vault and Azure AD application details:
  • AzureKeyVaultURL: Your Azure key vault URL
  • AzureClientTenantId: Your Azure AD tenant ID.
  • AzureClientId: Your Azure AD client ID.
  • AzureClientSecret: Your Azure AD client secret.
  • KeyName: Your key name from the Azure portal.

Configure Key Vault Certificates Integration: In your Azure_Demo/Program.cs file, you need to configure the Azure Key Vault Configuration provider.
using Azure.Identity;
using Azure.Security.KeyVault.Keys;
using Azure.Security.KeyVault.Keys.Cryptography;
using System.Text;

class Program
{
    static async Task Main(string[] args)
    {
        IConfigurationBuilder builder = new ConfigurationBuilder()
            .SetBasePath(Directory.GetCurrentDirectory())
            .AddJsonFile("appsettings.json");

        IConfiguration configuration = builder.Build();

        // Read the Azure Key Vault settings from appsettings.json
        string keyVaultUrl = configuration["AzureKeyVault:AzureKeyVaultURL"];
        string tenantId = configuration["AzureKeyVault:AzureClientTenantId"];
        string clientId = configuration["AzureKeyVault:AzureClientId"];
        string clientSecret = configuration["AzureKeyVault:AzureClientSecret"];

        // Key name you want to access
        string keyName = configuration["AzureKeyVault:KeyName"];

        // Create a KeyClient instance using client secret authentication
        var clientSecretCredential = new ClientSecretCredential(tenantId, clientId, clientSecret);
        var keyClient = new KeyClient(new Uri(keyVaultUrl), clientSecretCredential);

        // Retrieve the key from Key Vault
        KeyVaultKey key = await keyClient.GetKeyAsync(keyName);

        // Create a CryptographyClient for encryption and decryption
        var cryptoClient = new CryptographyClient(key.Id, new ClientSecretCredential(tenantId, clientId, clientSecret));

        // Message to encrypt and decrypt
        string messageToEncrypt = "Hello, Azure Key Vault!";

        // Convert the message to bytes
        byte[] messageBytes = Encoding.UTF8.GetBytes(messageToEncrypt);

        // Encrypt the message using the key
        EncryptResult encryptResult = await cryptoClient.EncryptAsync(EncryptionAlgorithm.RsaOaep, messageBytes);

        // Decrypt the encrypted message using the key
        DecryptResult decryptResult = await cryptoClient.DecryptAsync(EncryptionAlgorithm.RsaOaep, encryptResult.Ciphertext);

        // Convert the decrypted bytes back to a string
        string decryptedMessage = Encoding.UTF8.GetString(decryptResult.Plaintext);

        // Display the results
        Console.WriteLine("Original message: " + messageToEncrypt);
        Console.WriteLine("Encrypted message: " + Convert.ToBase64String(encryptResult.Ciphertext));
        Console.WriteLine("Decrypted message: " + decryptedMessage);

        Console.ReadLine();
    }
}
This code demonstrates how to securely store cryptographic keys in Azure Key Vault and use them for encryption and decryption operations, ensuring the confidentiality and integrity of your data. It uses Azure AD for authentication and authorization to access the Key Vault.
  • Run Project: After Running the project, You can clearly see the result:

Do You Need more information?

For any further information / query regarding Technology, please email us at info@varianceinfotech.com
OR call us on +1 630 861 8283, Alternately you can request for information by filling up Contact Us

facebooktwittergoogle_plusredditpinterestlinkedinmailby feather

Leave a Reply

Your email address will not be published. Required fields are marked *

*