update
Some checks failed
git-sync-with-mirror / git-sync (push) Has been cancelled

This commit is contained in:
Jesus 2025-05-18 16:03:45 -05:00
parent 3f93f5c5e4
commit a0a7bd6596
Signed by: heckyel
GPG Key ID: 531E723EED721D7C
2 changed files with 7 additions and 2 deletions

View File

@ -41,7 +41,7 @@ $ gpg -k
### Copy Public Key ### Copy Public Key
```console ```console
gpg --export --armor $(gpg -K --with-colons --keyid-format SHORT | awk -F: '/^pub:/ { print $5 }') | xclip -sel clip gpg --export --armor $(gpg -K --with-colons | awk -F: '/^sec/ { getline; print $10; exit }')
``` ```
### Copy Private key (Caution) ### Copy Private key (Caution)

View File

@ -3,7 +3,12 @@
### Generate SSH key pair ### Generate SSH key pair
```console ```console
$ ssh-keygen -o -a 100 -t ed25519 -f ~/.ssh/id_ed25519 -C "john@example.com" ssh-keygen -o -a 100 -t ed25519 -f ~/.ssh/id_ed25519 -C "lupin@example.com"
```
#### Hardware Key
```console
ssh-keygen -o -a 100 -t ed25519-sk -f ~/.ssh/id_ed25519 -C "lupin@example.com"
``` ```
#### Change private key permissions #### Change private key permissions