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

es.gob.afirma.standalone.plugins.DataCipher Maven / Gradle / Ivy

The newest version!
package es.gob.afirma.standalone.plugins;

public interface DataCipher {

	String cipher(byte[] data) throws EncryptingException;

	byte[] decipher(byte[] cipheredData) throws EncryptingException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy