An open API service indexing awesome lists of open source software.

https://github.com/tuister/ssdeep-java

A JNA wrapper for SSDeep(Fuzzy Hashing)
https://github.com/tuister/ssdeep-java

jna lsh ssdeep

Last synced: 5 months ago
JSON representation

A JNA wrapper for SSDeep(Fuzzy Hashing)

Awesome Lists containing this project

README

          

# ssdeep-java

ssdeep-java is a JNA wrapper for SSDeep(Fuzzy hashing)

> ssdeep is thread safe

## Usage

```xml

tech.tuister
ssdeep-java
0.0.1

```

```java

public class Main {
public static void main(String[] args) throws Exception{
byte[] text = Utils.readFile(new File("/tmp/test.doc"));
String hash = FuzzyHashing.fuzzyHash(text);
System.out.println(hash);
}
}

```

**Demo:**

[FuzzyHashingTest](src/test/java/tech/tuister/ssdeep4j/FuzzyHashingTest.java)

## Performance

TODO