2019-10-28 22:04:27 +00:00
|
|
|
|
---
|
2020-01-18 00:18:09 +00:00
|
|
|
|
layout: docs
|
|
|
|
|
page_title: Vault Enterprise Entropy Augmentation
|
2019-10-28 22:04:27 +00:00
|
|
|
|
description: |-
|
|
|
|
|
Vault Enterprise features a mechanism to sample entropy from external
|
|
|
|
|
cryptographic modules.
|
|
|
|
|
---
|
|
|
|
|
|
2023-07-18 21:07:55 +00:00
|
|
|
|
# Entropy augmentation
|
2019-10-28 22:04:27 +00:00
|
|
|
|
|
2023-07-27 17:42:39 +00:00
|
|
|
|
@include 'alerts/enterprise-only.mdx'
|
2020-01-25 00:18:22 +00:00
|
|
|
|
|
2023-07-27 17:42:39 +00:00
|
|
|
|
<Warning>
|
|
|
|
|
Entropy augmentation <b>is not</b> available with "FIPS 140-2 Inside" variants of
|
|
|
|
|
Vault.
|
|
|
|
|
</Warning>
|
2022-06-07 15:23:26 +00:00
|
|
|
|
|
2019-11-18 23:02:12 +00:00
|
|
|
|
Vault Enterprise features a mechanism to sample entropy (or randomness for
|
2023-01-26 00:12:15 +00:00
|
|
|
|
cryptographic operations) from external cryptographic modules via the [seals](/vault/docs/configuration/seal)
|
2019-10-28 22:04:27 +00:00
|
|
|
|
interface. While the system entropy used by Vault is more than capable of
|
|
|
|
|
operating in most threat models, there are some situations where additional
|
|
|
|
|
entropy from hardware-based random number generators is desirable.
|
|
|
|
|
|
|
|
|
|
To use this feature, you must have an active or trial license for Vault
|
2020-04-26 21:24:48 +00:00
|
|
|
|
Enterprise. To start a trial, contact [HashiCorp sales](mailto:sales@hashicorp.com).
|
2019-10-28 22:04:27 +00:00
|
|
|
|
|
2023-07-18 21:07:55 +00:00
|
|
|
|
# Critical security parameters (CSPs)
|
2019-10-28 22:04:27 +00:00
|
|
|
|
|
|
|
|
|
Entropy augmentation allows Vault Enterprise to supplement its system entropy with
|
|
|
|
|
entropy from an external cryptography module. Designed to operate in environments
|
|
|
|
|
where alignment with cryptographic regulations like [NIST SP800-90B](https://csrc.nist.gov/publications/detail/sp/800-90b/final)
|
|
|
|
|
is required or when augmented entropy from external sources such as hardware true
|
|
|
|
|
random number generators (TRNGs) or [quantum computing TRNGs](https://www.hashicorp.com/blog/quantum-security-and-cryptography-in-hashicorp-vault/)
|
|
|
|
|
are desirable, augmented entropy replaces system entropy when performing random
|
2019-11-18 23:02:12 +00:00
|
|
|
|
number operations on critical security parameters (CSPs).
|
2019-10-28 22:04:27 +00:00
|
|
|
|
|
|
|
|
|
These CSPs have been selected from our previous work in [evaluating Vault for conformance with
|
|
|
|
|
FIPS 140-2 guidelines for key storage and key transport](https://www.datocms-assets.com/2885/1510600487-vault_compliance_letter_fips_140-2.pdf)
|
2019-11-18 23:02:12 +00:00
|
|
|
|
and include the following:
|
2019-10-28 22:04:27 +00:00
|
|
|
|
|
2022-03-17 05:01:38 +00:00
|
|
|
|
- Vault’s root key
|
2019-10-28 22:04:27 +00:00
|
|
|
|
- Keyring encryption keys
|
|
|
|
|
- Auto Unseal recovery keys
|
|
|
|
|
- TLS private keys for inter-node and inter cluster communication (HA leader, raft, and replication)
|
|
|
|
|
- Enterprise MFA TOTP token keys
|
|
|
|
|
- JWT token wrapping keys
|
|
|
|
|
- Root tokens
|
|
|
|
|
- DR operation tokens
|
2023-01-26 00:12:15 +00:00
|
|
|
|
- [Transit](/vault/docs/secrets/transit) backend key generation and `/random` endpoint (`/random` only on Vault 1.11+)
|
|
|
|
|
- [PKI](/vault/docs/secrets/pki) issuer key generation, but not for leaf certificate private keys
|
|
|
|
|
- [`/sys/tools/random`](/vault/api-docs/system/tools#generate-random-bytes) endpoint (Vault 1.11+)
|
|
|
|
|
- [SSH](/vault/docs/secrets/ssh) CA key generation, but not for key pair generation
|
|
|
|
|
- [KMIP](/vault/docs/secrets/kmip) uses EA for its TLS CA, server, and client
|
2022-08-01 14:32:47 +00:00
|
|
|
|
certificates.
|
2019-10-28 22:04:27 +00:00
|
|
|
|
|
|
|
|
|
## Enabling/Disabling
|
|
|
|
|
|
|
|
|
|
Entropy augmentation is disabled by default. To enable entropy augmentation Vault's
|
2023-01-26 00:12:15 +00:00
|
|
|
|
[configuration file][configuration] must include a properly configured [entropy and seal stanza](/vault/docs/configuration/entropy-augmentation)
|
2020-01-21 23:05:53 +00:00
|
|
|
|
for a supported seal type.
|
2019-10-28 22:04:27 +00:00
|
|
|
|
|
2023-01-26 00:12:15 +00:00
|
|
|
|
[configuration]: /vault/docs/configuration
|
2019-11-18 23:02:12 +00:00
|
|
|
|
|
2022-04-04 17:04:50 +00:00
|
|
|
|
## Tutorial
|
2019-11-18 23:02:12 +00:00
|
|
|
|
|
2023-02-07 04:34:51 +00:00
|
|
|
|
Refer to the [HSM Integration - Entropy Augmentation](/vault/tutorials/enterprise/hsm-entropy) tutorial
|
2022-04-04 17:04:50 +00:00
|
|
|
|
to learn how to use the Entropy Augmentation function to leverage an external Hardware Security Module to augment system entropy.
|