Separated multiple variable declarations.
This commit is contained in:
@@ -1083,7 +1083,10 @@ public final class BlowfishEngine
|
||||
private static final int BLOCK_SIZE = 8; // bytes = 64 bits
|
||||
private static final int SBOX_SK = 256;
|
||||
private static final int P_SZ = ROUNDS + 2;
|
||||
private final int[] S0, S1, S2, S3; // the s-boxes
|
||||
private final int[] S0; // the s-boxes
|
||||
private final int[] S1; // the s-boxes
|
||||
private final int[] S2; // the s-boxes
|
||||
private final int[] S3; // the s-boxes
|
||||
private final int[] P; // the p-array
|
||||
private byte[] workingKey = null;
|
||||
|
||||
|
Reference in New Issue
Block a user