aboutsummaryrefslogtreecommitdiffstats
path: root/java
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--java-c-jni/SHA3.c4
-rw-r--r--java/ConcurrentSHA3.java4
-rw-r--r--java/SHA3.java4
3 files changed, 6 insertions, 6 deletions
diff --git a/java-c-jni/SHA3.c b/java-c-jni/SHA3.c
index e785406..76b1d61 100644
--- a/java-c-jni/SHA3.c
+++ b/java-c-jni/SHA3.c
@@ -723,7 +723,7 @@ byte* digest(byte* msg, long msglen, long bits, int* suffix, long suffix_len, bo
olen = n;
if (withReturn)
{
- ni = min(25, rr);
+ ni = rr / ww;
while (olen > 0)
{
i = 0;
@@ -801,7 +801,7 @@ byte* squeeze()
rc = (byte*)malloc(nn = (n + 7) >> 3);
olen = n;
j = ptr = 0;
- ni = (25 < r >> 3) ? 25 : (r >> 3);
+ ni = (r >> 3) / ww;
while (olen > 0)
{
diff --git a/java/ConcurrentSHA3.java b/java/ConcurrentSHA3.java
index 90569f8..69425b9 100644
--- a/java/ConcurrentSHA3.java
+++ b/java/ConcurrentSHA3.java
@@ -832,7 +832,7 @@ public class ConcurrentSHA3
int olen = this.n;
int j = 0;
- int ni = Math.min(25, rr);
+ int ni = rr / ww;
while (olen > 0)
{
int i = 0;
@@ -931,7 +931,7 @@ public class ConcurrentSHA3
int olen = this.n;
int j = 0, ptr = 0;
- int ni = Math.min(25, this.r >> 3);
+ int ni = (this.r >> 3) / ww;
while (olen > 0)
{
int i = 0;
diff --git a/java/SHA3.java b/java/SHA3.java
index fa70915..9f41a00 100644
--- a/java/SHA3.java
+++ b/java/SHA3.java
@@ -838,7 +838,7 @@ public class SHA3
int olen = SHA3.n;
int j = 0;
- int ni = Math.min(25, rr);
+ int ni = rr / ww;
while (olen > 0)
{
int i = 0;
@@ -937,7 +937,7 @@ public class SHA3
int olen = SHA3.n;
int j = 0, ptr = 0;
- int ni = Math.min(25, SHA3.r >> 3);
+ int ni = (SHA3.r >> 3) / ww;
while (olen > 0)
{
int i = 0;