-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #175 from yuvipanda/pbu
Add a note about the public key passed to `age`
- Loading branch information
Showing
1 changed file
with
9 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,6 +17,14 @@ This page describes how you can encrypt information and send it to us! | |
2. Run `age -e -r age1mmx8hfzalmn3tmpryrfvcud5vyfakxdfqe683r40qkr6pjd2ag6s72cat5 -a` on | ||
your terminal, and paste the contents of the message you want to encrypt. Press enter, | ||
then `Ctrl-D`. Make sure to copy this exactly! | ||
|
||
```{note} | ||
The parameter passed to `-r` (ag1mmx....) is the public key used to *encrypt* the message, | ||
which we can decrypt with our private key. Providing it as part of the command makes it | ||
easier to distribute the public key, as otherwise users would have to download and manage | ||
a public key file. | ||
``` | ||
|
||
3. `age` will print the encrypted version of your message on your terminal, and it'll look | ||
something like this: | ||
|
||
|
@@ -31,4 +39,4 @@ This page describes how you can encrypt information and send it to us! | |
``` | ||
|
||
4. Copy the encrypted version of the message and include it in the message to `[email protected]`. | ||
All 2i2c engineers will be able to decrypt the message! | ||
All 2i2c engineers will be able to decrypt the message! |