apply modulo on value in GF constructor in java

This commit is contained in:
jacekpoz 2024-05-10 22:03:05 +02:00
parent 1409dc940b
commit eed1eff28d
Signed by: poz
SSH key fingerprint: SHA256:JyLeVWE4bF3tDnFeUpUaJsPsNlJyBldDGV/dIKSLyN8

View file

@ -18,7 +18,7 @@ public class GF implements IGF {
public GF(final long characteristic, final long value) {
this.characteristic = characteristic;
this.value = value;
this.value = value % this.characteristic;
}
/*