Edit

About keys

Azure Key Vault provides two types of resources to store and manage cryptographic keys. Vaults support software-protected and HSM-protected (Hardware Security Module) keys. Managed HSMs only support HSM-protected keys.

Resource type Key protection methods Supported key types Data-plane endpoint base URL
Vaults Software-protected and HSM-protected (HSM key types in Premium SKU) RSA, EC, and (Premium only) oct-HSM (symmetric/AES, preview) https://<vault-name>.vault.azure.net
Managed HSMs HSM-protected RSA-HSM, EC-HSM, and oct-HSM (symmetric/AES) https://<hsm-name>.managedhsm.azure.net
  • Vaults - Vaults provide a low-cost, easy to deploy, multi-tenant, zone-resilient (where available), highly available key management solution suitable for most common cloud application scenarios.
  • Managed HSMs - Managed HSM provides single-tenant, highly available HSMs to store and manage your cryptographic keys. Most suitable for applications and usage scenarios that handle high value keys. Also helps to meet most stringent security, compliance, and regulatory requirements.

Note

This article describes keys in Key Vault (vaults). For details specific to Managed HSM, see About keys in Managed HSM and Key types, algorithms, and operations (Managed HSM).

Note

Vaults also let you store and manage several types of objects, such as secrets, certificates, and storage account keys, in addition to cryptographic keys.

Cryptographic keys in Key Vault are JSON Web Key (JWK) objects. Azure Key Vault uses the following JavaScript Object Notation (JSON) and JavaScript Object Signing and Encryption (JOSE) specifications:

Azure Key Vault also extends the base JWK/JWA specifications to enable key types unique to its implementation.

Vaults protect stored keys with a FIPS 140 validated HSM. Two HSM platforms are available: HSM Platform 1 protects key versions with FIPS 140-2 Level 2, and HSM Platform 2 protects key versions with FIPS 140-3 Level 3 HSMs. HSM Platform 2 now protects all new keys and key versions. To determine which HSM platform protects a key version, get its hsmPlatform attribute.

For more information about geographical boundaries, see the Microsoft Azure Trust Center.

Key types and protection methods

Key Vault Premium and Standard support RSA and EC keys.

HSM-protected keys (Key Vault Premium)

Key type Sizes / curves
EC-HSM: Elliptic Curve key P-256, P-384, P-521, secp256k1/P-256K
RSA-HSM: RSA key 2048-bit, 3072-bit, 4096-bit
oct-HSM: Symmetric (AES) key (preview) 128-bit, 192-bit, 256-bit

Symmetric keys (oct-HSM) (preview)

Important

Symmetric (oct-HSM / AES) key support in Azure Key Vault Premium is currently in public preview. Preview features are provided as-is, with no service-level agreement, and aren't recommended for production workloads. For more information, see Supplemental Terms of Use for Microsoft Azure Previews.

Azure Key Vault Premium supports HSM-protected symmetric keys through the oct-HSM key type. Symmetric keys in vaults are HSM-backed only and require a Premium vault.

  • Supported sizes: 128-bit, 192-bit, and 256-bit.
  • Supported operations: encrypt, decrypt, wrapKey, and unwrapKey.
  • Supported algorithms: AES-KW, AES-GCM, and AES-CBC for encryption and wrapping; HS256, HS384, and HS512 for HMAC sign/verify. For algorithm details, see Key types, algorithms, and operations.

Example: Create an AES key

az keyvault key create \
    --vault-name <vault-name> \
    --name sample-aes-key \
    --kty oct-HSM \
    --size 256 \
    --ops encrypt decrypt wrapKey unwrapKey

Example: Encrypt data

az keyvault key encrypt \
    --vault-name <vault-name> \
    --name sample-aes-key \
    --algorithm A256GCM \
    --value aGVsbG8gd29ybGQ=

Note

For AES-GCM operations, save the iv, result, and tag values from the encryption response. All three values are required to decrypt successfully. To capture them in a single call, use the CLI --query option: --query "{iv:iv, result:result, tag:tag}".

Software-protected keys (Key Vault Standard and Premium)

Key type Sizes / curves
RSA: Software-protected RSA key 2048-bit, 3072-bit, 4096-bit
EC: Software-protected Elliptic Curve key P-256, P-384, P-521, secp256k1/P-256K

For Managed HSM support, see About keys in Managed HSM.

Compliance

Key type and destination Compliance
Software-protected (HSM Platform 0) keys in vaults FIPS 140-2 Level 1
HSM Platform 1 protected keys in vaults (Premium SKU) FIPS 140-2 Level 2
HSM Platform 2 protected keys in vaults (Premium SKU) FIPS 140-3 Level 3

Quantum-resistant, quantum-safe, or post-quantum cryptography

"Quantum-resistant", "quantum-safe", and "post-quantum" cryptography are all terms used to describe cryptographic algorithms believed to be resistant to cryptanalytic attacks from both classical and quantum computers. 256-bit symmetric (oct-HSM / AES) keys used with the AES algorithms offered by Azure Key Vault Premium (preview) and Managed HSM are quantum-resistant. For more information, see The Commercial National Security Algorithm Suite 2.0 and Quantum Computing FAQ.

See Key types, algorithms, and operations for details about each key type, algorithms, operations, attributes, and tags.

Usage scenarios

When to use Examples
Azure server-side data encryption for integrated resource providers with customer-managed keys Server-side encryption using customer-managed keys in Azure Key Vault
Client-side data encryption Client-Side Encryption with Azure Key Vault
Keyless TLS Use the Key Vault client libraries

Next steps