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

org.sklsft.commons.crypto.EncryptionParametersAccessor Maven / Gradle / Ivy

package org.sklsft.commons.crypto;

/**
 * An interface which implementation should provide an encryption key and a symmetric algorithm for token encryption
 * 
 * @author Nicolas Thibault
 *
 */
public interface EncryptionParametersAccessor {
	
	byte[] getTokenEncryptionKey();
	
	String getTokenEncryptionSymmetricAlgorithm();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy