Skip to content

Commit

Permalink
Fix illegal char in javadoc -> html conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickfav committed Jan 26, 2019
1 parent 5ad6e34 commit 804383a
Showing 1 changed file with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,7 @@
import at.favre.lib.crypto.bcrypt.BCrypt;

import java.nio.charset.StandardCharsets;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import java.util.Objects;
import java.util.*;

/**
* Key Derivation protocol of BKDF. Used for derived high entropy secret keys from user passwords with a given cost factor.
Expand Down Expand Up @@ -80,7 +76,7 @@ public interface KeyDerivationFunction {
* The output key material can be used as secret key like that:
*
* <pre>
* List<byte[]> okmList = kdf.derive(...);
* List&lt;byte[]&gt; okmList = kdf.derive(...);
* SecretKey secretKey = new SecretKeySpec(okmList.get(0),"AES");
* </pre>
* <p>
Expand Down

0 comments on commit 804383a

Please sign in to comment.