aboutsummaryrefslogtreecommitdiff
path: root/security/keys
AgeCommit message (Expand)AuthorFilesLines
2018-10-26KEYS: Move trusted.h to include/keys [ver #2]Gravatar Denis Kenzior 2-137/+1
2018-10-26KEYS: trusted: Expose common functionality [ver #2]Gravatar Denis Kenzior 2-5/+21
2018-10-26KEYS: Provide keyctls to drive the new key type ops for asymmetric keys [ver #2]Gravatar David Howells 5-0/+405
2018-09-25Revert "uapi/linux/keyctl.h: don't use C++ reserved keyword as a struct membe...Gravatar Lubomir Rintel 1-1/+1
2018-09-04uapi/linux/keyctl.h: don't use C++ reserved keyword as a struct member nameGravatar Randy Dunlap 1-1/+1
2018-08-03Merge git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linuxGravatar Herbert Xu 1-2/+4
2018-07-09crypto: remove redundant type flags from tfm allocationGravatar Eric Biggers 1-1/+1
2018-06-26dh key: fix rounding up KDF output lengthGravatar Eric Biggers 1-2/+4
2018-06-12treewide: kmalloc() -> kmalloc_array()Gravatar Kees Cook 1-1/+1
2018-06-06Merge branch 'next-general' of git://git.kernel.org/pub/scm/linux/kernel/git/...Gravatar Linus Torvalds 2-23/+23
2018-05-16proc: introduce proc_create_seq{,_data}Gravatar Christoph Hellwig 1-32/+2
2018-05-11dh key: get rid of stack allocated array for zeroesGravatar Tycho Andersen 1-3/+3
2018-05-11dh key: get rid of stack allocated arrayGravatar Tycho Andersen 1-19/+10
2018-05-11big key: get rid of stack array allocationGravatar Tycho Andersen 1-1/+10
2018-04-05headers: untangle kmemleak.h from mm.hGravatar Randy Dunlap 1-0/+1
2018-02-22KEYS: Use individual pages in big_key for crypto buffersGravatar David Howells 1-23/+87
2018-01-31Merge branch 'next-tpm' of git://git.kernel.org/pub/scm/linux/kernel/git/jmor...Gravatar Linus Torvalds 1-18/+17
2018-01-08tpm: use struct tpm_chip for tpm_chip_find_get()Gravatar Jarkko Sakkinen 1-18/+17
2018-01-03Merge branch 'for-mingo' of git://git.kernel.org/pub/scm/linux/kernel/git/pau...Gravatar Ingo Molnar 1-7/+0
2017-12-08KEYS: reject NULL restriction string when type is specifiedGravatar Eric Biggers 1-14/+10
2017-12-08security: keys: remove redundant assignment to key_refGravatar Colin Ian King 1-1/+0
2017-12-08KEYS: add missing permission check for request_key() destinationGravatar Eric Biggers 1-9/+37
2017-12-08KEYS: remove unnecessary get/put of explicit dest_keyringGravatar Eric Biggers 1-2/+0
2017-12-04keyring: Remove now-redundant smp_read_barrier_depends()Gravatar Paul E. McKenney 1-7/+0
2017-11-25Merge branch 'timers-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/...Gravatar Linus Torvalds 1-2/+2
2017-11-21treewide: Switch DEFINE_TIMER callbacks to struct timer_list *Gravatar Kees Cook 1-2/+2
2017-11-15security: keys: Replace time_t with time64_t for struct key_preparsed_payloadGravatar Baolin Wang 1-4/+4
2017-11-15security: keys: Replace time_t/timespec with time64_tGravatar Baolin Wang 7-52/+43
2017-11-13Merge branch 'timers-core-for-linus' of git://git.kernel.org/pub/scm/linux/ke...Gravatar Linus Torvalds 1-1/+1
2017-11-02Merge tag 'spdx_identifiers-4.14-rc8' of git://git.kernel.org/pub/scm/linux/k...Gravatar Linus Torvalds 4-0/+4
2017-11-02License cleanup: add SPDX GPL-2.0 license identifier to files with no licenseGravatar Greg Kroah-Hartman 4-0/+4
2017-11-02KEYS: trusted: fix writing past end of buffer in trusted_read()Gravatar Eric Biggers 1-11/+12
2017-11-02KEYS: return full count in keyring_read() if buffer is too smallGravatar Eric Biggers 1-20/+19
2017-10-18KEYS: load key flags and expiry time atomically in proc_keys_show()Gravatar Eric Biggers 1-10/+14
2017-10-18KEYS: Load key expiry time atomically in keyring_search_iterator()Gravatar Eric Biggers 1-1/+3
2017-10-18KEYS: load key flags and expiry time atomically in key_validate()Gravatar Eric Biggers 1-3/+4
2017-10-18KEYS: don't let add_key() update an uninstantiated keyGravatar David Howells 1-0/+10
2017-10-18KEYS: Fix race between updating and finding a negative keyGravatar David Howells 12-39/+49
2017-10-18security/keys: BIG_KEY requires CONFIG_CRYPTOGravatar Arnd Bergmann 1-0/+1
2017-10-12KEYS: encrypted: fix dereference of NULL user_key_payloadGravatar Eric Biggers 1-0/+7
2017-10-05timer: Remove expires and data arguments from DEFINE_TIMERGravatar Kees Cook 1-1/+1
2017-09-25security/keys: rewrite all of big_key cryptoGravatar Jason A. Donenfeld 2-71/+60
2017-09-25security/keys: properly zero out sensitive key material in big_keyGravatar Jason A. Donenfeld 1-6/+6
2017-09-25KEYS: use kmemdup() in request_key_auth_new()Gravatar Eric Biggers 1-3/+2
2017-09-25KEYS: restrict /proc/keys by credentials at open timeGravatar Eric Biggers 1-6/+2
2017-09-25KEYS: reset parent each time before searching key_user_treeGravatar Eric Biggers 1-2/+2
2017-09-25KEYS: prevent KEYCTL_READ on negative keyGravatar Eric Biggers 1-0/+5
2017-09-25KEYS: prevent creating a different user's keyringsGravatar Eric Biggers 4-12/+21
2017-09-25KEYS: fix writing past end of user-supplied buffer in keyring_read()Gravatar Eric Biggers 1-9/+5
2017-09-25KEYS: fix key refcount leak in keyctl_read_key()Gravatar Eric Biggers 1-1/+1