• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

bitcoinj / bitcoinj / 1755
61%

Build:
DEFAULT BRANCH: master
Ran 30 Oct 2016 12:11PM UTC
Jobs 1
Files 209
Run time 10s
Badge
Embed ▾
README BADGES
x

If you need to use a raster PNG badge, change the '.svg' to '.png' in the link

Markdown

Textile

RDoc

HTML

Rst

pending completion
1755

push

travis-ci

schildbach
ECKey: Fix violation of equals/hashCode contract.

ECKey violates the equals/hashCode contract for
Java objects. Objects that are equivalent via
the equals method, _must_ have the same hash code.

This is not the case for ECKeys when comparing
the compressed and uncompressed forms of a public key.
The implementation of the `equals` method defines
these objects to be equivalent, but the hashCode
method defined them to be distinct!

Original implementation comes from commit
<a class=hub.com/bitcoinj/bitcoinj/commit/640db52cf48416db8e2b24b502b3775243ad5162">640db52cf<a href="https://github.com/bitcoinj/bitcoinj/commit/1746be6e1035631f4875dc77b92ae60cfdbe865f">
which contains this bug. [1]

Note that the comment identifies the correct intent:

&gt; Public keys are random already so we can just use a part of them as the hashcode. Read from the start to
&gt; avoid picking up the type code (compressed vs uncompressed) which is tacked on the end.

But the second sentence is incorrect. The first byte (index 0) is the type code
(compressed vs. uncompressed), not “the end”.

The code has since been refactored in commit
<a class=hub.com/bitcoinj/bitcoinj/commit/9219d8a9b5714cf4e65dc046c70930c86416e65d">9219d8a9b
but the implementation is effectively
identical. [2]

The fix is simple: use the most-significant four
bytes of the X-coordinate of the public key.

[1](https://github.com/bitcoinj/bitcoinj/commit/640db52cf48416db8e2b24b502b3775243ad5162#diff-b59ef8be77b9148b27a14be59762c0c5R353)
[2](https://github.com/bitcoinj/bitcoinj/commit/9219d8a9b5714cf4e65dc046c70930c86416e65d#diff-1849449aac05f7e59de7ebd56efd7f43R1201)

15035 of 20980 relevant lines covered (71.66%)

0.72 hits per line

Jobs
ID Job ID Ran Files Coverage
1 1755.1 30 Oct 2016 12:11PM UTC 0
71.66
Travis Job 1755.1
Source Files on build 1755
Detailed source file information is not available for this build.
  • Back to Repo
  • Travis Build #1755
  • 1746be6e on github
  • Prev Build on master (#1751)
  • Next Build on master (#1757)
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc