Re: [f2fs-dev] [PATCH 1/1] f2fs-tools: Introduce metadata encryption support

2020-12-17 Thread Satya Tangirala via Linux-f2fs-devel
On Wed, Oct 07, 2020 at 12:42:09PM -0700, jaeg...@kernel.org wrote: > Hi Satya, > > On 10/05, Satya Tangirala wrote: > > This patch introduces two new options '-A' and '-M' for specifying metadata > > crypt options. '-A' takes the desired metadata encryption algorithm as > > argument. '-M' takes t

Re: [f2fs-dev] [PATCH 1/1] f2fs-tools: Introduce metadata encryption support

2020-10-07 Thread Eric Biggers
On Mon, Oct 05, 2020 at 07:41:33AM +, Satya Tangirala wrote: > diff --git a/lib/Makefile.am b/lib/Makefile.am > index 871d773..a82d753 100644 > --- a/lib/Makefile.am > +++ b/lib/Makefile.am > @@ -2,10 +2,10 @@ > > lib_LTLIBRARIES = libf2fs.la > > -libf2fs_la_SOURCES = libf2fs.c libf2fs_io.

Re: [f2fs-dev] [PATCH 1/1] f2fs-tools: Introduce metadata encryption support

2020-10-07 Thread jaegeuk
Hi Satya, On 10/05, Satya Tangirala wrote: > Introduce native metadata encryption support for F2FS. All blocks > other than the super block are encrypted with the specified metadata > encryption key and algorithm. The data unit number for each block is its > block number in the filesystem. > > Th

[f2fs-dev] [PATCH 1/1] f2fs-tools: Introduce metadata encryption support

2020-10-05 Thread Satya Tangirala via Linux-f2fs-devel
Introduce native metadata encryption support for F2FS. All blocks other than the super block are encrypted with the specified metadata encryption key and algorithm. The data unit number for each block is its block number in the filesystem. This patch introduces two new options '-A' and '-M' for sp