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

com.github.ncredinburgh.tomcat.Decryptor Maven / Gradle / Ivy

The newest version!
package com.github.ncredinburgh.tomcat;

import java.util.Properties;

public interface Decryptor {
	
	public void configure(Properties properties) throws DecryptionException;

	public byte[] decrypt(byte[] cipherBytes) throws DecryptionException;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy