All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.nhindirect.common.crypto.tools.commands.KeyModel Maven / Gradle / Ivy

package org.nhindirect.common.crypto.tools.commands;

import java.security.Key;

public class KeyModel 
{
	protected final String keyName;
	protected final Key key;
	protected final char[] keyText;
	
	public KeyModel(String keyName, Key key, char[] keyText)
	{
		this.keyName = keyName;
		this.key = key;
		this.keyText = keyText;
	}

	public String getKeyName() 
	{
		return keyName;
	}

	public Key getKey() 
	{
		return key;
	}

	public char[] getKeyText() 
	{
		return keyText;
	}
	
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy