summaryrefslogtreecommitdiffstats
path: root/fs/crypto
Commit message (Expand)AuthorAgeFilesLines
* fscrypt: align Base64 encoding with RFC 4648 base64urlEric Biggers2021-07-251-41/+65
* fscrypt: add fscrypt_symlink_getattr() for computing st_sizeEric Biggers2021-07-251-0/+44
* fscrypt: fix derivation of SipHash keys on big endian CPUsEric Biggers2021-06-051-8/+32
* fscrypt: don't ignore minor_hash when hash is 0Eric Biggers2021-06-051-7/+3
* Merge branch 'linus' of git://git.kernel.org/pub/scm/linux/kernel/git/herbert...Linus Torvalds2021-04-261-8/+22
|\
| * fscrypt: relax Kconfig dependencies for crypto API algorithmsArd Biesheuvel2021-04-221-8/+22
* | block: rename BIO_MAX_PAGES to BIO_MAX_VECSChristoph Hellwig2021-03-111-3/+3
|/
* inode: make init and permission helpers idmapped mount awareChristian Brauner2021-01-241-1/+1
* Merge tag 'f2fs-for-5.11-rc1' of git://git.kernel.org/pub/scm/linux/kernel/gi...Linus Torvalds2020-12-173-6/+0
|\
| * fscrypt: Have filesystems handle their d_opsDaniel Rosenberg2020-12-023-6/+0
* | Merge branch 'linus' of git://git.kernel.org/pub/scm/linux/kernel/git/herbert...Linus Torvalds2020-12-142-2/+2
|\ \
| * | crypto: sha - split sha.h into sha1.h and sha2.hEric Biggers2020-11-202-2/+2
| |/
* | fscrypt: allow deleting files with unsupported encryption policyEric Biggers2020-12-025-16/+41
* | fscrypt: unexport fscrypt_get_encryption_info()Eric Biggers2020-12-022-1/+2
* | fscrypt: move fscrypt_require_key() to fscrypt_private.hEric Biggers2020-12-021-0/+26
* | fscrypt: move body of fscrypt_prepare_setattr() out-of-lineEric Biggers2020-12-021-0/+8
* | fscrypt: introduce fscrypt_prepare_readdir()Eric Biggers2020-12-021-0/+6
* | fscrypt: simplify master key lockingEric Biggers2020-11-244-34/+21
* | fscrypt: remove unnecessary calls to fscrypt_require_key()Eric Biggers2020-11-241-18/+8
* | fscrypt: add fscrypt_is_nokey_name()Eric Biggers2020-11-241-2/+3
* | fscrypt: remove kernel-internal constants from UAPI headerEric Biggers2020-11-164-6/+14
* | fscrypt: fix inline encryption not used on new filesEric Biggers2020-11-111-1/+1
* | fscrypt: remove reachable WARN in fscrypt_setup_iv_ino_lblk_32_key()Eric Biggers2020-11-061-3/+1
|/
* fscrypt: export fscrypt_d_revalidate()Eric Biggers2020-09-281-1/+2
* fscrypt: rename DCACHE_ENCRYPTED_NAME to DCACHE_NOKEY_NAMEEric Biggers2020-09-232-5/+4
* fscrypt: don't call no-key names "ciphertext names"Eric Biggers2020-09-232-11/+11
* fscrypt: use sha256() instead of open codingEric Biggers2020-09-221-16/+7
* fscrypt: make fscrypt_set_test_dummy_encryption() take a 'const char *'Eric Biggers2020-09-221-14/+6
* fscrypt: handle test_dummy_encryption in more logical wayEric Biggers2020-09-225-93/+100
* fscrypt: move fscrypt_prepare_symlink() out-of-lineEric Biggers2020-09-221-4/+35
* fscrypt: make "#define fscrypt_policy" user-onlyEric Biggers2020-09-221-1/+0
* fscrypt: stop pretending that key setup is nofs-safeEric Biggers2020-09-223-10/+7
* fscrypt: require that fscrypt_encrypt_symlink() already has keyEric Biggers2020-09-221-3/+7
* fscrypt: remove fscrypt_inherit_context()Eric Biggers2020-09-221-37/+0
* fscrypt: adjust logging for in-creation inodesEric Biggers2020-09-222-3/+10
* fscrypt: add fscrypt_prepare_new_inode() and fscrypt_set_context()Eric Biggers2020-09-223-54/+206
* fscrypt: restrict IV_INO_LBLK_32 to ino_bits <= 32Eric Biggers2020-09-071-2/+7
* fscrypt: drop unused inode argument from fscrypt_fname_alloc_bufferJeff Layton2020-09-072-5/+2
* mm, treewide: rename kzfree() to kfree_sensitive()Waiman Long2020-08-073-7/+8
* fscrypt: don't load ->i_crypt_info before it's known to be validEric Biggers2020-07-301-1/+2
* fscrypt: use smp_load_acquire() for ->i_crypt_infoEric Biggers2020-07-212-3/+13
* fscrypt: use smp_load_acquire() for ->s_master_keysEric Biggers2020-07-211-3/+12
* fscrypt: use smp_load_acquire() for fscrypt_prepared_keyEric Biggers2020-07-213-10/+17
* fscrypt: switch fscrypt_do_sha256() to use the SHA-256 libraryEric Biggers2020-07-212-32/+11
* fscrypt: restrict IV_INO_LBLK_* to AES-256-XTSEric Biggers2020-07-211-0/+14
* fscrypt: rename FS_KEY_DERIVATION_NONCE_SIZEEric Biggers2020-07-205-14/+13
* fscrypt: add comments that describe the HKDF info stringsEric Biggers2020-07-201-7/+7
* fscrypt: add inline encryption supportSatya Tangirala2020-07-0810-47/+588
* Merge tag 'fscrypt-for-linus' of git://git.kernel.org/pub/scm/fs/fscrypt/fscryptLinus Torvalds2020-06-017-164/+444
|\
| * fscrypt: add support for IV_INO_LBLK_32 policiesEric Biggers2020-05-195-41/+126