thinkpanther
thinkpanther

Reputation: 41

Azure Key Vault Secrets Query

I had a couple of questions around Azure Key Vault where I needed some technical assistance: The link https://learn.microsoft.com/en-us/azure/key-vault/general/overview states that "Secrets and keys are safeguarded by Azure, using industry-standard algorithms, key lengths, and hardware security modules (HSMs). The HSMs used are Federal Information Processing Standards (FIPS) 140-2 Level 2 validated".

I wanted to confirm whether this was true for secrets as much as they were true for keys. The reason for this is secrets have to leave the HSM and be transferred to the end application which needs to use them.

The second was around the size of the secrets itself. I have seen conflicting information on secrets size which state its either 10 KB and 25 KB max size per secret. What is the best way to validate this?

Any help that you can provide would be much appreciated.

Thanks!

Upvotes: 0

Views: 302

Answers (1)

Jack
Jack

Reputation: 61

Secrets itself are protected by HSM by being encrypted by HSM keys (Encryption at Rest) - I hope this helps.

25k is max size per secrets.

Upvotes: 1

Related Questions