How To Disable The TPM Under Linux

Alexzee

Silver Member
Silver Supporter
Joined
Jun 1, 2019
Messages
5,115
Reaction score
3,121
Credits
32,755
A short read on dealing with the TPM module and a special thanks to our member @osprey.

 


maybe I am just dumb but what exactly is the purpose of TPM. yes I have dealt with but what is the purpose of it. What is it meant to do that helps us?
 
yes I have dealt with but what is the purpose of it. What is it meant to do that helps us?

It helps keep you safe from malware on a hardware level, such as rootkits.

TPM itself is a great concept. I've never had an issue with it but I don't deny that other people have. TPM2 is even more impressive. It's good stuff, I think.

Properly configured, it can stop your system from running unsigned code. (Linux distros are happily signed, which is how we use EFI booting.)

It's not infallible. There's a new attack called LogoFail which you probably haven't seen yet. That one's gonna be drastic if it gets legs. Basically, all the boot stuff is signed - except some bits, like the logo. Attackers have figured out how to make an evil logo and do stuff to the pre-boot environment. While it's still in POC stage, it means throwing your hardware away. A few OEMs use a signed logo, so those are safe.
 
It helps keep you safe from malware on a hardware level, such as rootkits.

TPM itself is a great concept. I've never had an issue with it but I don't deny that other people have. TPM2 is even more impressive. It's good stuff, I think.

Properly configured, it can stop your system from running unsigned code. (Linux distros are happily signed, which is how we use EFI booting.)

It's not infallible. There's a new attack called LogoFail which you probably haven't seen yet. That one's gonna be drastic if it gets legs. Basically, all the boot stuff is signed - except some bits, like the logo. Attackers have figured out how to make an evil logo and do stuff to the pre-boot environment. While it's still in POC stage, it means throwing your hardware away. A few OEMs use a signed logo, so those are safe.
I have heard of the bios and logo attacks, but not seen them personally. Sad that people feel the need to destroy.

What I guess I should ask is how does TPM work? is it something we really need or is it another way to make life tough for the users and devs? but no real help except for windows?
 
I'd say it's needed in modernity. While I can probably explain it at a layman's level, Wikipedia will do a better job.
 
Last edited:
After spending hours trying to solve a sudden boot issue on various forums:

On trying to boot:
"Couldn't Create Moklist: Volume Full , Something serious has gone wrong,"

I tried all the solutions offered on most of the forums and by AI: Disabling Secure Boot, restoring the signatures to the default, going into "setup mode" (to remove all saved signatures), delete the "banned" signatures (or whatever they are called), plus many other.

Eventually, I found many of the same solutions on an Asus forum, but the they added to "Disable TPM as the "key" step. Back into my bios, disabled TPM, and the computer boots again.

Not a believer in Microsoft pushed "Security" - does more harm than good in most cases.
 
Not a believer in Microsoft pushed "Security" - does more harm than good in most cases.

TPM is a good thing. Microsoft using it doesn't make it bad. It's a secure place to store important keys, which is advantageous if you want to do things like go with full-disk encryption.

That said, it's not really necessary. I guess there are additional benefits, like in a corporate environment where you need to ensure that the only devices that connect to your infrastructure are authorized to do so.

I'll point out that there are many, many millions of devices using TPM without any issues at all. There are more people using TPM 2.0 than there are desktop Linux users. Plus, we were doing full-disk encryption before TPM arrived. Now it's just more difficult to intercept those keys; some say it's nearly impossible. So far, at least as far as the public is concerned, they have yet to break it.

Anyhow...

As of yet, I've not had a single problem with the TPM and Linux combo.

I'm not suggesting that you didn't have a problem. I'm sure you did. I'm just sharing that it hasn't made any meaningful difference at my end. I don't even use disk encryption of any kind.
 
I don't use encryption. I simply flashed a thumb drive, then shut down my main computer. I booted the flash drive in my laptop, worked fine. Tried to boot up the main computer and got the message above.

As I said, I tried all the suggestions from other sites about how easy it was to fix, just turn off Secure Boot, or clear out space by deleting the unnecessary signatures. Followed all those suggestions, still received the same message no matter how I tried to boot. Eventually found the suggestion to disable TPM, and as soon as I did, I can now boot.

TPM hasn't done me any good, and obviously others as well. I'll leave it off. Oh, I think Microsoft forcing it is the bad thing.
 
Oh, I think Microsoft forcing it is the bad thing.

I agree, but there are a lot of MSFT decisions that I don't agree with.
 
TPM has been around for a few years...unless you're using windoze I wouldn't worry about it...just more m$ BS.
1777763098225.gif
 
[open-webUI] - Qwen 2.5

Understanding TPM: What It Is, What TPM 2.0 Adds, and Whether You Need It​

Introduction​

If you have spent any time in the Linux security space, you have probably encountered references to TPM -- the Trusted Platform Module. It shows up in conversations about full disk encryption, secure boot, measured boot, remote attestation, and more recently as the hardware requirement that excluded a lot of older machines from Windows 11. But what does it actually do? Why does it exist? And as a Linux administrator, do you need to care about it?
This article walks through the purpose of TPM, what the 2.0 revision changed, and the practical consequences of enabling or disabling it on a Linux system. I used Claude (Anthropic's AI assistant) as a starting point for research and structure, then refined and verified the content against current Linux tooling and TCG documentation.

What Problem TPM Solves​

To understand TPM, you first have to understand the problem it was designed to address. Software-based security has a fundamental weakness: if an attacker compromises the operating system -- or worse, the firmware -- they own everything that software is protecting. A password stored in a file, a private key in a software keystore, an encryption secret held in RAM -- all of these are accessible to code running at sufficient privilege. Software cannot fully protect itself from software.
TPM is a response to that limitation. It is a dedicated hardware component -- either a discrete chip soldered to the motherboard or a firmware-based implementation running in isolated processor state -- whose job is to perform cryptographic operations in an environment isolated from the main CPU and operating system. The keys it protects never leave the TPM in plaintext. The measurements it takes of your boot process are stored in tamper-evident registers that software cannot falsify after the fact.
The concept emerged from the Trusted Computing Group (TCG), a consortium of technology companies that published the first TPM specification in 2003. The goal was to establish a hardware root of trust -- a foundation of verified, tamper-resistant state that the rest of the system could build on.

Core TPM Functions​

TPM provides several distinct capabilities worth understanding individually before looking at how they combine in practice.

Secure Key Storage​

TPM can generate and store cryptographic keys internally. The private half of an asymmetric key pair generated inside the TPM is never exposed outside the chip in plaintext. When you need to sign or decrypt something using that key, you pass the data to the TPM, the operation happens inside the chip, and only the result comes back out. An attacker who compromises your OS never gets the key material itself.
Keys can also be created outside the TPM and then wrapped -- encrypted by a TPM-internal key -- for storage on disk. This allows for larger key stores than the chip's limited internal storage would support, while still depending on the TPM to unwrap them on demand.

Platform Configuration Registers​

Platform Configuration Registers, commonly called PCRs, are the feature most central to what makes TPM architecturally interesting. A TPM typically exposes 24 PCRs, each holding a hash value. The defining characteristic of a PCR is that you cannot write an arbitrary value to it. You can only extend it.
Extending a PCR means: take the current PCR value, concatenate it with the new measurement you want to record, hash the result, and store that new hash as the PCR value. This is a one-way ratchet. Once a value has been extended into a PCR, you cannot remove it or reverse the operation within the current boot session. The only way to reset PCRs to their initial all-zeros state is a full system reset.
During the boot process, each stage measures the next stage before handing off execution. The firmware measures the bootloader. The bootloader measures the kernel. Each measurement is extended into the appropriate PCR. By the time the OS is running, the PCRs contain a cryptographic summary of the entire boot chain. If anything in that chain was modified -- firmware, bootloader, kernel image, kernel command line -- the resulting PCR values will differ from what they were on a clean boot.
Standard PCR assignments under the TCG specification are roughly as follows:
PCRContents
0Core firmware executable code (UEFI firmware)
1Firmware configuration and data
2Option ROM code (expansion cards, NIC firmware, etc.)
3Option ROM configuration and data
4Boot manager code (UEFI boot manager or MBR)
5Boot manager configuration and GPT partition table
6State transitions and wake events
7Secure Boot state and policy (the certificate database)
8-9GRUB-controlled measurements when GRUB has TPM support
11systemd-boot and unified kernel image measurements
12Kernel command line and initrd (systemd-boot managed)
14MOK (Machine Owner Key) list used by shim
15-16Available for OS or application use
PCR 7 is worth noting specifically. It reflects the Secure Boot configuration -- which signing certificates are trusted, whether Secure Boot is enabled, and what policy is in effect. Many LUKS-over-TPM setups bind to PCR 7 in addition to PCRs covering the boot chain, so that disabling Secure Boot in firmware causes the sealed secret to be inaccessible until it is re-enrolled.

Sealed Storage​

Sealed storage combines key storage with PCR state. You instruct the TPM to encrypt a secret such that it can only be decrypted if the PCRs are in a specific state at the time of the decrypt request. The sealed blob is useless unless the system booted in exactly the expected configuration.
This is the mechanism behind TPM-backed full disk encryption. The LUKS volume key is sealed to a set of PCR values representing a known-good boot. On each subsequent boot, the TPM will only release the key if those PCRs match. If someone pulls your drive and puts it in another machine, the PCRs will not match. If someone modifies your bootloader, the PCRs will not match. The sealed key stays sealed.

Remote Attestation​

The TPM can produce a signed quote of its current PCR values, using a key whose public half is certified by the TPM manufacturer (the Endorsement Key). A remote party who trusts the manufacturer can request this quote, verify the signature chain, and know with high confidence what boot state the remote machine is actually in -- not just what the machine claims about itself.
This is the foundation of remote attestation systems like Keylime, which is packaged in both Fedora and RHEL. In high-security environments -- DoD, NERC-CIP regulated infrastructure, financial systems -- attestation lets you verify the integrity of remote nodes before trusting them with sensitive workloads or credentials.

Hardware Random Number Generation​

TPM includes a hardware random number generator. This is less glamorous than the other features but genuinely useful. On Linux it feeds into the kernel entropy pool and is accessible via /dev/hwrng. Systems that need strong randomness early in boot -- before the kernel has gathered entropy from hardware events -- benefit from having a hardware RNG available immediately.

What TPM 2.0 Changes​

TPM 1.2 was the dominant version from roughly 2003 through the early 2010s. TPM 2.0 was finalized in 2014 and became the de facto standard for new hardware within a few years. The differences are significant enough that the two versions are not software-compatible -- the command interfaces, data structures, and authorization models are entirely different.

Algorithm Agility​

TPM 1.2 is locked to SHA-1 for PCR measurements and RSA-1024 or RSA-2048 for asymmetric operations. SHA-1 is cryptographically broken for collision resistance, which means TPM 1.2's PCR measurements rely on a hash function that should no longer be trusted for security-critical applications. There is no upgrade path within the 1.2 spec.
TPM 2.0 is algorithm-agile. The specification defines algorithm identifiers as parameters rather than hardcoded choices, and the chip can support multiple algorithms simultaneously. In practice, a TPM 2.0 device will support SHA-256, SHA-384, and often SHA-512 for hashing; RSA-2048 or RSA-4096 for asymmetric operations; and ECC with NIST P-256 or P-384 curves. AES-128 and AES-256 are supported for symmetric operations.
Critically, TPM 2.0 can maintain multiple PCR banks simultaneously -- one for SHA-1 (for backward compatibility) and one for SHA-256 (for actual security). Linux tools default to the SHA-256 bank. You can verify which banks your TPM supports and which are active with:
Code:
tpm2_getcap pcrs

Multiple Key Hierarchies​

TPM 1.2 has a single root key called the Storage Root Key (SRK) and a separate Endorsement Key (EK). All user keys derive from the SRK. This creates management problems in multi-tenant or enterprise scenarios where you want to separate keys for different purposes or reset some without affecting others.
TPM 2.0 introduces four separate hierarchies:
HierarchyPurpose
PlatformControlled by platform firmware; used for firmware-level attestation
StorageGeneral-purpose hierarchy for OS and application use
EndorsementContains the manufacturer-provisioned EK used for attestation
NullEphemeral keys cleared on every reset
Each hierarchy has its own authorization secret and can be independently managed or disabled. The storage hierarchy can be cleared by the OS without touching the platform or endorsement hierarchies, which matters when transferring machine ownership or resetting user keys without losing manufacturer attestation capability.

Enhanced Authorization​

TPM 1.2 authorization is password-based. If you know the password for an object, you can use it. That is the entire model.
TPM 2.0 replaces this with a rich policy engine. Policies can express conditions like:
  • Authorize only if PCRs match these specific values
  • Authorize only if the caller presents a valid signature from this key
  • Authorize only during a specific time window
  • Require both a PCR match AND a password (logical AND)
  • Require either biometric OR a password (logical OR)
  • Authorize only if Secure Boot is enabled (PCR 7 check)
These policies are constructed as a directed acyclic graph of conditions and stored as a hash in the key's metadata. This is what allows systemd-cryptenroll to create sophisticated sealing policies like "release this key if PCRs 0, 7, and 11 match, and optionally also require a PIN."

Dictionary Attack Lockout​

TPM 2.0 includes built-in dictionary attack protection. After a configurable number of failed authorization attempts, the TPM enters a lockout state and refuses further operations for an increasing lockout period. This prevents brute-force attacks against TPM-protected keys even with physical machine access.
Lockout parameters are configurable but typically default to around 32 failures triggering a lockout that doubles in duration with each subsequent failure. Inspect the current lockout state with:
Code:
tpm2_getcap properties-variable

Firmware TPM​

TPM 2.0 introduced the concept of firmware TPM (fTPM), which implements the TPM specification inside a Trusted Execution Environment on the main processor rather than in a discrete chip. AMD's fTPM runs in the AMD Security Processor. Intel's PTT (Platform Trust Technology) runs in the Management Engine.
Firmware TPMs are convenient -- no additional chip required, and they appear to the OS exactly like a discrete TPM. They are also somewhat controversial from a pure security standpoint, because the isolation boundary is processor firmware rather than a physically separate chip. For most use cases the practical difference is negligible, but for high-assurance environments a discrete TPM is generally preferred.
You can determine whether you have a discrete or firmware TPM with:
Code:
tpm2_getcap properties-fixed | grep -i manufacturer

The Linux TPM Stack​

Linux has had TPM support for a long time, but the tooling has matured considerably in recent years. The relevant components are:
Kernel TPM driver exposes the device as /dev/tpm0 (raw, exclusive access) and /dev/tpmrm0 (resource manager, supports concurrent access). Nearly all userspace tools should use /dev/tpmrm0.
tpm2-tools provides a comprehensive suite of command-line utilities for interacting with TPM 2.0 directly. These are invaluable for understanding what your TPM is doing and for scripting TPM operations.
tpm2-tss (TCG's TPM2 Software Stack) provides the ESAPI and FAPI interfaces that higher-level software uses to talk to the TPM without dealing with the raw command protocol.
tpm2-abrmd is a userspace resource manager that was previously necessary for concurrent TPM access. On modern kernels with /dev/tpmrm0 available, abrmd is generally no longer required, though some older software still expects it.
systemd has deep TPM 2.0 integration via systemd-cryptenroll (for LUKS), systemd-measure (for unified kernel image measurement), and systemd-pcrlock (for managing PCR-based policies). This integration is the primary reason TPM 2.0 is now practically relevant for desktop and workstation Linux users, not just enterprise infrastructure.

TPM-Backed LUKS Encryption​

The most practically impactful use of TPM on a typical Linux workstation or server is binding a LUKS volume key to TPM PCR state via systemd-cryptenroll. This deserves detail because it is both genuinely useful and commonly misunderstood.
The enrollment command looks like this:
Code:
systemd-cryptenroll --tpm2-device=auto --tpm2-pcrs=0+7+11 /dev/sdX
This seals the LUKS volume key to PCRs 0 (firmware), 7 (Secure Boot state), and 11 (unified kernel image or systemd-boot measurement). On subsequent boots, /etc/crypttab with the tpm2-device=auto option causes systemd to ask the TPM to unseal the key automatically. If the PCRs match, the volume unlocks without a passphrase prompt. If they do not match -- because firmware was updated, Secure Boot was disabled, or the bootloader was tampered with -- the TPM refuses to release the key and the system falls back to prompting for the LUKS passphrase.
This is not a replacement for a LUKS passphrase. Always retain a passphrase-based recovery slot. Firmware updates in particular will change PCR 0, breaking the seal. The re-enrollment procedure after a legitimate firmware update is:
Code:
systemd-cryptenroll --wipe-slot=tpm2 /dev/sdX
systemd-cryptenroll --tpm2-device=auto --tpm2-pcrs=0+7+11 /dev/sdX
You can also add a PIN requirement to the TPM unlock, which provides a solid balance: the PIN alone cannot unlock the drive (it also needs the correct PCR state), and the TPM alone cannot unlock it without the PIN:
Code:
systemd-cryptenroll --tpm2-device=auto --tpm2-pcrs=0+7+11 --tpm2-with-pin=yes /dev/sdX
To inspect what is currently enrolled on a LUKS device:
Code:
systemd-cryptenroll /dev/sdX

Checking TPM Status on Linux​

Before doing anything else, verify that your TPM is visible and functional:
Code:
# Check if TPM device exists
ls -la /dev/tpm*

# Check kernel TPM support
dmesg | grep -i tpm

# Get basic TPM properties
tpm2_getcap properties-fixed

# Check PCR banks and current values
tpm2_pcrread

# Verify TPM 2.0 specifically
tpm2_getcap properties-fixed | grep TPM_PT_FAMILY_INDICATOR

# systemd's view of the TPM
systemd-analyze tpm2-identity

Do You Need TPM Enabled?​

The honest answer is: it depends entirely on what you are doing with your system.
You need TPM enabled if you are using TPM-backed LUKS encryption via systemd-cryptenroll. Without TPM, enrollment fails immediately. If you have already enrolled and then disable TPM in firmware, the system cannot unseal the volume key and will prompt for the LUKS passphrase instead -- or fail to boot entirely if no passphrase slot is enrolled.
You need TPM enabled if you are running remote attestation with Keylime or similar tooling. The entire model depends on the TPM being present and functional.
You need TPM enabled if you are doing measured boot with PCR-based integrity verification of your boot chain.
You need TPM enabled if you are using tpm2-pkcs11 to store SSH keys, code signing keys, or other credentials inside the TPM.
You do not need TPM enabled if you are not using any of the above features. A system running LUKS with a passphrase, no remote attestation, and no TPM-backed credentials will operate identically whether TPM is enabled or disabled in firmware. The TPM being enabled costs nothing -- negligible power, no performance impact -- so there is little reason to disable it even if you are not actively using it.
The one scenario where disabling TPM is deliberate is when preparing a system for transfer or repurposing and you want to ensure that any TPM-sealed secrets are inaccessible. Clearing the TPM (in firmware or via tpm2_clear) destroys all keys in the storage hierarchy and makes any sealed blobs permanently unrecoverable.

Consequences of Disabling TPM​

If TPM is currently in use and you disable it in firmware, several things break immediately:
What BreaksImpact
TPM-backed LUKS auto-unlockFalls back to passphrase prompt, or fails to boot if no passphrase slot enrolled
tpm2-pkcs11 tokensSSH keys, signing keys, and any TPM-stored credentials become inaccessible
Keylime / remote attestationAgent fails to start; remote verifier distrusts the node
systemd-cryptenroll / systemd-measureErrors during boot
Software checking for /dev/tpm*Fails or falls back to software-only operation
On a system not using any of these features, disabling TPM in firmware has no visible effect on the running OS. The /dev/tpm* devices disappear, tpm2-tools commands stop working, and that is the end of it. Nothing else changes.

A Note on Virtualization​

KVM/QEMU supports emulated TPM 2.0 via swtpm, the software TPM emulator. This allows VMs to use TPM-dependent features without requiring physical TPM passthrough. The setup involves running swtpm as a per-VM process and configuring QEMU to attach to it via a socket.
A minimal libvirt configuration for TPM 2.0 in a VM:
Code:
<tpm model='tpm-crb'>
  <backend type='emulator' version='2.0'/>
</tpm>
With recent versions of libvirt and virt-manager, swtpm setup is largely automated. The emulated TPM persists its state in a per-VM directory, so PCR measurements and sealed keys survive VM reboots as expected.
Note that an emulated TPM does not provide the hardware isolation guarantees of a real TPM. Secrets stored in swtpm are ultimately protected by the host OS, not by a separate hardware boundary. For development, testing, and feature evaluation it is entirely adequate. For production security in multi-tenant environments, the distinction matters.

Summary​

TPM is a hardware root of trust that provides tamper-resistant key storage, boot chain measurement via PCRs, sealed storage tied to system state, and the foundation for remote attestation. TPM 2.0 replaced the older 1.2 standard with a substantially stronger design: algorithm agility moving away from broken SHA-1, multiple key hierarchies for better management, a rich policy engine replacing simple password authorization, and built-in dictionary attack protection.
On Linux, the most immediately practical use is TPM-backed LUKS encryption via systemd-cryptenroll, which provides automatic volume unlock tied to boot integrity verification. More advanced use cases include remote attestation with Keylime, TPM-backed PKCS#11 key storage, and measured boot for integrity monitoring.
Whether you need TPM enabled depends on whether you are using these features. If you are, disabling TPM breaks them immediately -- and potentially in ways that are difficult to recover from if you have not maintained a passphrase-based fallback. If you are not using any TPM-dependent features, the practical impact of disabling it is zero, but there is equally no good reason to do so since it costs nothing to leave running.
The tooling available in Fedora, RHEL, Rocky Linux, and most other major distributions is mature and well-integrated. If you have a TPM 2.0 chip and are running LUKS, it is worth spending an hour with systemd-cryptenroll to understand what it offers. The combination of hardware-verified boot integrity and automatic volume unlock is one of the better security improvements available on modern Linux without significant operational complexity.
 
I don't use encryption. I simply flashed a thumb drive, then shut down my main computer. I booted the flash drive in my laptop, worked fine. Tried to boot up the main computer and got the message above.

As I said, I tried all the suggestions from other sites about how easy it was to fix, just turn off Secure Boot, or clear out space by deleting the unnecessary signatures. Followed all those suggestions, still received the same message no matter how I tried to boot. Eventually found the suggestion to disable TPM, and as soon as I did, I can now boot.

TPM hasn't done me any good, and obviously others as well. I'll leave it off. Oh, I think Microsoft forcing it is the bad thing.
I'm glad that the article I wrote helped you.
I can only imagine how much of a headache this was for you.

I'm surprised that the article is still there as Wix informed me last year that they would be removing everything.
 
A TPM2 does not cause any problems if it is not explicitly configured in an OS (e.g., via systemd-cryptenroll). If you don’t use it, it simply remains unused. It cannot cause boot problems if no services are actually accessing it.

I use TPM2 every day. My encryption tool "age", use either the TPM or a YubiKey. Even my infrared login credentials are LUKS-encrypted, and I unlock them at boot time via PIN using the TPM2.

It’s often claimed that the TPM has backdoors from Microsoft. That’s nonsense; the TPM has nothing to do with Microsoft. It’s a separate microprocessor with its own memory and crypto processor, which provides a massive security boost.
 
TPM...
1777859418164.gif
especially if you want to take a Drive out of one computer and put it in another...sounds very m$ to me,
 
Half-truths and myths that cause more confusion than anything else. Many of the claims made there are simply nonsense. First of all... What exactly does he mean by “lost portability” in relation to LUKS slots? Probably the biggest mistake in the video is the idea that TPM ruins Linux portability. Anyone familiar with LUKS2 knows that it offers multiple key slots. You can (and definitely should) use Slot 0 for the TPM2 binding (simply with a PIN) and reserve Slot 1 for a classic passphrase or a recovery key. If the motherboard fails, you simply remove the hard drive, connect it to a new computer, and use the password slot to boot. The data is not lost. The claim that TPM “locks you in” merely reflects a lack of understanding of the basic architecture of systemd-cryptenroll or cryptsetup.
 
I'm actually discussing this very topic in a German forum right now. It’s quite curious how persistent these fairy tales can be. Youtube is great for cake recipes and music, but it’s also a massive source of nonsense.
 
I always disable TPM on all machines I am using.
There is no need for it to be enabled unless you specifically using features in it, like storing keys for full disk encryption or ssh - that's for advanced users, because recovery of the keys can be very problematic if PC hardware fails at some point.
I use Full Disk Encryption on all my laptops, but I keep TPM disabled anyway.
 
Recently Chromium introduced a new technique called DBSC https://developer.chrome.com/docs/web-platform/device-bound-session-credentials
It uses the TPM to bind web session keys to the hardware, rendering cookie hijacking attacks useless. They started a W3C draft to make it a web standard sometime as well.

DBSC have a shortcoming, if you require the same access from different hardware devices. So, they can't (be used to) fully replace other authentication credentials, but they can make authenticating sessions transient, automatically secure for the daily hardware you use.

I think a lot of resistance stems from the transient nature of the TPM. Whatever they are used for, the user only sees errors once something fails. They don't get acknowledgment when a TPM register is used or accessed. Nothing of it ever appears in a GUI, not even a basic indicators like "Secure Boot active", or "LUKS slot 2 unlocked via TPM" are available, unless you know how to parse log files for it.

The DBSC W3C draft even names "silent mediation" as explicit goal and contrary to interactive authentication via FIDO2. Like cookies, it is not designed to be transparent, the user is supposed to be not bothered - and is not asked whether they want to be informed. That's the crucial point that alienates TPM applications for most.
 


Follow Linux.org

Staff online

Members online


Top