Skip to content

Commit c543588

Browse files
committed
fix: separate BigInteger declarations to satisfy Checkstyle
1 parent 84c769d commit c543588

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

src/main/java/com/thealgorithms/ciphers/ElGamalCipher.java

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,11 @@
44
import java.security.SecureRandom;
55

66
public class ElGamalCipher {
7-
private BigInteger p, g, x, y;
7+
private BigInteger p;
8+
private BigInteger g;
9+
private BigInteger x;
10+
private BigInteger y;
11+
812
private SecureRandom random = new SecureRandom();
913

1014
// Key generation

0 commit comments

Comments
 (0)