-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
4 changed files
with
77 additions
and
27 deletions.
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 |
---|---|---|
@@ -1,9 +1,9 @@ | ||
#!/bin/bash | ||
ssh-keygen -t rsa -b 4096 -f id_rsa -N '' | ||
ssh-keygen -t ecdsa -f id_ecdsa -N '' | ||
ssh-keygen -t ed25519 -f id_ed25519 -N '' | ||
echo "Hello World" | tee rsa.txt | tee ecdsa.txt | tee ed25519.txt | ||
ssh-keygen -t rsa -b 4096 -f testkeys/id_rsa -N '' | ||
ssh-keygen -t ecdsa -f testkeys/id_ecdsa -N '' | ||
ssh-keygen -t ed25519 -f testkeys/id_ed25519 -N '' | ||
echo "Hello World" | tee testkeys/rsa.txt | tee testkeys/ecdsa.txt | tee testkeys/ed25519.txt | ||
|
||
ssh-keygen -Y sign -n hello@world -f id_rsa rsa.txt | ||
ssh-keygen -Y sign -n hello@world -f id_ecdsa ecdsa.txt | ||
ssh-keygen -Y sign -n hello@world -f id_ed25519 ed25519.txt | ||
ssh-keygen -Y sign -n hello@world -f testkeys/id_rsa testkeys/rsa.txt | ||
ssh-keygen -Y sign -n hello@world -f testkeys/id_ecdsa testkeys/ecdsa.txt | ||
ssh-keygen -Y sign -n hello@world -f testkeys/id_ed25519 testkeys/ed25519.txt |
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
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
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