io.trbl.bcpg.SecretTransform Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bcpg-simple-jdk15on Show documentation
Show all versions of bcpg-simple-jdk15on Show documentation
A simple, lightweight wrapper around BouncyCastle's OpenPGP support.
The newest version!
package io.trbl.bcpg;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
public interface SecretTransform {
void run(char[] passphrase, InputStream inputStream, OutputStream outputStream) throws CryptoException, IOException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy