Questions tagged [openssl]

OpenSSL is a general-purpose cryptography library. Originally used by Bitcoin Core before it was replaced with libsecp256k1.

33 questions
5
votes
4 answers

How do these OpenSSL commands create a Bitcoin private/key from a ECDSA keypair

I found the following code online and apparently it works. But I don't understand the lines which extract the Bitcoin compatible private/public key from the created ECDSA…
soupdiver
  • 175
  • 2
  • 8
5
votes
1 answer

OpenSSL generate Bitcoin address

I am building a script to generate secp256k1 using OpenSSL in MacOS. Seems to work fine. My question: is this SECURE enough? #!/bin/bash if [ $# -eq 0 ]; then echo "Missing name, for example generate_key.sh bob" exit…