Superkey
My SSH Public Key
How to Get Your SSH Public Key
If you already have an SSH key:
Your public key is usually located at ~/.ssh/id_ed25519.pub or ~/.ssh/id_rsa.pub
Linux/macOS:
cat ~/.ssh/id_ed25519.pub
Windows (PowerShell):
Get-Content $env:USERPROFILE\.ssh\id_ed25519.pub
cat ~/.ssh/id_ed25519.pub
Windows (PowerShell):
Get-Content $env:USERPROFILE\.ssh\id_ed25519.pub
If you need to generate a new key:
Run the following command in your terminal:
ssh-keygen -t ed25519 -C "your_email@lvairo.com"
Then press Enter to accept the default location, and optionally set a passphrase.
After generating, copy the contents of the .pub file (the public key) and paste it above.
Important: Only share your public key (.pub file). Never share your private key (the file without .pub extension).