// SPDX-FileCopyrightText: 2022 Paul Schaub // // SPDX-License-Identifier: Apache-2.0 package pgp.certificate; /** * OpenPGP certificate (public key). */ public abstract class Certificate implements KeyMaterial { @Override public Certificate asCertificate() { return this; } }