es.gob.afirma.standalone.plugins.DataCipher Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of afirma-ui-simpleafirma-plugins Show documentation
Show all versions of afirma-ui-simpleafirma-plugins Show documentation
Base para la construccion de plugins de AutoFirma
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