Skip to content

Commit

Permalink
Added comment to constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
grthor committed Apr 29, 2021
1 parent af36c42 commit e2a3c3d
Showing 1 changed file with 12 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import org.jcryptool.crypto.keystore.keys.KeyType;

/**
* <EncodedContactName>;<KeyStoreEntryType>;<Operation>;<KeyLength>;<Provider>;< HashValue>
* EncodedContactName;KeyStoreEntryType;Operation;KeyLength;Provider;HashValue
*
* @author tkern
*
Expand All @@ -30,6 +30,17 @@ public class KeyStoreAlias implements IKeyStoreAlias {
private boolean valid = false;
private String hashValue;
private String className;


/**
*
* @param contactName
* @param keyType
* @param opName
* @param keyLength
* @param hashValue
* @param className
*/
public KeyStoreAlias(String contactName, KeyType keyType, String opName, int keyLength, String hashValue,
String className) {
this.encodedContactName = encode(contactName);
Expand Down

0 comments on commit e2a3c3d

Please sign in to comment.