aboutsummaryrefslogtreecommitdiff
path: root/fs/crypto
AgeCommit message (Expand)AuthorFilesLines
2019-11-06fscrypt: add support for IV_INO_LBLK_64 policiesGravatar Eric Biggers 5-18/+100
2019-11-06fscrypt: avoid data race on fscrypt_mode::logged_impl_nameGravatar Eric Biggers 2-5/+3
2019-10-21fscrypt: zeroize fscrypt_info before freeingGravatar Eric Biggers 1-0/+1
2019-10-21fscrypt: remove struct fscrypt_ctxGravatar Eric Biggers 3-131/+10
2019-10-21fscrypt: invoke crypto API for ESSIV handlingGravatar Eric Biggers 4-114/+11
2019-08-12fscrypt: require that key be added when setting a v2 encryption policyGravatar Eric Biggers 3-1/+63
2019-08-12fscrypt: add FS_IOC_REMOVE_ENCRYPTION_KEY_ALL_USERS ioctlGravatar Eric Biggers 1-5/+24
2019-08-12fscrypt: allow unprivileged users to add/remove keys for v2 policiesGravatar Eric Biggers 3-33/+336
2019-08-12fscrypt: v2 encryption policy supportGravatar Eric Biggers 7-185/+684
2019-08-12fscrypt: add an HKDF-SHA512 implementationGravatar Eric Biggers 4-0/+199
2019-08-12fscrypt: add FS_IOC_GET_ENCRYPTION_KEY_STATUS ioctlGravatar Eric Biggers 1-0/+63
2019-08-12fscrypt: add FS_IOC_REMOVE_ENCRYPTION_KEY ioctlGravatar Eric Biggers 3-5/+411
2019-08-12fscrypt: add FS_IOC_ADD_ENCRYPTION_KEY ioctlGravatar Eric Biggers 5-3/+391
2019-08-12fscrypt: rename keyinfo.c to keysetup.cGravatar Eric Biggers 3-2/+2
2019-08-12fscrypt: move v1 policy key setup to keysetup_v1.cGravatar Eric Biggers 4-322/+369
2019-08-12fscrypt: refactor key setup code in preparation for v2 policiesGravatar Eric Biggers 2-112/+146
2019-08-12fscrypt: rename fscrypt_master_key to fscrypt_direct_keyGravatar Eric Biggers 2-69/+68
2019-08-12fscrypt: add ->ci_inode to fscrypt_infoGravatar Eric Biggers 2-0/+5
2019-08-12fscrypt: use FSCRYPT_* definitions, not FS_*Gravatar Eric Biggers 5-43/+44
2019-08-12fscrypt: use ENOPKG when crypto API support missingGravatar Eric Biggers 1-9/+11
2019-08-12fscrypt: improve warnings for missing crypto API supportGravatar Eric Biggers 1-5/+14
2019-08-12fscrypt: improve warning messages for unsupported encryption contextsGravatar Eric Biggers 1-3/+15
2019-08-12fscrypt: make fscrypt_msg() take inode instead of super_blockGravatar Eric Biggers 5-35/+28
2019-08-12fscrypt: clean up base64 encoding/decodingGravatar Eric Biggers 1-17/+17
2019-08-12fscrypt: remove loadable module related codeGravatar Eric Biggers 3-26/+1
2019-06-27fscrypt: remove selection of CONFIG_CRYPTO_SHA256Gravatar Eric Biggers 1-1/+0
2019-06-10fscrypt: remove unnecessary includes of ratelimit.hGravatar Eric Biggers 3-3/+0
2019-05-28fscrypt: don't set policy for a dead directoryGravatar Hongjie Fang 1-0/+2
2019-05-28fscrypt: decrypt only the needed blocks in __fscrypt_decrypt_bio()Gravatar Eric Biggers 1-2/+2
2019-05-28fscrypt: support decrypting multiple filesystem blocks per pageGravatar Eric Biggers 2-16/+33
2019-05-28fscrypt: introduce fscrypt_decrypt_block_inplace()Gravatar Eric Biggers 1-4/+27
2019-05-28fscrypt: handle blocksize < PAGE_SIZE in fscrypt_zeroout_range()Gravatar Eric Biggers 1-9/+6
2019-05-28fscrypt: support encrypting multiple filesystem blocks per pageGravatar Eric Biggers 1-28/+39
2019-05-28fscrypt: introduce fscrypt_encrypt_block_inplace()Gravatar Eric Biggers 1-19/+31
2019-05-28fscrypt: clean up some BUG_ON()s in block encryption/decryptionGravatar Eric Biggers 1-6/+9
2019-05-28fscrypt: rename fscrypt_do_page_crypto() to fscrypt_crypt_block()Gravatar Eric Biggers 3-21/+20
2019-05-28fscrypt: remove the "write" part of struct fscrypt_ctxGravatar Eric Biggers 2-13/+12
2019-05-28fscrypt: simplify bounce page handlingGravatar Eric Biggers 3-106/+40
2019-05-21treewide: Add SPDX license identifier - Makefile/KconfigGravatar Thomas Gleixner 2-0/+2
2019-05-21treewide: Add SPDX license identifier for more missed filesGravatar Thomas Gleixner 1-0/+1
2019-05-21treewide: Add SPDX license identifier for missed filesGravatar Thomas Gleixner 1-0/+1
2019-05-07Merge tag 'fscrypt_for_linus' of git://git.kernel.org/pub/scm/fs/fscrypt/fscryptGravatar Linus Torvalds 6-67/+119
2019-05-07Merge tag 'for-5.2/block-20190507' of git://git.kernel.dk/linux-blockGravatar Linus Torvalds 1-2/+1
2019-04-30block: remove the i argument to bio_for_each_segment_allGravatar Christoph Hellwig 1-2/+1
2019-04-25crypto: shash - remove shash_desc::flagsGravatar Eric Biggers 1-1/+0
2019-04-17fscrypt: cache decrypted symlink target in ->i_linkGravatar Eric Biggers 2-7/+54
2019-04-17fscrypt: fix race where ->lookup() marks plaintext dentry as ciphertextGravatar Eric Biggers 2-5/+7
2019-04-17fscrypt: only set dentry_operations on ciphertext dentriesGravatar Eric Biggers 1-2/+1
2019-04-17fscrypt: fix race allowing rename() and link() of ciphertext dentriesGravatar Eric Biggers 1-1/+11
2019-04-17fscrypt: clean up and improve dentry revalidationGravatar Eric Biggers 2-30/+32