linux-fscrypt.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2019-04-14 11:38:01 to 2019-05-20 17:25:52 UTC [more...]

[f2fs-dev] [PATCH v6 00/16] fscrypt: key management improvements
 2019-05-20 17:25 UTC  (17+ messages)
` [f2fs-dev] [PATCH v6 01/16] fs, fscrypt: move uapi definitions to new header <linux/fscrypt.h>
` [f2fs-dev] [PATCH v6 02/16] fscrypt: use FSCRYPT_ prefix for uapi constants
` [f2fs-dev] [PATCH v6 03/16] fscrypt: use FSCRYPT_* definitions, not FS_*
` [f2fs-dev] [PATCH v6 04/16] fscrypt: add ->ci_inode to fscrypt_info
` [f2fs-dev] [PATCH v6 05/16] fscrypt: refactor v1 policy key setup into keysetup_legacy.c
` [f2fs-dev] [PATCH v6 06/16] fscrypt: add FS_IOC_ADD_ENCRYPTION_KEY ioctl
` [f2fs-dev] [PATCH v6 07/16] fscrypt: add FS_IOC_REMOVE_ENCRYPTION_KEY ioctl
` [f2fs-dev] [PATCH v6 08/16] fscrypt: add FS_IOC_GET_ENCRYPTION_KEY_STATUS ioctl
` [f2fs-dev] [PATCH v6 09/16] fscrypt: add an HKDF-SHA512 implementation
` [f2fs-dev] [PATCH v6 10/16] fscrypt: v2 encryption policy support
` [f2fs-dev] [PATCH v6 11/16] fscrypt: allow unprivileged users to add/remove keys for v2 policies
` [f2fs-dev] [PATCH v6 12/16] fscrypt: require that key be added when setting a v2 encryption policy
` [f2fs-dev] [PATCH v6 13/16] ext4: wire up new fscrypt ioctls
` [f2fs-dev] [PATCH v6 14/16] f2fs: "
` [f2fs-dev] [PATCH v6 15/16] ubifs: "
` [f2fs-dev] [PATCH v6 16/16] fscrypt: document the new ioctls and policy version

[f2fs-dev] [PATCH v2 00/14] fscrypt, ext4: prepare for blocksize != PAGE_SIZE
 2019-05-20 16:29 UTC  (15+ messages)
` [f2fs-dev] [PATCH v2 01/14] fscrypt: simplify bounce page handling
` [f2fs-dev] [PATCH v2 02/14] fscrypt: remove the "write" part of struct fscrypt_ctx
` [f2fs-dev] [PATCH v2 03/14] fscrypt: rename fscrypt_do_page_crypto() to fscrypt_crypt_block()
` [f2fs-dev] [PATCH v2 04/14] fscrypt: clean up some BUG_ON()s in block encryption/decryption
` [f2fs-dev] [PATCH v2 05/14] fscrypt: introduce fscrypt_encrypt_block_inplace()
` [f2fs-dev] [PATCH v2 06/14] fscrypt: support encrypting multiple filesystem blocks per page
` [f2fs-dev] [PATCH v2 07/14] fscrypt: handle blocksize < PAGE_SIZE in fscrypt_zeroout_range()
` [f2fs-dev] [PATCH v2 08/14] fscrypt: introduce fscrypt_decrypt_block_inplace()
` [f2fs-dev] [PATCH v2 09/14] fscrypt: support decrypting multiple filesystem blocks per page
` [f2fs-dev] [PATCH v2 10/14] fscrypt: decrypt only the needed blocks in __fscrypt_decrypt_bio()
` [f2fs-dev] [PATCH v2 11/14] ext4: clear BH_Uptodate flag on decryption error
` [f2fs-dev] [PATCH v2 12/14] ext4: decrypt only the needed blocks in ext4_block_write_begin()
` [f2fs-dev] [PATCH v2 13/14] ext4: decrypt only the needed block in __ext4_block_zero_page_range()
` [f2fs-dev] [PATCH v2 14/14] ext4: encrypt only up to last block in ext4_bio_write_page()

[RFC PATCH 0/7] xfstests: verify fscrypt-encrypted contents and filenames
 2019-05-14  2:20 UTC  (14+ messages)
` [RFC PATCH 1/7] common/encrypt: introduce helpers for set_encpolicy and get_encpolicy
` [RFC PATCH 2/7] fscrypt-crypt-util: add utility for reproducing fscrypt encrypted data
` [f2fs-dev] [RFC PATCH 3/7] common/encrypt: support requiring other encryption settings
` [RFC PATCH 4/7] common/encrypt: add helper for ciphertext verification tests
    ` [f2fs-dev] "
` [RFC PATCH 5/7] generic: verify ciphertext of v1 encryption policies with AES-256
` [RFC PATCH 6/7] generic: verify ciphertext of v1 encryption policies with AES-128
` [RFC PATCH 7/7] generic: verify ciphertext of v1 encryption policies with Adiantum

[PATCH 0/2] ubifs: Get rid of some ifdefs
 2019-05-13 21:39 UTC  (6+ messages)
` [PATCH 1/2] ubifs: Remove #ifdef around CONFIG_FS_ENCRYPTION

[PATCH V3] fscrypt: don't set policy for a dead directory
 2019-05-10 12:30 UTC  (2+ messages)

[PATCH V2] fscrypt: don't set policy for a dead directory
 2019-05-10  1:54 UTC  (6+ messages)

[PATCH] fscrypt: don't set policy for a dead directory
 2019-05-08  4:55 UTC  (5+ messages)

[GIT PULL] fscrypt updates for 5.2
 2019-05-08  4:55 UTC  (3+ messages)

[RFC PATCH 0/4] Inline Encryption Support
 2019-05-08  3:02 UTC  (16+ messages)
` [RFC PATCH 1/4] block: Block Layer changes for "
` [RFC PATCH 2/4] scsi: ufs: UFS driver v2.1 crypto support
` [RFC PATCH 3/4] fscrypt: wire up fscrypt to use blk-crypto
` [RFC PATCH 4/4] f2fs: Wire up f2fs to use inline encryption via fscrypt

[PATCH 00/13] fscrypt, ext4: prepare for blocksize != PAGE_SIZE
 2019-05-06  9:12 UTC  (24+ messages)
` [f2fs-dev] [PATCH 01/13] fscrypt: simplify bounce page handling
  `  "
` [PATCH 02/13] fscrypt: remove the "write" part of struct fscrypt_ctx
` [f2fs-dev] [PATCH 03/13] fscrypt: rename fscrypt_do_page_crypto() to fscrypt_crypt_block()
  `  "
` [f2fs-dev] [PATCH 04/13] fscrypt: clean up some BUG_ON()s in block encryption/decryption
` [f2fs-dev] [PATCH 05/13] fscrypt: introduce fscrypt_encrypt_block_inplace()
  `  "
` [PATCH 06/13] fscrypt: support encrypting multiple filesystem blocks per page
` [f2fs-dev] [PATCH 07/13] fscrypt: handle blocksize < PAGE_SIZE in fscrypt_zeroout_range()
  `  "
` [PATCH 08/13] fscrypt: introduce fscrypt_decrypt_block_inplace()
` [PATCH 09/13] fscrypt: support decrypting multiple filesystem blocks per page
` [f2fs-dev] [PATCH 10/13] ext4: clear BH_Uptodate flag on decryption error
` [PATCH 11/13] ext4: decrypt only the needed blocks in ext4_block_write_begin()
` [PATCH 12/13] ext4: decrypt only the needed block in __ext4_block_zero_page_range()
` [PATCH 13/13] ext4: encrypt only up to last block in ext4_bio_write_page()

[PATCH V2 00/13] Consolidate FS read I/O callbacks code
 2019-05-02 18:16 UTC  (35+ messages)
` [PATCH V2 01/13] ext4: Clear BH_Uptodate flag on decryption error
` [PATCH V2 02/13] Consolidate "read callbacks" into a new file
  ` [f2fs-dev] "
` [PATCH V2 03/13] fsverity: Add call back to decide if verity check has to be performed
` [PATCH V2 04/13] fsverity: Add call back to determine readpage limit
` [PATCH V2 05/13] fs/mpage.c: Integrate read callbacks
` [PATCH V2 06/13] ext4: Wire up ext4_readpage[s] to use mpage_readpage[s]
` [PATCH V2 07/13] Add decryption support for sub-pagesized blocks
  ` [f2fs-dev] "
` [PATCH V2 08/13] ext4: Decrypt all boundary blocks when doing buffered write
` [PATCH V2 09/13] ext4: Decrypt the block that needs to be partially zeroed
` [PATCH V2 10/13] fscrypt_encrypt_page: Loop across all blocks mapped by a page range
  ` [f2fs-dev] "
` [PATCH V2 11/13] ext4: Compute logical block and the page range to be encrypted
` [PATCH V2 12/13] fscrypt_zeroout_range: Encrypt all zeroed out blocks of a page
` [PATCH V2 13/13] ext4: Enable encryption for subpage-sized blocks

[PATCH V1 00/14] Consolidate Post read processing code
 2019-04-24 14:59 UTC  (23+ messages)
` [PATCH V1 01/14] ext4: Clear BH_Uptodate flag on decryption error
` [PATCH V1 02/14] Consolidate "post read processing" into a new file
` [PATCH V1 03/14] fsverity: Add call back to decide if verity check has to be performed
` [PATCH V1 04/14] fsverity: Add call back to determine readpage limit
` [PATCH V1 05/14] fs/mpage.c: Integrate post read processing
` [PATCH V1 06/14] ext4: Wire up ext4_readpage[s] to use mpage_readpage[s]
` [PATCH V1 07/14] Remove the term "bio" from post read processing
` [PATCH V1 08/14] Add decryption support for sub-pagesized blocks
` [PATCH V1 09/14] ext4: Decrypt all boundary blocks when doing buffered write
` [PATCH V1 10/14] ext4: Decrypt the block that needs to be partially zeroed
` [PATCH V1 11/14] fscrypt_encrypt_page: Loop across all blocks mapped by a page range
` [PATCH V1 12/14] ext4: Compute logical block and the page range to be encrypted
` [PATCH V1 13/14] fscrypt_zeroout_range: Encrypt all zeroed out blocks of a page
` [PATCH V1 14/14] ext4: Enable encryption for subpage-sized blocks

[PATCH v5 00/16] fscrypt: key management improvements
 2019-04-18 23:29 UTC  (17+ messages)
` [PATCH v5 01/16] fs, fscrypt: move uapi definitions to new header <linux/fscrypt.h>
` [f2fs-dev] [PATCH v5 02/16] fscrypt: use FSCRYPT_ prefix for uapi constants
` [f2fs-dev] [PATCH v5 03/16] fscrypt: use FSCRYPT_* definitions, not FS_*
` [f2fs-dev] [PATCH v5 04/16] fscrypt: add ->ci_inode to fscrypt_info
` [f2fs-dev] [PATCH v5 05/16] fscrypt: refactor v1 policy key setup into keysetup_legacy.c
` [PATCH v5 06/16] fscrypt: add FS_IOC_ADD_ENCRYPTION_KEY ioctl
` [PATCH v5 07/16] fscrypt: add FS_IOC_REMOVE_ENCRYPTION_KEY ioctl
` [f2fs-dev] [PATCH v5 08/16] fscrypt: add FS_IOC_GET_ENCRYPTION_KEY_STATUS ioctl
` [PATCH v5 09/16] fscrypt: add an HKDF-SHA512 implementation
` [PATCH v5 10/16] fscrypt: v2 encryption policy support
` [PATCH v5 11/16] fscrypt: allow unprivileged users to add/remove keys for v2 policies
` [f2fs-dev] [PATCH v5 12/16] fscrypt: require that key be added when setting a v2 encryption policy
` [PATCH v5 13/16] ext4: wire up new fscrypt ioctls
` [PATCH v5 14/16] f2fs: "
` [PATCH v5 15/16] ubifs: "
` [PATCH v5 16/16] fscrypt: document the new ioctls and policy version

[PATCH] ubifs: remove unnecessary #ifdef around fscrypt_ioctl_get_policy()
 2019-04-18 19:31 UTC  (4+ messages)

[PATCH] ubifs: remove unnecessary calls to set up directory key
 2019-04-18 19:29 UTC  (3+ messages)

[PATCH v2 0/2] fscrypt: improve encrypted symlink performance
 2019-04-17 16:55 UTC  (8+ messages)
` [f2fs-dev] [PATCH v2 1/2] vfs: use READ_ONCE() to access ->i_link
  `  "
` [PATCH v2 2/2] fscrypt: cache decrypted symlink target in ->i_link

[PATCH v2 0/5] fscrypt: d_revalidate fixes and cleanups
 2019-04-17 14:24 UTC  (13+ messages)
` [f2fs-dev] [PATCH v2 1/5] fscrypt: clean up and improve dentry revalidation
  `  "
` [f2fs-dev] [PATCH v2 2/5] fscrypt: fix race allowing rename() and link() of ciphertext dentries
  `  "
` [PATCH v2 3/5] fs, fscrypt: clear DCACHE_ENCRYPTED_NAME when unaliasing directory
` [f2fs-dev] [PATCH v2 4/5] fscrypt: only set dentry_operations on ciphertext dentries
  `  "
` [f2fs-dev] [PATCH v2 5/5] fscrypt: fix race where ->lookup() marks plaintext dentry as ciphertext
  `  "

[PATCH v2] fscrypt: use READ_ONCE() to access ->i_crypt_info
 2019-04-16 22:57 UTC  (2+ messages)

[PATCH] fscrypt: remove WARN_ON_ONCE() when decryption fails
 2019-04-16 22:45 UTC  (2+ messages)

[PATCH] fscrypt: drop inode argument from fscrypt_get_ctx()
 2019-04-16 22:38 UTC  (2+ messages)

[RFC PATCH V2 00/14] Consolidate Post read processing code
 2019-04-14 11:38 UTC  (5+ messages)
` [RFC PATCH V2 11/14] fscrypt_encrypt_page: Loop across all blocks mapped by a page range
` [RFC PATCH V2 12/14] ext4: Compute logical block and the page range to be encrypted
` [RFC PATCH V2 13/14] fscrypt_zeroout_range: Encrypt all zeroed out blocks of a page
` [RFC PATCH V2 14/14] ext4: Enable encryption for subpage-sized blocks


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).