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

com.github.ncredinburgh.tomcat.encryption.Cipher Maven / Gradle / Ivy

There is a newer version: 1.2
Show newest version
package com.github.ncredinburgh.tomcat.encryption;

public interface Cipher {

	public byte[] encrypt(byte[] clearBytes) throws CipherException;

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy