no.ks.fiks.io.asice.write.EncryptedAsicWriter 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.write;
import no.ks.fiks.io.asice.model.Content;
import java.io.InputStream;
import java.security.cert.X509Certificate;
import java.util.List;
public interface EncryptedAsicWriter extends AutoCloseable {
InputStream createAndEncrypt(X509Certificate x509Certificate, List contents);
}