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

com.sendsafely.utils.Keypair Maven / Gradle / Ivy

package com.sendsafely.utils;

public class Keypair {

	private String privateKey;
	private String 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 - 2025 Weber Informatics LLC | Privacy Policy