mirror of
https://codeberg.org/PGPainless/cert-d-java.git
synced 2025-09-09 03:09:39 +02:00
Implement storing of trust-root keys
This commit is contained in:
parent
304d6c29e4
commit
17d2f45e83
7 changed files with 192 additions and 19 deletions
|
@ -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.
|
||||
|
|
|
@ -4,6 +4,6 @@
|
|||
|
||||
package pgp.certificate_store;
|
||||
|
||||
public interface CertificateStore extends CertificateDirectory, SubkeyLookup {
|
||||
public interface CertificateStore extends CertificateDirectory, SubkeyLookup, TrustRootStore {
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue