no.ks.fiks.io.asice.crypto.DecryptionStreamService 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.InputStream;
import java.security.PrivateKey;
import java.util.List;
@FunctionalInterface
public interface DecryptionStreamService {
InputStream decrypterStream(final InputStream encryptedStream, List privateKey);
}