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

edu.stanford.smi.protege.util.DigestAndSalt Maven / Gradle / Ivy

Go to download

Core code for the Protege ontology editor. Serves as the basis for the Protege-Frames and Protege-OWL editors.

There is a newer version: 3.5.1
Show newest version
package edu.stanford.smi.protege.util;

public class DigestAndSalt {
	private String digest;
	private String salt;
	
	public DigestAndSalt(String digest, String salt) {
		super();
		this.digest = digest;
		this.salt = salt;
	}
	
	public String getDigest() {
		return digest;
	}
	
	public String getSalt() {
		return salt;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy