• Skip to primary navigation
  • Skip to content
  • Skip to footer
Leonard's WebLog Leonard's WebLog
  • Posts
  • Categories
  • Tags
  • About
    Leonard Lee

    Leonard Lee

    My boring biography constrained to a sentence or two goes here. Yet another boring biography constrained to a sentence or two goes here.

    • Oslo, Norway
    • Email
    • Bluesky
    • Mastodon
    • Website
    • LinkedIn
    • Instagram
    • GitHub
    • Stack Overflow

    Use Ed25519 SSH Keys

    December 23, 2018 less than 1 minute read

    • Check current available SSH keys.
    #!/usr/bin/env bash
    
    for key in ~/.ssh/id_*; do
        ssh-keygen -l -f "${key}"
    done | uniq
    
    • Generate the Ed25519 SSH keys.
    ssh-keygen \
        -o -a 100 \
        -t ed25519 \
        -f ~/.ssh/id_ed25519 \
        -C "username@hostname"
    
    • Read Risan’s post about Ed25519 for more details.

    Categories: notes

    Updated: December 23, 2018

    Share on

    Twitter Facebook LinkedIn
    Previous Next

    You May Also Enjoy

    「神様、もう少しだけ……」

    February 7, 2025 less than 1 minute read

    人は皆、生まれたときから死へ向かっている。 星の降る夜、いつか遠い来世で俺を待っている恋人に聞いてみたい——「お前は今、> 幸せか?」 生きたがっているのか、それとも死にたがっているのか? 生と死の境界は、たった50cmのフェンスの幅よりも、もっと狭い。 それを飛び越える一瞬は...

    Enable Furigana on Microsoft Word for macOS

    January 16, 2025 1 minute read

    Cannot enable Furigana (振り仮名/読み仮名/ルビ) on Microsoft Word for macOS? Here’s a detailed guide to do it.

    Fireworks

    January 1, 2025 less than 1 minute read

    With every passing year, everyone grows older. Fireworks reminded me to reflect on the temporal moments of our fragile lives.

    Sign In Failed on Flutter

    January 20, 2019 2 minute read

    While using firebase_auth and google_sign_in packages for Flutter, the below error was shown. Sign In with Google Account Future<String> _signInGoo...

    • Email
    • GitHub
    • Feed
    © 2025 Leonard's WebLog. Powered by Jekyll & Minimal Mistakes.