1
0
mirror of https://github.com/bitcoinbook/bitcoinbook synced 2024-12-23 15:18:11 +00:00

CH04::ecc: Replace OpenSSL callout with libsecp256k1

This commit is contained in:
David A. Harding 2023-02-07 14:43:54 -10:00
parent 64e9c3d7a7
commit 8e879b658a

View File

@ -441,10 +441,9 @@ geometric operation on the curve.
[TIP]
====
((("OpenSSL cryptographic library")))Most bitcoin implementations use
the http://bit.ly/1ql7bn8[OpenSSL cryptographic library] to do the
elliptic curve math. For example, to derive the public key, the function
+EC_POINT_mul()+ is used.((("", startref="KAover04")))
((("OpenSSL cryptographic library")))Many Bitcoin implementations use
the https://github.com/bitcoin-core/secp256k1[libsecp256k1 crytographic
library] to do the elliptic curve math.
====
[[ecc_illustrated]]