![JAR search and dependency download from the Maven repository](/logo.png)
com.payneteasy.superfly.crypto.PublicKeyCrypto Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of superfly-crypto Show documentation
Show all versions of superfly-crypto Show documentation
Contains crypto services like OpenPGP-compatible encryption
package com.payneteasy.superfly.crypto;
import java.io.IOException;
import java.io.OutputStream;
public interface PublicKeyCrypto {
boolean isPublicKeyValid(String armoredPublicKey);
void encrypt(byte[] clearText, String name, String armoredPublicKey, OutputStream os) throws IOException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy