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: ``` byte[] signature = cipher.calculateSignature( privateKey, message); ```
On README.md, there is:
But in the latest version,
secureRandomis not needed, so this line can be changed to: