Re: [Qemu-devel] [PATCH v8 13/20] qcow2: add support for LUKS encryption format

2017-06-19 Thread Daniel P. Berrange
On Wed, Jun 07, 2017 at 07:19:28PM +0200, Max Reitz wrote: > On 2017-06-01 19:27, Daniel P. Berrange wrote: > > This adds support for using LUKS as an encryption format > > with the qcow2 file, using the new encrypt.format parameter > > to request "luks" format. e.g. > > > > # qemu-img create --

Re: [Qemu-devel] [PATCH v8 13/20] qcow2: add support for LUKS encryption format

2017-06-07 Thread Max Reitz
On 2017-06-01 19:27, Daniel P. Berrange wrote: > This adds support for using LUKS as an encryption format > with the qcow2 file, using the new encrypt.format parameter > to request "luks" format. e.g. > > # qemu-img create --object secret,data=123456,id=sec0 \ >-f qcow2 -o encrypt.format

[Qemu-devel] [PATCH v8 13/20] qcow2: add support for LUKS encryption format

2017-06-01 Thread Daniel P. Berrange
This adds support for using LUKS as an encryption format with the qcow2 file, using the new encrypt.format parameter to request "luks" format. e.g. # qemu-img create --object secret,data=123456,id=sec0 \ -f qcow2 -o encrypt.format=luks,encrypt.key-secret=sec0 \ test.qcow2 10G The