no.difi.asic.AsicVerifier Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commons-asic Show documentation
Show all versions of commons-asic Show documentation
Generic implementation of ASiC-E archives in accordance with ETSI 102 918 v1.3.1.
package no.difi.asic;
import com.google.common.io.ByteStreams;
import java.io.IOException;
import java.io.InputStream;
public class AsicVerifier extends AbstractAsicReader {
AsicVerifier(MessageDigestAlgorithm messageDigestAlgorithm, InputStream inputStream) throws IOException {
super(messageDigestAlgorithm, inputStream);
while (getNextFile() != null)
writeFile(ByteStreams.nullOutputStream());
close();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy