aboutsummaryrefslogtreecommitdiffstats
path: root/fs/crypto (follow)
AgeCommit message (Expand)AuthorFilesLines
2019-11-06fscrypt: add support for IV_INO_LBLK_64 policiesEric Biggers5-18/+100
2019-11-06fscrypt: avoid data race on fscrypt_mode::logged_impl_nameEric Biggers2-5/+3
2019-10-21fscrypt: zeroize fscrypt_info before freeingEric Biggers1-0/+1
2019-10-21fscrypt: remove struct fscrypt_ctxEric Biggers3-131/+10
2019-10-21fscrypt: invoke crypto API for ESSIV handlingEric Biggers4-114/+11
2019-08-12fscrypt: require that key be added when setting a v2 encryption policyEric Biggers3-1/+63
2019-08-12fscrypt: add FS_IOC_REMOVE_ENCRYPTION_KEY_ALL_USERS ioctlEric Biggers1-5/+24
2019-08-12fscrypt: allow unprivileged users to add/remove keys for v2 policiesEric Biggers3-33/+336
2019-08-12fscrypt: v2 encryption policy supportEric Biggers7-185/+684
2019-08-12fscrypt: add an HKDF-SHA512 implementationEric Biggers4-0/+199
2019-08-12fscrypt: add FS_IOC_GET_ENCRYPTION_KEY_STATUS ioctlEric Biggers1-0/+63
2019-08-12fscrypt: add FS_IOC_REMOVE_ENCRYPTION_KEY ioctlEric Biggers3-5/+411
2019-08-12fscrypt: add FS_IOC_ADD_ENCRYPTION_KEY ioctlEric Biggers5-3/+391
2019-08-12fscrypt: rename keyinfo.c to keysetup.cEric Biggers3-2/+2
2019-08-12fscrypt: move v1 policy key setup to keysetup_v1.cEric Biggers4-322/+369
2019-08-12fscrypt: refactor key setup code in preparation for v2 policiesEric Biggers2-112/+146
2019-08-12fscrypt: rename fscrypt_master_key to fscrypt_direct_keyEric Biggers2-69/+68
2019-08-12fscrypt: add ->ci_inode to fscrypt_infoEric Biggers2-0/+5
2019-08-12fscrypt: use FSCRYPT_* definitions, not FS_*Eric Biggers5-43/+44
2019-08-12fscrypt: use ENOPKG when crypto API support missingEric Biggers1-9/+11
2019-08-12fscrypt: improve warnings for missing crypto API supportEric Biggers1-5/+14
2019-08-12fscrypt: improve warning messages for unsupported encryption contextsEric Biggers1-3/+15
2019-08-12fscrypt: make fscrypt_msg() take inode instead of super_blockEric Biggers5-35/+28
2019-08-12fscrypt: clean up base64 encoding/decodingEric Biggers1-17/+17
2019-08-12fscrypt: remove loadable module related codeEric Biggers3-26/+1
2019-06-27fscrypt: remove selection of CONFIG_CRYPTO_SHA256Eric Biggers1-1/+0
2019-06-10fscrypt: remove unnecessary includes of ratelimit.hEric Biggers3-3/+0
2019-05-28fscrypt: don't set policy for a dead directoryHongjie Fang1-0/+2
2019-05-28fscrypt: decrypt only the needed blocks in __fscrypt_decrypt_bio()Eric Biggers1-2/+2
2019-05-28fscrypt: support decrypting multiple filesystem blocks per pageEric Biggers2-16/+33
2019-05-28fscrypt: introduce fscrypt_decrypt_block_inplace()Eric Biggers1-4/+27
2019-05-28fscrypt: handle blocksize < PAGE_SIZE in fscrypt_zeroout_range()Eric Biggers1-9/+6
2019-05-28fscrypt: support encrypting multiple filesystem blocks per pageEric Biggers1-28/+39
2019-05-28fscrypt: introduce fscrypt_encrypt_block_inplace()Eric Biggers1-19/+31
2019-05-28fscrypt: clean up some BUG_ON()s in block encryption/decryptionEric Biggers1-6/+9
2019-05-28fscrypt: rename fscrypt_do_page_crypto() to fscrypt_crypt_block()Eric Biggers3-21/+20
2019-05-28fscrypt: remove the "write" part of struct fscrypt_ctxEric Biggers2-13/+12
2019-05-28fscrypt: simplify bounce page handlingEric Biggers3-106/+40
2019-05-21treewide: Add SPDX license identifier - Makefile/KconfigThomas Gleixner2-0/+2
2019-05-21treewide: Add SPDX license identifier for more missed filesThomas Gleixner1-0/+1
2019-05-21treewide: Add SPDX license identifier for missed filesThomas Gleixner1-0/+1
2019-05-07Merge tag 'fscrypt_for_linus' of git://git.kernel.org/pub/scm/fs/fscrypt/fscryptLinus Torvalds6-67/+119
2019-05-07Merge tag 'for-5.2/block-20190507' of git://git.kernel.dk/linux-blockLinus Torvalds1-2/+1
2019-04-30block: remove the i argument to bio_for_each_segment_allChristoph Hellwig1-2/+1
2019-04-25crypto: shash - remove shash_desc::flagsEric Biggers1-1/+0
2019-04-17fscrypt: cache decrypted symlink target in ->i_linkEric Biggers2-7/+54
2019-04-17fscrypt: fix race where ->lookup() marks plaintext dentry as ciphertextEric Biggers2-5/+7
2019-04-17fscrypt: only set dentry_operations on ciphertext dentriesEric Biggers1-2/+1
2019-04-17fscrypt: fix race allowing rename() and link() of ciphertext dentriesEric Biggers1-1/+11
2019-04-17fscrypt: clean up and improve dentry revalidationEric Biggers2-30/+32