Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-10-01 | remove possibility of 63 bit overflow in ParseMoney | Wladimir J. van der Laan | |
- also, add unit tests for various functions in util.cpp/util.h | |||
2011-09-30 | Merge pull request #524 from sipa/signandverif | Gavin Andresen | |
Sign and verify message with bitcoin address | |||
2011-09-29 | Merge pull request #539 from laanwj/qt2 | Gavin Andresen | |
Qt GUI updates | |||
2011-09-29 | Merge pull request #537 from tcatm/remove-deprecated-rpcs | Nils Schneider | |
remove deprecated RPCs | |||
2011-09-29 | Add assertion size>0 to MedianFilter | Wladimir J. van der Laan | |
2011-09-28 | Merge branch 'master' of https://github.com/bitcoin/bitcoin | Wladimir J. van der Laan | |
Conflicts: .gitignore (used upstream version) bitcoin-qt.pro | |||
2011-09-28 | use median filter for peer-reported reported number of blocks | Wladimir J. van der Laan | |
- fixes problem that one misconfigured or malicious node can mess up progress bar - implementation in src/util.h - testcase in src/test/util_tests.cpp | |||
2011-09-28 | deprecate midstate and hash1 in getwork | Nils Schneider | |
2011-09-28 | remove deprecated RPCs | Nils Schneider | |
2011-09-27 | translation handling improvements | Wladimir J. van der Laan | |
- automatically build binary translation files in qmake/make - roll translations into resource file and executable, to simply installation | |||
2011-09-27 | Use key recovery for message signatures | Pieter Wuille | |
Instead of encoding the public key inside the signature string, use key recovery to do verification. This allows 88-character base64-encoded signature strings instead of 188-character ones. | |||
2011-09-27 | Compact signatures and key recovery | Pieter Wuille | |
Introduce a new type of signatures that are only 65 bytes long, and allow reconstruction of the public key that was used to create the signature. | |||
2011-09-27 | base64-based sign/verify | Pieter Wuille | |
2011-09-27 | Incorporate pubkey in signature, check based on address | Pieter Wuille | |
Include the public key in the signature string, to allow verification based on address. | |||
2011-09-27 | Sign and verify message with bitcoin address and public key | Khalahan | |
Add padding to input (fixed string + address) before hashing | |||
2011-09-27 | Test case for base64 encode/decode | Pieter Wuille | |
2011-09-27 | Inline base64 encoder/decoder | Pieter Wuille | |
This replaces the openssl-based base64 encoder and decoder with a more efficient internal one. Tested against the rfc4648 test vectors. Decoder is based on JoelKatz' version. | |||
2011-09-27 | Faster Base64 decoder. | JoelKatz | |
2011-09-27 | Removing the if statement entirely - not needed. | Janne Pulkkinen | |
2011-09-27 | Remove DoS penalty for SigOpCount or immature transactions | Gavin Andresen | |
2011-09-27 | Send Coins page not cleared when changing tabs. Clear all button for ↵ | Janne Pulkkinen | |
clearing the entries | |||
2011-09-26 | Fix build: put back rules to build cryptopp files | Gavin Andresen | |
2011-09-26 | Remove wxWidgets | Gavin Andresen | |
Makefiles now build bitcoind only. qmake/make in top-level directory is used to build Bitcoin QT Deleted almost all #ifdef GUI from the code (left one possibly controversial one) Deleted xpm/ files. | |||
2011-09-26 | Skip verifying transaction signatures during initial block-chain download | Gavin Andresen | |
2011-09-26 | Bump version to 0.4.1 | Gavin Andresen | |
2011-09-26 | Merge pull request #513 from cjdelisle/feature-hardening | Gavin Andresen | |
Hardening | |||
2011-09-26 | Merge pull request #517 from gavinandresen/DoSprevention | Gavin Andresen | |
Denial-of-service prevention | |||
2011-09-26 | Merge pull request #521 from laanwj/qt | Gavin Andresen | |
Qt GUI | |||
2011-09-24 | Change define to determine use of DBUS to USE_DBUS, to prevent overlap with ↵ | Wladimir J. van der Laan | |
Qt-defined QT_DBUS | |||
2011-09-23 | Merge branch 'master' of https://github.com/bitcoin/bitcoin | Wladimir J. van der Laan | |
2011-09-22 | show balance in sendcoins screen (issue #24) | Wladimir J. van der Laan | |
2011-09-21 | More denial-of-service misbehavior detection: version/addr/inv/getdata messages | Gavin Andresen | |
2011-09-21 | Transaction/Block denial-of-service detection/response | Gavin Andresen | |
2011-09-21 | Framework for banning mis-behaving peers | Gavin Andresen | |
2011-09-21 | SetMockTime() for cleaner unit testing | Gavin Andresen | |
2011-09-20 | Merge pull request #522 from sipa/minorfix | Jeff Garzik | |
SocketHandler thread can be detached | |||
2011-09-19 | put Q_OBJECT everywhere it should be (removes warnings when running lupdate) | Wladimir J. van der Laan | |
2011-09-19 | SocketHandler thread can be detached | Pieter Wuille | |
2011-09-18 | assure that base bitcoind and bitcoin still build | Wladimir J. van der Laan | |
2011-09-17 | missed printf in AbortMessage(); merged printfs in EndMessage | Nils Schneider | |
2011-09-17 | log low-level network messages only when fDebug is set | Nils Schneider | |
2011-09-16 | Merge branch 'master' of https://github.com/bitcoin/bitcoin | Wladimir J. van der Laan | |
2011-09-13 | make German translation up-to-date | flower | |
2011-09-12 | Add some hardening to protect against unknown/future exploits. | cjdelisle | |
2011-09-11 | remove transparency effect and windows-specific code for now, it's not ↵ | Wladimir J. van der Laan | |
working as supposed | |||
2011-09-11 | Some Mac OS X specific things | p2k | |
* Added application icon for Mac OS X * Added instructions for compiling under Mac OS X * Added Portfile for compiling miniupnpc with MacPorts | |||
2011-09-11 | clarify function signature (GetNumBlocksOfPeers) and use number of 'frozen' ↵ | Wladimir J. van der Laan | |
blocks as initial value for number of peer blocks | |||
2011-09-11 | The synchronization progress bar now compares the amount of total blocks to ↵ | Janne Pulkkinen | |
amount of blocks downloaded at application start-up. Could be probably implemented better. | |||
2011-09-07 | Merge branch 'master' of https://github.com/bitcoin/bitcoin | Wladimir J. van der Laan | |
Conflicts: .gitignore | |||
2011-09-07 | fix the build (moved code use 'this' instead of 'window') | Wladimir J. van der Laan | |