Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
terryquigleysas committed Apr 18, 2024
1 parent 50845a9 commit 51220b8
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
import com.google.common.base.Splitter;
import org.apache.lucene.util.BytesRef;
import org.bouncycastle.util.encoders.Hex;

import com.rfksystems.blake2b.Blake2b;

public class MaskedField {
Expand Down Expand Up @@ -164,7 +165,7 @@ private String customHash(String in) {
}

private byte[] blake2bHash(byte[] in) {
final Blake2b hash = new Blake2b(null, 32,defaultSalt, null);
final Blake2b hash = new Blake2b(null, 32, defaultSalt, null);
hash.update(in, 0, in.length);
final byte[] out = new byte[hash.getDigestSize()];
hash.digest(out, 0);
Expand Down

0 comments on commit 51220b8

Please sign in to comment.