タグ

ブックマーク / pebble8888.hatenablog.com (1)

  • opensslでed25519の鍵を作ってみる - Pebble Coding

    openssl 1.1.1にてed25519の鍵が作れるようになったようです。 www.openssl.org OpenSSL/genpkey - NORK's "HOW TO..." Wiki 略して「のうはうWiki」 macOS10.14.4のbrewではまだバージョンが1.0なので、1.1のバージョンのopensslをインストールします。 $ brew install openssl@1.1 .bash_profile でのopensslのパスも書き換えておきます。 export PATH="/usr/local/opt/openssl@1.1/bin:$PATH" $ openssl version OpenSSL 1.1.1b 26 Feb 2019 準備完了です。 まず、秘密鍵を生成します。 $ openssl genpkey -algorithm ed25519 -out

    opensslでed25519の鍵を作ってみる - Pebble Coding
  • 1