Skip to content

Commit 56054c5

Browse files
committed
Added blank line between fields section and constructors section.
1 parent 577ec00 commit 56054c5

5 files changed

Lines changed: 5 additions & 0 deletions

File tree

java/src/nayuki/nativehash/Md4.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ public class Md4 extends BlockHasher {
88
protected int[] state;
99

1010

11+
1112
public Md4() {
1213
super(64);
1314
state = new int[]{0x67452301, 0xEFCDAB89, 0x98BADCFE, 0x10325476};

java/src/nayuki/nativehash/Md5.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ public class Md5 extends BlockHasher {
88
protected int[] state;
99

1010

11+
1112
public Md5() {
1213
super(64);
1314
state = new int[]{0x67452301, 0xEFCDAB89, 0x98BADCFE, 0x10325476};

java/src/nayuki/nativehash/Sha1.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ public class Sha1 extends BlockHasher {
88
protected int[] state;
99

1010

11+
1112
public Sha1() {
1213
super(64);
1314
state = new int[]{0x67452301, 0xEFCDAB89, 0x98BADCFE, 0x10325476, 0xC3D2E1F0};

java/src/nayuki/nativehash/Sha256.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ public class Sha256 extends BlockHasher {
88
protected int[] state;
99

1010

11+
1112
public Sha256() {
1213
super(64);
1314
state = new int[]{0x6A09E667, 0xBB67AE85, 0x3C6EF372, 0xA54FF53A, 0x510E527F, 0x9B05688C, 0x1F83D9AB, 0x5BE0CD19};

java/src/nayuki/nativehash/Sha512.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ public class Sha512 extends BlockHasher {
88
protected long[] state;
99

1010

11+
1112
public Sha512() {
1213
super(128);
1314
state = new long[]{0x6A09E667F3BCC908L, 0xBB67AE8584CAA73BL, 0x3C6EF372FE94F82BL, 0xA54FF53A5F1D36F1L, 0x510E527FADE682D1L, 0x9B05688C2B3E6C1FL, 0x1F83D9ABFB41BD6BL, 0x5BE0CD19137E2179L};

0 commit comments

Comments
 (0)