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

io.baltoro.to.Keys Maven / Gradle / Ivy

There is a newer version: 4.0.12
Show newest version
package io.baltoro.to;

import java.security.KeyPair;

public class Keys 
{
	private String privateKey;
	private String publicKey;

	public KeyPair keypair;
	
	
	public Keys(String privateKey, String publicKey) 
	{
		super();
		this.privateKey = privateKey;
		this.publicKey = publicKey;
	}
	
	

	public String getPrivateKey() 
	{
		return privateKey;
	}
	
	public void setPrivateKey(String privateKey) 
	{
		this.privateKey = privateKey;
	}
	
	public String getPublicKey() 
	{
		return publicKey;
	}
	
	public void setPublicKey(String publicKey) 
	{
		this.publicKey = publicKey;
	}
	

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy