aboutsummaryrefslogtreecommitdiff
path: root/src/test/key_tests.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Refactor: split CKeyID/CScriptID/CTxDestination from CBitcoinAddressPieter Wuille2012-05-241-10/+17
| | | | | | | | | | | | | | | | | This introduces internal types: * CKeyID: reference (hash160) of a key * CScriptID: reference (hash160) of a script * CTxDestination: a boost::variant of the former two CBitcoinAddress is retrofitted to be a Base58 encoding of a CTxDestination. This allows all internal code to only use the internal types, and only have RPC and GUI depend on the base58 code. Furthermore, the header dependencies are a lot saner now. base58.h is at the top (right below rpc and gui) instead of at the bottom. For the rest: wallet -> script -> keystore -> key. Only keystore still requires a forward declaration of CScript. Solving that would require splitting script into two layers.
* CBitcoinSecret::SetString() now calls IsValid() to make sure it was passed ↵Chris Moore2012-04-121-5/+7
| | | | something with the correct version.
* Unit tests for EC key routinesPieter Wuille2012-01-091-0/+138
This tests: * creation of keys from base58-encoded strings * extracting public keys and addresses * compressed public keys * compact signatures and key recovery