Sign up for the ITPro Today newsletter
Stay on top of the IT universe with commentary, news analysis, how-to's, and tips delivered to your inbox daily.
Understand how to check if a key is software or hardware protected in Azure Key Vault using PowerShell.
July 9, 2017
Q. How can I check if my key in Azure Key Vault is software or HSM protected?
A. To check if a key is software or HSM protected use the following PowerShell:
PS C:> (Get-AzureKeyVaultKey –VaultName 'SavillVault' -Name JohnKeySoft).key.KtyRSAPS C:> (Get-AzureKeyVaultKey –VaultName 'SavillVault' -Name JohnKeyHSM).key.KtyRSA-HSM
You May Also Like