4

I want to store my RSA key in Azure vault, is this possible?

I did not find any methods to do this.

Please find the Microsoft link for this:

https://learn.microsoft.com/en-us/javascript/api/@azure/keyvault-keys/?view=azure-node-latest

blackgreen
  • 34,072
  • 23
  • 111
  • 129
vijay
  • 701
  • 2
  • 12
  • 26

1 Answers1

2

Azure KeyVault support storing RSA keys

https://learn.microsoft.com/en-us/azure///key-vault/keys/about-keys

https://learn.microsoft.com/en-us/azure/key-vault/keys/about-keys-details

Azure SDK JavaScript

https://learn.microsoft.com/en-us/javascript/api/@azure/keyvault-keys/keyvaultkey?view=azure-node-latest#keyType

There are few ways how you can import or create RSA key in Azure Vault:

Andriy Bilous
  • 2,337
  • 1
  • 5
  • 16
  • This is new RSA key create option in azure vault, but in my case already have RSA key and just want to store that key alone in Azure Vault. – vijay Jan 22 '21 at 11:45
  • Did you try Import options? https://learn.microsoft.com/en-us/javascript/api/@azure/keyvault-keys/importkeyoptions?view=azure-node-latest https://learn.microsoft.com/en-us/javascript/api/@azure/keyvault-keys/jsonwebkey?view=azure-node-latest – Andriy Bilous Jan 22 '21 at 12:51