Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
com.github.ssedano:jump-consistent-hash
Advanced tools
Java implementation of the jump consistent hashing algorithm from Lamping and Veach. Paper http://arxiv.org/ftp/arxiv/papers/1406/1406.2294.pdf.
A Java implementation of the jump consistent hash from Lamping and Veach.
Paper: http://arxiv.org/ftp/arxiv/papers/1406/1406.2294.pdf
Extracted from the paper
We present jump consistent hash, a fast, minimal memory, consistent hash algorithm that can be expressed in about 5 lines of code. In comparison to the algorithm of Karger et al., jump consistent hash requires no storage, is faster, and does a better job of evenly dividing the key space among the buckets and of evenly dividing the workload when the number of buckets changes. Its main limitation is that the buckets must be numbered sequentially, which makes it more suitable for data storage applications than for distributed web caching.
Add the dependency to your pom.xml
<dependency>
<groupId>com.github.ssedano</groupId>
<artifactId>jump-consistent-hash</artifactId>
<version>1.0.0</version>
</dependency>
Or download the jar
from Maven Central and add it to your classpath.
Clone the repo and build it with maven and add the jar
to your classpath.
$ git clone https://github.com/ssedano/jump-consistent-hash
$ cd jump-consistent-hash
$ mvn clean install
Or copy the class and add it to your code base.
Then import it and use it.
int jumpConsistentHash = JumpConsistentHash.jumpConsistenHash(key, buckets);
Additional info in the javadoc
.
Licensed under Apache 2.
FAQs
Java implementation of the jump consistent hashing algorithm from Lamping and Veach. Paper http://arxiv.org/ftp/arxiv/papers/1406/1406.2294.pdf.
We found that com.github.ssedano:jump-consistent-hash demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.