• shadowtofu@discuss.tchncs.de
    link
    fedilink
    arrow-up
    20
    ·
    3 months ago

    One has to find the right balance between security and comfort, and this entirely depends on the threat model one has. Nowadays, I will always enable full-disk encryption on all of my devices, even if I then decide to store the keys in TPM and unlock the disk at boot.

    I have at least 5 half-broken HDDs sitting around, completely unencrypted, I have no idea if they still work, but they are surely full of private data that I would like to have purged. I fear mechanical destruction might be the only solution for some of them, but just wiping them manually is more effort than doing nothing, so I guess they will still be around for some time. And with SSDs, there is no reliableway delete all data.

    With encryption? Just delete the key and you are done.

    The threat model changes in the future? Easy, the data is already encrypted.

    • Logical@lemmy.world
      link
      fedilink
      arrow-up
      4
      ·
      3 months ago

      I have been trying to understand what it is that makes it impossible to reliably wipe an SSD, compared to an HDD. Why wouldn’t filling the drive with 0s work?

      • ThatOneGuy@musicworld.social
        link
        fedilink
        arrow-up
        9
        ·
        3 months ago

        @Logical @shadowtofu
        The SSD controller does not overwrite the old physical location (unlike HDD).

        It writes the new data to a different physical block.

        The old block becomes “stale” but still contains your original data until the SSD decides to erase it later.

        • Logical@lemmy.world
          link
          fedilink
          arrow-up
          5
          ·
          3 months ago

          But if I fill a drive with nonsense data, whether SSD or HDD, shouldn’t it be forced to write such data to all possible locations, thus overwriting the original data? Is am I misunderstanding something more fundamental about how this type of storage works?

          • ThatOneGuy@musicworld.social
            link
            fedilink
            arrow-up
            8
            ·
            3 months ago

            @Logical Filling an SSD with zeros only affects the logical address space visible to your OS—it doesn’t force the controller to erase every physical block. The old data remains in unmapped or retired areas until (or unless) the controller decides to erase it later, potentially allowing recovery with specialized tools. Some SSDs might even optimize by not physically writing zeros if they detect a full block of them, simply marking the space as erased without touching the hardware.

            • Logical@lemmy.world
              link
              fedilink
              arrow-up
              4
              ·
              3 months ago

              See what I’m still not getting though, is how there can still be unmapped or retired areas, if the drive has been filled with (meaningless) data? Let’s say it isn’t all zeros, but random data instead. Are there more physical blocks than is represented logically by the adress space exposed to the OS?