diff options
| author | Alberto Garcia <berto@igalia.com> | 2018-10-05 16:52:02 +0200 |
|---|---|---|
| committer | Daniel P. Berrangé <berrange@redhat.com> | 2018-12-12 11:16:49 +0000 |
| commit | a8b826d47adc5a62cf325482b6da1ba06d143df7 (patch) | |
| tree | 4142993b3cec15411b50aa252e32c674b9560109 | |
| parent | bb9bf94b3e8926553290bc9a7cb84315af422086 (diff) | |
| download | focaccia-qemu-a8b826d47adc5a62cf325482b6da1ba06d143df7.tar.gz focaccia-qemu-a8b826d47adc5a62cf325482b6da1ba06d143df7.zip | |
crypto: Fix defaults in QCryptoBlockCreateOptionsLUKS
The values specified in the documentation don't match the actual defaults set in qcrypto_block_luks_create(). Signed-off-by: Alberto Garcia <berto@igalia.com> Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
| -rw-r--r-- | qapi/crypto.json | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/qapi/crypto.json b/qapi/crypto.json index a51b434412..b2a4cff683 100644 --- a/qapi/crypto.json +++ b/qapi/crypto.json @@ -181,11 +181,11 @@ # The options that apply to LUKS encryption format initialization # # @cipher-alg: the cipher algorithm for data encryption -# Currently defaults to 'aes'. +# Currently defaults to 'aes-256'. # @cipher-mode: the cipher mode for data encryption -# Currently defaults to 'cbc' +# Currently defaults to 'xts' # @ivgen-alg: the initialization vector generator -# Currently defaults to 'essiv' +# Currently defaults to 'plain64' # @ivgen-hash-alg: the initialization vector generator hash # Currently defaults to 'sha256' # @hash-alg: the master key hash algorithm |