Y
Hacker News
new
|
ask
|
show
|
jobs
by
tptacek
164 days ago
The Venn diagram of "not a programmer" and "can safely use Ed25519" is two non-overlapping circles.
3 comments
PunchyHamster
164 days ago
"this app needs me to generate a key and point to it in config" is plenty of overlap
link
Retr0id
164 days ago
If you just want a raw ed25519 private key then `head -c32 /dev/urandom` does the job. But usually you want a DER/PEM wrapper or similar, which the openssl cli tools handle nicely.
link
kfreds
164 days ago
I don't consider myself a programmer and I can use Ed25519 safely. I do however understand computing fairly well.
link
Retr0id
164 days ago
I consider myself a programmer and ed25519-understander, but the idea of using it directly within a shell script terrifies me.
link
alexjurkiewicz
164 days ago
Simply combine this tool with `openssl enc` and your shell script is as secure as any shell script could be
link