Skip to content

Commit

Permalink
Remove return from ISO10126Padding::padWithLen
Browse files Browse the repository at this point in the history
  • Loading branch information
johnshajiang committed Dec 25, 2023
1 parent 4c402ac commit 9e3c07c
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@ public void padWithLen(byte[] in, int off, int len)
SunJCE.getRandom().nextBytes(padding);
System.arraycopy(padding, 0, in, off, len - 1);
in[idx - 1] = paddingOctet;
return;
}

/**
Expand Down

0 comments on commit 9e3c07c

Please sign in to comment.