Skip to content
This repository has been archived by the owner on Jun 7, 2023. It is now read-only.

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

Notifications You must be signed in to change notification settings

iotaledger/iota.curl.java

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 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

  • Java 100.0%