How could one design a secure and “self-destructing” email?

后端 未结 8 1743
野的像风
野的像风 2021-01-14 04:31

As most of you know, email is very insecure. Even with a SSL-secured connection between the client and the server that sends an email, the message itself will be in plaintex

8条回答
  •  轮回少年
    2021-01-14 05:15

    If your environment allows for it, you could use the trusted boot environment to ensure that a trusted boot loader has been used to boot a trusted kernel, which could verify that a trusted email client is being used to receive the email before sending it. See remote attestation.

    It would be the responsibility of the email client to responsibly delete the email in a timely fashion -- perhaps relying on in-memory store only and requesting memory that cannot be swapped to disk.

    Of course, bugs can happen in programs, but this mechanism could ensure there is no intentional pathway towards storing the email.

提交回复
热议问题