messages from 2019-02-11 23:31:29 to 2019-04-08 08:22:32 UTC [more...]
[PATCH v2 0/5] fscrypt: d_revalidate fixes and cleanups
2019-04-08 8:22 UTC (8+ 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
` [f2fs-dev] [PATCH v2 0/5] fscrypt: d_revalidate fixes and cleanups
[f2fs-dev] [PATCH v4 00/17] fscrypt: key management improvements
2019-04-03 20:36 UTC (20+ messages)
` [f2fs-dev] [PATCH v4 01/17] fs, fscrypt: move uapi definitions to new header <linux/fscrypt.h>
` [f2fs-dev] [PATCH v4 02/17] fscrypt: use FSCRYPT_ prefix for uapi constants
` [f2fs-dev] [PATCH v4 03/17] fscrypt: use FSCRYPT_* definitions, not FS_*
` [f2fs-dev] [PATCH v4 04/17] fscrypt: add ->ci_inode to fscrypt_info
` [f2fs-dev] [PATCH v4 05/17] fscrypt: refactor v1 policy key setup into keysetup_legacy.c
` [f2fs-dev] [PATCH v4 06/17] fscrypt: add FS_IOC_ADD_ENCRYPTION_KEY ioctl
` [f2fs-dev] [PATCH v4 07/17] fs/dcache.c: add shrink_dcache_inode()
` "
` [f2fs-dev] [PATCH v4 08/17] fscrypt: add FS_IOC_REMOVE_ENCRYPTION_KEY ioctl
` [f2fs-dev] [PATCH v4 09/17] fscrypt: add FS_IOC_GET_ENCRYPTION_KEY_STATUS ioctl
` [f2fs-dev] [PATCH v4 10/17] fscrypt: add an HKDF-SHA512 implementation
` [f2fs-dev] [PATCH v4 11/17] fscrypt: v2 encryption policy support
` [f2fs-dev] [PATCH v4 12/17] fscrypt: allow unprivileged users to add/remove keys for v2 policies
` [f2fs-dev] [PATCH v4 13/17] fscrypt: require that key be added when setting a v2 encryption policy
` [f2fs-dev] [PATCH v4 14/17] ext4: wire up new fscrypt ioctls
` [f2fs-dev] [PATCH v4 15/17] f2fs: "
` [f2fs-dev] [PATCH v4 16/17] ubifs: "
` [f2fs-dev] [PATCH v4 17/17] fscrypt: document the new ioctls and policy version
[PATCH 0/17] Add zinc using existing algorithm implementations
2019-03-26 9:46 UTC (26+ messages)
` [PATCH 1/17] asm: simd context helper API
` [PATCH 2/17] crypto: chacha20 - Export chacha20 functions without crypto API
` [PATCH 3/17] zinc: introduce minimal cryptography library
` [PATCH 4/17] zinc: Add generic C implementation of chacha20 and self-test
` [PATCH 5/17] zinc: Add x86 accelerated ChaCha20
` [PATCH 6/17] zinc: Add arm accelerated chacha20
` [PATCH 7/17] crypto: poly1305 - Export core functions without crypto API
` [PATCH 8/17] zinc: Add generic C implementation of poly1305 and self-test
` [PATCH 9/17] zinc: Add x86 accelerated poly1305
` [PATCH 10/17] zinc: ChaCha20Poly1305 construction and selftest
` [PATCH 11/17] zinc: BLAKE2s generic C implementation "
` [PATCH 12/17] zinc: BLAKE2s x86_64 implementation
` [PATCH 13/17] zinc: Curve25519 generic C implementations and selftest
` [PATCH 14/17] zinc: Curve25519 x86_64 implementation
` [PATCH 15/17] zinc: import Bernstein and Schwabe's Curve25519 ARM implementation
` [PATCH 16/17] zinc: "
` [PATCH 17/17] security/keys: rewrite big_key crypto to use Zinc
[PATCH 0/2] ubifs: Get rid of some ifdefs
2019-03-26 7:52 UTC (3+ messages)
` [PATCH 1/2] ubifs: Remove #ifdef around CONFIG_FS_ENCRYPTION
` [PATCH 2/2] ubifs: Remove ifdefs around CONFIG_UBIFS_ATIME_SUPPORT
[RFC PATCH v3 00/18] fscrypt: key management improvements
2019-03-22 22:02 UTC (30+ messages)
` [RFC PATCH v3 01/18] fs, fscrypt: move uapi definitions to new header <linux/fscrypt.h>
` [f2fs-dev] [RFC PATCH v3 02/18] fscrypt: use FSCRYPT_ prefix for uapi constants
` [RFC PATCH v3 03/18] fscrypt: use FSCRYPT_* definitions, not FS_*
` [f2fs-dev] [RFC PATCH v3 04/18] fs: add ->s_master_keys to struct super_block
` "
` [f2fs-dev] [RFC PATCH v3 05/18] fscrypt: add ->ci_inode to fscrypt_info
` [RFC PATCH v3 06/18] fscrypt: refactor v1 policy key setup into keysetup_legacy.c
` [f2fs-dev] [RFC PATCH v3 07/18] fscrypt: add FS_IOC_ADD_ENCRYPTION_KEY ioctl
` "
` [RFC PATCH v3 08/18] fs/dcache.c: add shrink_dcache_inode()
` [f2fs-dev] [RFC PATCH v3 09/18] fscrypt: add FS_IOC_REMOVE_ENCRYPTION_KEY ioctl
` [RFC PATCH v3 10/18] fscrypt: add FS_IOC_GET_ENCRYPTION_KEY_STATUS ioctl
` [f2fs-dev] [RFC PATCH v3 11/18] fscrypt: add an HKDF-SHA512 implementation
` [RFC PATCH v3 12/18] fscrypt: v2 encryption policy support
` [f2fs-dev] [RFC PATCH v3 13/18] fscrypt: allow unprivileged users to add/remove keys for v2 policies
` [f2fs-dev] [RFC PATCH v3 14/18] fscrypt: require that key be added when setting a v2 encryption policy
` [f2fs-dev] [RFC PATCH v3 15/18] ext4: wire up new fscrypt ioctls
` [RFC PATCH v3 16/18] f2fs: "
` [RFC PATCH v3 17/18] ubifs: "
` [RFC PATCH v3 18/18] fscrypt: document the new ioctls and policy version
` [f2fs-dev] [RFC PATCH v3 00/18] fscrypt: key management improvements
[PATCH 0/5] fscrypt: d_revalidate fixes and cleanups
2019-03-18 21:25 UTC (9+ messages)
` [PATCH 1/5] fscrypt: clean up and improve dentry revalidation
` [f2fs-dev] "
` [f2fs-dev] [PATCH 2/5] fscrypt: fix race allowing rename() and link() of ciphertext dentries
` [PATCH 3/5] fs, fscrypt: clear DCACHE_ENCRYPTED_NAME when unaliasing directory
` [f2fs-dev] [PATCH 4/5] fscrypt: only set dentry_operations on ciphertext dentries
` [f2fs-dev] [PATCH 5/5] fscrypt: fix race where ->lookup() marks plaintext dentry as ciphertext
[PATCH] fscrypt: add memory barrier when loading essiv_hash_tfm
2019-03-18 17:24 UTC
[PATCH] fscrypt: use proper memory barriers for ->i_crypt_info
2019-03-18 17:24 UTC
[PATCH] fscrypt: drop inode argument from fscrypt_get_ctx()
2019-03-18 17:23 UTC
Update fscrypt git URL for linux-next
2019-03-17 22:30 UTC (4+ messages)
[PATCH] fscrypt: remove WARN_ON_ONCE() when decryption fails
2019-03-15 21:16 UTC
[PATCH] ubifs: remove unnecessary #ifdef around fscrypt_ioctl_get_policy()
2019-03-15 21:08 UTC (2+ messages)
[PATCH] ubifs: remove unnecessary calls to set up directory key
2019-03-15 21:05 UTC (2+ messages)
overlayfs vs. fscrypt
2019-03-15 13:59 UTC (51+ messages)
` [RFC] fscrypt_key_required mount option
` [PATCH 1/4] fscrypt: Implement FS_CFLG_OWN_D_OPS
` [PATCH 2/4] fscrypt: Export fscrypt_d_ops
` [PATCH 3/4] ubifs: Simplify fscrypt_get_encryption_info() error handling
` [PATCH 4/4] ubifs: Implement new mount option, fscrypt_key_required
[PATCH] generic/398: accept EXDEV for rename or link into encrypted dir
2019-03-15 0:05 UTC
[GIT PULL] fscrypt updates for v5.1
2019-03-09 19:55 UTC (2+ messages)
[RFC PATCH 00/10] Consolidate Post read processing code
2019-02-22 4:29 UTC (26+ messages)
` [f2fs-dev] [RFC PATCH 01/10] ext4: use IS_ENCRYPTED() to check encryption status
` [RFC PATCH 02/10] f2fs: "
` [RFC PATCH 03/10] fscrypt: remove filesystem specific build config option
` [RFC PATCH 04/10] Consolidate "post read processing" into a new file
` [f2fs-dev] "
` [f2fs-dev] [RFC PATCH 05/10] fsverity: Add call back to decide if verity check has to be performed
` [f2fs-dev] [RFC PATCH 06/10] Introduce REQ_POST_READ_PROC bio flag
` [RFC PATCH 07/10] fsverity: Add call back to determine readpage limit
` [RFC PATCH 08/10] fsverity: Add call back to verify file holes
` [RFC PATCH 09/10] fs/mpage.c: Integrate post read processing
` [RFC PATCH 10/10] ext4: Wire up ext4_readpage[s] to use mpage_readpage[s]
` [f2fs-dev] [RFC PATCH 00/10] Consolidate Post read processing code
[PATCH] KEYS: user: Align the payload buffer
2019-02-20 13:32 UTC (4+ messages)
[RFC PATCH 20/27] container, keys: Add a container keyring
2019-02-15 21:46 UTC
Proposal: Yet another possible fs-verity interface
2019-02-12 18:42 UTC (10+ messages)
` [f2fs-dev] "
[f2fs-dev] [RFC PATCH v2 00/20] fscrypt: key management improvements
2019-02-12 0:03 UTC (5+ messages)
` [f2fs-dev] [RFC PATCH v2 11/20] fscrypt: add FS_IOC_REMOVE_ENCRYPTION_KEY ioctl
` "
page: next (older) | prev (newer) | latest
- recent:[subjects (threaded)|topics (new)|topics (active)]
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).