cert-d-java/pgp-certificate-store/src/main/java/pgp/certificate_store/Certificate.java

17 lines
332 B
Java
Raw Normal View History

2022-03-01 15:19:01 +01:00
// SPDX-FileCopyrightText: 2022 Paul Schaub <vanitasvitae@fsfe.org>
//
// SPDX-License-Identifier: Apache-2.0
package pgp.certificate_store;
2022-07-04 19:42:02 +02:00
/**
* OpenPGP certificate (public key).
*/
public abstract class Certificate implements KeyMaterial {
2022-03-01 15:19:01 +01:00
@Override
public Certificate asCertificate() {
return this;
}
2022-03-01 15:19:01 +01:00
}