Skip to content

Commit

Permalink
Make EMPTY_KEY static.
Browse files Browse the repository at this point in the history
Co-authored-by: Martin Balao Alonso <[email protected]>
Co-authored-by: Francisco Ferrari Bihurriet <[email protected]>
  • Loading branch information
martinuy and franferrax committed Dec 11, 2024
1 parent 453aa24 commit aab90aa
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ final class P11KDF extends KDFSpi {
private final Token token;
private final P11SecretKeyFactory.HKDFKeyInfo svcKi;
private final long hmacMechanism;
private final SecretKey EMPTY_KEY = new SecretKey() {
private static final SecretKey EMPTY_KEY = new SecretKey() {
@Override
public String getAlgorithm() {
return "Generic";
Expand Down

0 comments on commit aab90aa

Please sign in to comment.