]> Git Repo - VerusCoin.git/commit
Update key.cpp to use new libsecp256k1
authorPieter Wuille <[email protected]>
Wed, 22 Apr 2015 21:28:26 +0000 (14:28 -0700)
committerPieter Wuille <[email protected]>
Mon, 4 May 2015 12:45:34 +0000 (14:45 +0200)
commita56054be650052361e8de79f0f03a56a043759e5
tree05aec96814359918e9a87b6035e037bce5257e2a
parent4dda253190e6f5ac6728e88fefdf6e8eaf41419c
Update key.cpp to use new libsecp256k1

libsecp256k1's API changed, so update key.cpp to use it.

Libsecp256k1 now has explicit context objects, which makes it completely thread-safe.
In turn, keep an explicit context object in key.cpp, which is explicitly initialized
destroyed. This is not really pretty now, but it's more efficient than the static
initialized object in key.cpp (which made for example bitcoin-tx slow, as for most of
its calls, libsecp256k1 wasn't actually needed).

This also brings in the new blinding support in libsecp256k1. By passing in a random
seed, temporary variables during the elliptic curve computations are altered, in such
a way that if an attacker does not know the blind, observing the internal operations
leaks less information about the keys used. This was implemented by Greg Maxwell.
src/bitcoin-tx.cpp
src/init.cpp
src/key.cpp
src/key.h
src/test/test_bitcoin.cpp
This page took 0.026941 seconds and 4 git commands to generate.