nova/nova/tests/keymgr
Joel Coffman cf5645fdee Add key manager implementation with static key
Per feedback received on other patch sets, an example key manager
driver is required to support ephemeral storage encryption and
Cinder volume encryption. The ConfKeyManager class reads its key
from the project's configuration file and provides this key for
*all* requests. As such, this key manager is insecure but allows
the aforementioned encryption features to be used without further
integration effort.

To clarify the above statements, the configuration-based key
manager uses a single, fixed key. When used to encrypt data (e.g.,
by the Cinder volume encryption feature), the encryption provides
limited protection for the confidentiality of data. For example,
data cannot be read from a lost or stolen disk, and a volume's
contents cannot be reconstructed if an attacker intercepts the iSCSI
traffic between the compute and storage host. If the key is ever
compromised, then any data encrypted with the key can be decrypted.

Implements blueprint encrypt-cinder-volumes
SecurityImpact

Change-Id: Ia6f4c69e699e68065c0f767e769cd0a6f5cc623b
2013-09-11 06:43:13 -04:00
..
__init__.py Create key manager interface 2013-07-17 16:44:42 -04:00
fake.py Synchronize the key manager interface with Cinder 2013-09-05 09:12:26 -04:00
mock_key_mgr.py Add key manager implementation with static key 2013-09-11 06:43:13 -04:00
single_key_mgr.py Add key manager implementation with static key 2013-09-11 06:43:13 -04:00
test_conf_key_mgr.py Add key manager implementation with static key 2013-09-11 06:43:13 -04:00
test_key.py Add key manager implementation with static key 2013-09-11 06:43:13 -04:00
test_key_mgr.py Create key manager interface 2013-07-17 16:44:42 -04:00
test_mock_key_mgr.py Synchronize the key manager interface with Cinder 2013-09-05 09:12:26 -04:00
test_not_implemented_key_mgr.py Synchronize the key manager interface with Cinder 2013-09-05 09:12:26 -04:00
test_single_key_mgr.py Add key manager implementation with static key 2013-09-11 06:43:13 -04:00