no.ks.fiks.io.asice.crypto.PipedEncryptionService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fiks-io-asice-handler Show documentation
Show all versions of fiks-io-asice-handler Show documentation
Bibliotek som inneholder funksjonalitet for streaming av ASIC-E pakker
The newest version!
package no.ks.fiks.io.asice.crypto;
import java.io.PipedInputStream;
import java.security.cert.X509Certificate;
@FunctionalInterface
public interface PipedEncryptionService {
PipedInputStream encrypt(final PipedInputStream pipedInputStream, X509Certificate mottakerSertifikat);
}