Open freewind opened 6 years ago
On README.md, there is:
byte[] signature = cipher.calculateSignature(secureRandom, privateKey, message);
But in the latest version, secureRandom is not needed, so this line can be changed to:
secureRandom
byte[] signature = cipher.calculateSignature( privateKey, message);
On README.md, there is:
But in the latest version,
secureRandom
is not needed, so this line can be changed to: