Skip to content
This repository was archived by the owner on May 23, 2022. It is now read-only.

Stronger deletion #654

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion modules/token-holders/pages/seed-donations.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -401,9 +401,19 @@ https://p5deo-6aaaa-aaaab-aaaxq-cai.raw.ic0.app
=== Clean up the air-gapped computer ===

If your claim was successful then do not forget to remove the
`.pem` file on the air-gapped computer:
`.pem` file on the air-gapped computer. Note that on many systems, deletion of a file does not delete the data but just the reference to the data, where here you want to ensure the key material is completely removed.

On Linux you can use :

[source,bash]
----
shred identity.pem
rm identity.pem
----

On MacOS you can use

[source,bash]
----
rm -Pvf identity.pem
----