Created
November 7, 2022 20:11
-
-
Save njofce/a94b3d0578dfbc67eea3a102dacfbf7a to your computer and use it in GitHub Desktop.
Generate ECDSA key pair
This file contains hidden or 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
#!/usr/bin/env bash | |
set -e | |
openssl ecparam -name secp256k1 -genkey -noout | openssl ec -text -noout > key | |
cat key | grep pub -A 5 | tail -n +2 | tr -d '\n[:space:]:' | sed 's/^04//' > pub | |
cat key | grep priv -A 3 | tail -n +2 | tr -d '\n[:space:]:' | sed 's/^00//' > priv |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment