wkd-java/wkd-java/src/main/java/pgp/wkd/CertificateReader.java

15 lines
331 B
Java
Raw Normal View History

2022-03-10 16:56:46 +01:00
// SPDX-FileCopyrightText: 2022 Paul Schaub <vanitasvitae@fsfe.org>
//
// SPDX-License-Identifier: Apache-2.0
package pgp.wkd;
import java.io.IOException;
import java.io.InputStream;
import java.util.List;
public interface CertificateReader {
List<CertificateAndUserIds> read(InputStream inputStream) throws IOException;
}