You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/key-vault/key-vault-whatis.md
+1-3Lines changed: 1 addition & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,9 +18,6 @@ ms.author: barclayn
18
18
19
19
---
20
20
# What is Azure Key Vault?
21
-
Azure Key Vault is available in most regions. For more information, see the [Key Vault pricing page](https://azure.microsoft.com/pricing/details/key-vault/).
22
-
23
-
## Introduction
24
21
Azure Key Vault helps safeguard cryptographic keys and secrets used by cloud applications and services. By using Key Vault, you can encrypt keys and secrets (such as authentication keys, storage account keys, data encryption keys, .PFX files, and passwords) using keys protected by hardware security modules (HSMs). For added assurance, you can import or generate keys in HSMs. If you choose to do this, Microsoft processes your keys in FIPS 140-2 Level 2 validated HSMs (hardware and firmware).
25
22
26
23
Key Vault streamlines the key management process and enables you to maintain control of keys that access and encrypt your data. Developers can create keys for development and testing in minutes, and then seamlessly migrate them to production keys. Security administrators can grant (and revoke) permission to keys, as needed.
@@ -56,3 +53,4 @@ For more information about using keys and secrets with Azure Key Vault, see [Abo
Azure Key Vault is available in most regions. For more information, see the [Key Vault pricing page](https://azure.microsoft.com/pricing/details/key-vault/).
Copy file name to clipboardExpand all lines: articles/key-vault/tutorial-web-application-keyvault.md
+26-29Lines changed: 26 additions & 29 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -124,8 +124,8 @@ There are two NuGet packages that your web application needs to have installed.
124
124
3. Select the check box next to the search box. **Include prerelease**
125
125
4. Search for the two NuGet packages listed below and accept for them to be added to your solution:
126
126
127
-
*[Microsoft.Azure.Services.AppAuthentication (preview)](https://www.nuget.org/packages/Microsoft.Azure.Services.AppAuthentication) - makes it easy to fetch access tokens for Service-to-Azure-Service authentication scenarios.
128
-
*[Microsoft.Azure.KeyVault](https://www.nuget.org/packages/Microsoft.Azure.KeyVault/2.4.0-preview) - contains methods for interacting with Key Vault.
127
+
*[Microsoft.Azure.Services.AppAuthentication](https://www.nuget.org/packages/Microsoft.Azure.Services.AppAuthentication) - makes it easy to fetch access tokens for Service-to-Azure-Service authentication scenarios.
128
+
*[Microsoft.Azure.KeyVault](https://www.nuget.org/packages/Microsoft.Azure.KeyVault) - contains methods for interacting with Key Vault.
129
129
130
130
5. Use the Solution Explorer to open `Program.cs` and replace the contents of the Program.cs file with the following code. Substitute ```<YourKeyVaultName>``` with the name of your key vault:
131
131
@@ -138,37 +138,33 @@ There are two NuGet packages that your web application needs to have installed.
@@ -202,7 +198,8 @@ There are two NuGet packages that your web application needs to have installed.
202
198
7. Fromthemainmenu, choose**Debug**>**StartwithoutDebugging**. Whenthebrowserappears, navigatetothe**About**page. Thevaluefor the AppSecret is displayed.
203
199
204
200
>[!IMPORTANT]
205
-
> If you get a HTTP Error 502.5 - Process Failure message verify the name of the Key Vault specified in `Program.cs`
201
+
> If you get a HTTP Error 502.5 - Process Failure message
202
+
> > then verify the name of the Key Vault specified in `Program.cs`
0 commit comments