
com.github.ncredinburgh.tomcat.encryption.Cipher Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tomcat-external-propertysource Show documentation
Show all versions of tomcat-external-propertysource Show documentation
A Tomcat PropertySource class that reads provides property values from an external file.
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