Skip to content

Java Porting of IOTA's POW (Proof of Work) hash function.

Notifications You must be signed in to change notification settings

davassi/iota.curl.java

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Java Porting of IOTA's Proof of Work function, "CURL".

CURL technically is a sponge function (https://en.wikipedia.org/wiki/Sponge_function)

To execute:

final IotaCurlMiner iotacurl = new IotaCurlMiner();
final String mined = iotacurl.doCurlPowSingleThread(in, difficulty);
System.err.println("Mined: " + mined);

where "in" is a 2673 String character lenght composed by [A-Z] and '9'.

To compile:

mvn clean compile

To test:

mvn test

IOTA: www.iotatokens.com

About

Java Porting of IOTA's POW (Proof of Work) hash function.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages