Fix: Help text for encrypted volume type has incorrect description

Volume type encryption help text states that "The Key Size is the
size of the encryption key, in bits (e.g., 128, 256).
If the field is left empty, the provider default will be used."
This is not really correct, because 128 bit keys do not actually
work with LUKS as used by Cinder volumes.
It should only recommend 256 bit keys.
This patch fixes the issue.

Change-Id: I038918e4beef2ea4d346127713855e0421e8b721
Closes-Bug: #1780457
This commit is contained in:
manchandavishal 2018-11-22 09:49:33 +00:00
parent 11fbb9dbd1
commit 9d5a266631
2 changed files with 2 additions and 2 deletions

View File

@ -16,6 +16,6 @@
{% blocktrans %}The <strong>Cipher</strong> is the encryption algorithm/mode to use (e.g., aes-xts-plain64). If the field is left empty, the provider default will be used.{% endblocktrans %}
</p>
<p>
{% blocktrans %}The <strong>Key Size</strong> is the size of the encryption key, in bits (e.g., 128, 256). If the field is left empty, the provider default will be used.{% endblocktrans %}
{% blocktrans %}The <strong>Key Size</strong> is the size of the encryption key, in bits (e.g., 256). If the field is left empty, the provider default will be used.{% endblocktrans %}
</p>
{% endblock %}

View File

@ -16,6 +16,6 @@
{% blocktrans %}The <strong>Cipher</strong> is the encryption algorithm/mode to use (e.g., aes-xts-plain64). If the field is left empty, the provider default will be used.{% endblocktrans %}
</p>
<p>
{% blocktrans %}The <strong>Key Size</strong> is the size of the encryption key, in bits (e.g., 128, 256). If the field is left empty, the provider default will be used.{% endblocktrans %}
{% blocktrans %}The <strong>Key Size</strong> is the size of the encryption key, in bits (e.g., 256). If the field is left empty, the provider default will be used.{% endblocktrans %}
</p>
{% endblock %}