// SPDX-FileCopyrightText: 2021 Paul Schaub // // SPDX-License-Identifier: Apache-2.0 package sop.operation; import java.io.IOException; import java.io.InputStream; import java.util.List; import sop.Verification; import sop.exception.SOPGPException; public interface VerifySignatures { List data(InputStream data) throws IOException, SOPGPException.NoSignature, SOPGPException.BadData; }