Implement storing of trust-root keys

This commit is contained in:
Paul Schaub 2022-07-04 19:42:02 +02:00
parent 304d6c29e4
commit 17d2f45e83
Signed by: vanitasvitae
GPG key ID: 62BEE9264BF17311
7 changed files with 192 additions and 19 deletions

View file

@ -8,6 +8,9 @@ import java.io.IOException;
import java.io.InputStream;
import java.util.Set;
/**
* OpenPGP certificate (public key).
*/
public abstract class Certificate {
/**
* Return the fingerprint of the certificate as 40 lowercase hex characters.

View file

@ -4,6 +4,6 @@
package pgp.certificate_store;
public interface CertificateStore extends CertificateDirectory, SubkeyLookup {
public interface CertificateStore extends CertificateDirectory, SubkeyLookup, TrustRootStore {
}