linux-security-module.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2018-11-13 18:38:24 to 2018-11-20 23:36:21 UTC [more...]

[PATCH security-next v5 00/30] LSM: Explict ordering
 2018-11-20 23:36 UTC  (15+ messages)

[PATCH v5] tpm: add support for partial reads
 2018-11-20 23:13 UTC  (7+ messages)

Documenting the proposal for TPM 2.0 security in the face of bus interposer attacks
 2018-11-20 23:13 UTC  (19+ messages)

[PATCH v9 00/17] Removed nested TPM operations
 2018-11-20 22:50 UTC  (36+ messages)
` [PATCH v9 01/17] tpm: use tpm_buf in tpm_transmit_cmd() as the IO parameter
` [PATCH v9 02/17] tpm: fix invalid return value in pubek_show()
` [PATCH v9 03/17] tpm: return 0 from pcrs_show() when tpm1_pcr_read() fails
` [PATCH v9 04/17] tpm: print tpm2_commit_space() error inside tpm2_commit_space()
` [PATCH v9 05/17] tpm: declare struct tpm_header
` [PATCH v9 06/17] tpm: access command header through struct in tpm_try_transmit()
` [PATCH v9 07/17] tpm: encapsulate tpm_dev_transmit()
` [PATCH v9 08/17] tpm: call tpm2_flush_space() on error in tpm_try_transmit()
` [PATCH v9 09/17] tpm: clean up tpm_try_transmit() error handling flow
` [PATCH v9 10/17] tpm: move tpm_validate_commmand() to tpm2-space.c
` [PATCH v9 11/17] tpm: move TPM space code out of tpm_transmit()
` [PATCH v9 12/17] tpm: remove @space from tpm_transmit()
` [PATCH v9 13/17] tpm: use tpm_try_get_ops() in tpm-sysfs.c
` [PATCH v9 14/17] tpm: remove TPM_TRANSMIT_UNLOCKED flag
` [PATCH v9 15/17] tpm: introduce tpm_chip_start() and tpm_chip_stop()
` [PATCH v9 16/17] tpm: take TPM chip power gating out of tpm_transmit()
` [PATCH v9 17/17] tpm: remove @flags from tpm_transmit()

[PATCH v5 00/10] x86/alternative: text_poke() fixes
 2018-11-20 18:52 UTC  (17+ messages)
` [PATCH v5 01/10] Fix "x86/alternatives: Lockdep-enforce text_mutex in text_poke*()"
` [PATCH v5 02/10] x86/jump_label: Use text_poke_early() during early init
` [PATCH v5 03/10] x86/mm: temporary mm struct
` [PATCH v5 04/10] fork: provide a function for copying init_mm
` [PATCH v5 05/10] x86/alternative: initializing temporary mm for patching
` [PATCH v5 06/10] x86/alternative: use temporary mm for text poking
` [PATCH v5 07/10] x86/kgdb: avoid redundant comparison of patched code
` [PATCH v5 08/10] x86: avoid W^X being broken during modules loading
` [PATCH v5 09/10] x86/jump-label: remove support for custom poker
` [PATCH v5 10/10] x86/alternative: remove the return value of text_poke_*()

[RFC v4 0/2] WhiteEgret LSM module
 2018-11-20  6:48 UTC  (4+ messages)

[PATCH 0/3] selftest/ima: fail kexec_load syscall
 2018-11-19 19:56 UTC  (4+ messages)
` [PATCH 1/3] ima: add error mesage to kexec_load
` [PATCH 2/3] selftests/ima: kexec_load syscall test
` [PATCH 3/3] x86/ima: retry detecting secure boot mode

[PATCH] LSM: add SafeSetID module that gates setid calls
 2018-11-19 18:54 UTC  (2+ messages)
` [PATCH] [PATCH] LSM: generalize flag passing to security_capable

[PATCH 1/2] tpm: rename data_pending to transmit_result
 2018-11-19 17:43 UTC  (9+ messages)
` [PATCH v4 2/2] tpm: add support for partial reads

[PATCH v5 0/7] tpm: retrieve digest size of unknown algorithms from TPM
 2018-11-19 16:07 UTC  (28+ messages)
` [PATCH v5 1/7] tpm: dynamically allocate the allocated_banks array
` [PATCH v5 2/7] tpm: remove definition of TPM2_ACTIVE_PCR_BANKS
` [PATCH v5 3/7] tpm: rename and export tpm2_digest and tpm2_algorithms
` [PATCH v5 4/7] tpm: modify tpm_pcr_read() definition to pass a TPM hash algorithm
` [PATCH v5 5/7] tpm: retrieve digest size of unknown algorithms with PCR read
` [PATCH v5 6/7] tpm: ensure that the output of PCR read contains the correct digest size
` [PATCH v5 7/7] tpm: pass an array of tpm_bank_list structures to tpm_pcr_extend()

[PATCH v8 00/17] Removed nested TPM operations
 2018-11-19 12:57 UTC  (27+ messages)
` [PATCH v8 01/17] tpm: use tpm_buf in tpm_transmit_cmd() as the IO parameter
` [PATCH v8 02/17] tpm: fix invalid return value in pubek_show()
` [PATCH v8 03/17] tpm: return 0 from pcrs_show() when tpm1_pcr_read() fails
` [PATCH v8 04/17] tpm: print tpm2_commit_space() error inside tpm2_commit_space()
` [PATCH v8 05/17] tpm: declare struct tpm_header
` [PATCH v8 06/17] tpm: access command header through struct in tpm_try_transmit()
` [PATCH v8 07/17] tpm: encapsulate tpm_dev_transmit()
` [PATCH v8 08/17] tpm: call tpm2_flush_space() on error in tpm_try_transmit()
` [PATCH v8 09/17] tpm: clean up tpm_try_transmit() error handling flow
` [PATCH v8 10/17] tpm: move tpm_validate_commmand() to tpm2-space.c
` [PATCH v8 11/17] tpm: move TPM space code out of tpm_transmit()
` [PATCH v8 12/17] tpm: remove @space from tpm_transmit()
` [PATCH v8 13/17] tpm: use tpm_try_get_ops() in tpm-sysfs.c
` [PATCH v8 14/17] tpm: remove TPM_TRANSMIT_UNLOCKED flag
` [PATCH v8 15/17] tpm: introduce tpm_chip_start() and tpm_chip_stop()
` [PATCH v8 16/17] tpm: take TPM chip power gating out of tpm_transmit()
` [PATCH v8 17/17] tpm: remove @flags from tpm_transmit()

[PATCH v8 00/14] Appended signatures support for IMA appraisal
 2018-11-16 20:07 UTC  (15+ messages)
` [PATCH v8 01/14] MODSIGN: Export module signature definitions
` [PATCH v8 02/14] PKCS#7: Refactor verify_pkcs7_signature() and add pkcs7_get_message_sig()
` [PATCH v8 03/14] PKCS#7: Introduce pkcs7_get_digest()
` [PATCH v8 04/14] integrity: Introduce struct evm_xattr
` [PATCH v8 05/14] integrity: Introduce integrity_keyring_from_id()
` [PATCH v8 06/14] integrity: Introduce asymmetric_sig_has_known_key()
` [PATCH v8 07/14] integrity: Select CONFIG_KEYS instead of depending on it
` [PATCH v8 08/14] ima: Introduce is_signed()
` [PATCH v8 09/14] ima: Export func_tokens
` [PATCH v8 10/14] ima: Add modsig appraise_type option for module-style appended signatures
` [PATCH v8 11/14] ima: Implement support "
` [PATCH v8 12/14] ima: Add new "d-sig" template field
` [PATCH v8 13/14] ima: Write modsig to the measurement list
` [PATCH v8 14/14] ima: Store the measurement again when appraising a modsig

[PATCH v7 00/17] Removed nested TPM operations
 2018-11-16 12:32 UTC  (17+ messages)
` [PATCH v7 12/17] tpm: remove @space from tpm_transmit()
` [PATCH v7 13/17] tpm: use tpm_try_get_ops() in tpm-sysfs.c
` [PATCH v7 14/17] tpm: remove TPM_TRANSMIT_UNLOCKED flag
` [PATCH v7 15/17] tpm: introduce tpm_chip_start() and tpm_chip_stop()
` [PATCH v7 16/17] tpm: take TPM chip power gating out of tpm_transmit()
` [PATCH v7 17/17] tpm: remove @flags from tpm_transmit()

[PATCH v3] tpm: add support for partial reads
 2018-11-16  1:33 UTC  (5+ messages)

[PATCH v2] tpm: add support for partial reads
 2018-11-15 20:40 UTC  (6+ messages)

[GIT PULL] SELinux fixes for v4.20 (#1)
 2018-11-15 17:30 UTC  (2+ messages)

[PATCH RESEND] KEYS: remove CONFIG_KEYS_COMPAT
 2018-11-15  0:52 UTC 

[GIT PULL] integrity: fixup for new struct public_key_signature encoding field
 2018-11-14 23:20 UTC  (2+ messages)

keyutils-1.6 released
 2018-11-14 18:00 UTC 

[RFC v1 PATCH 00/17] prmem: protected memory
 2018-11-13 19:35 UTC  (22+ messages)
` [PATCH 10/17] prmem: documentation


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).