Hello,
FreeBSD 13.0-RELEASE amd64
I can complete the command above and get a successful output, but now I am trying to format this key to Base32 format and the command I input below fails of course because basez is not an option for BSD.
Is there a workaround I can try? or any insight?
FreeBSD 13.0-RELEASE amd64
openssl genpkey -algorithm x25519 -out /tmp/k1.prv.pem
I can complete the command above and get a successful output, but now I am trying to format this key to Base32 format and the command I input below fails of course because basez is not an option for BSD.
cat /tmp/k1.prv.pem | grep -v " PRIVATE KEY" | base64pem -d | tail --bytes=32 | base32 | sed 's/=//g' > /tmp/k1.prv.key
Is there a workaround I can try? or any insight?