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

rs.otp.secret.ISecret Maven / Gradle / Ivy

/**
 * 
 */
package rs.otp.secret;

/**
 * Interface for secret generators.
 * 
 * @author ralph
 *
 */
public interface ISecret {

	/**
	 * Returns the bytes of this secret.
	 * @return the bytes.
	 */
	public byte[] getBytes();
	
	/**
	 * Returns the encoded form of this secret.
	 * @return encoded secret
	 */
	public String encode();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy