Uses of Class
org.pgpainless.key.OpenPgpFingerprint
-
Packages that use OpenPgpFingerprint Package Description org.pgpainless.decryption_verification Classes used to decryption and verification of OpenPGP encrypted / signed data.org.pgpainless.key Classes related to OpenPGP keys.org.pgpainless.key.info Extract information from PGPKeyRings.org.pgpainless.key.modification.secretkeyring Classes that deal with modifications made toPGPSecretKeyRings.org.pgpainless.key.protection Classes related to OpenPGP secret key password protection.org.pgpainless.signature.consumer Classes related to OpenPGP signature verification.org.pgpainless.signature.subpackets Classes related to OpenPGP signatures. -
-
Uses of OpenPgpFingerprint in org.pgpainless.decryption_verification
Methods in org.pgpainless.decryption_verification with parameters of type OpenPgpFingerprint Modifier and Type Method Description booleanOpenPgpMetadata. containsVerifiedSignatureFrom(OpenPgpFingerprint fingerprint)Return true, if the message contains at least one valid signature made by the key with the given fingerprint, false otherwise. -
Uses of OpenPgpFingerprint in org.pgpainless.key
Subclasses of OpenPgpFingerprint in org.pgpainless.key Modifier and Type Class Description classOpenPgpV4FingerprintThis class represents a hex encoded, uppercase OpenPGP v4 fingerprint.Methods in org.pgpainless.key that return OpenPgpFingerprint Modifier and Type Method Description OpenPgpFingerprintSubkeyIdentifier. getFingerprint()OpenPgpFingerprintSubkeyIdentifier. getPrimaryKeyFingerprint()Return theOpenPgpFingerprintof the primary key of the identified key.OpenPgpFingerprintSubkeyIdentifier. getSubkeyFingerprint()Return theOpenPgpFingerprintof the identified subkey.static OpenPgpFingerprintOpenPgpFingerprint. of(org.bouncycastle.openpgp.PGPKeyRing ring)Return the fingerprint of the primary key of the given key ring.static OpenPgpFingerprintOpenPgpFingerprint. of(org.bouncycastle.openpgp.PGPPublicKey key)Return the fingerprint of the given key.Methods in org.pgpainless.key with parameters of type OpenPgpFingerprint Modifier and Type Method Description intOpenPgpV4Fingerprint. compareTo(OpenPgpFingerprint openPgpFingerprint)Constructors in org.pgpainless.key with parameters of type OpenPgpFingerprint Constructor Description SubkeyIdentifier(org.bouncycastle.openpgp.PGPKeyRing keyRing, OpenPgpFingerprint subkeyFingerprint)SubkeyIdentifier(OpenPgpFingerprint primaryKeyFingerprint)Create aSubkeyIdentifierthat identifies the primary key with the given fingerprint.SubkeyIdentifier(OpenPgpFingerprint primaryKeyFingerprint, OpenPgpFingerprint subkeyFingerprint)Create aSubkeyIdentifierwhich points to the subkey with the given subkeyFingerprint, which has a primary key with the given primaryKeyFingerprint. -
Uses of OpenPgpFingerprint in org.pgpainless.key.info
Methods in org.pgpainless.key.info that return OpenPgpFingerprint Modifier and Type Method Description OpenPgpFingerprintKeyRingInfo. getFingerprint()Return theOpenPgpFingerprintof this key ring.Methods in org.pgpainless.key.info with parameters of type OpenPgpFingerprint Modifier and Type Method Description org.bouncycastle.openpgp.PGPPublicKeyKeyRingInfo. getPublicKey(OpenPgpFingerprint fingerprint)Return the public key with the given fingerprint.org.bouncycastle.openpgp.PGPSecretKeyKeyRingInfo. getSecretKey(OpenPgpFingerprint fingerprint)Return the secret key with the given fingerprint.DateKeyRingInfo. getSubkeyExpirationDate(OpenPgpFingerprint fingerprint)Return the expiration date of the subkey with the provided fingerprint. -
Uses of OpenPgpFingerprint in org.pgpainless.key.modification.secretkeyring
Methods in org.pgpainless.key.modification.secretkeyring with parameters of type OpenPgpFingerprint Modifier and Type Method Description default org.bouncycastle.openpgp.PGPSignatureSecretKeyRingEditorInterface. createRevocationCertificate(OpenPgpFingerprint subkeyFingerprint, SecretKeyRingProtector secretKeyRingProtector, RevocationAttributes revocationAttributes)Create a detached revocation certificate, which can be used to revoke the specified subkey.default SecretKeyRingEditorInterfaceSecretKeyRingEditorInterface. revokeSubKey(OpenPgpFingerprint fingerprint, SecretKeyRingProtector secretKeyRingProtector)Revoke the subkey binding signature of a subkey.default SecretKeyRingEditorInterfaceSecretKeyRingEditorInterface. revokeSubKey(OpenPgpFingerprint fingerprint, SecretKeyRingProtector secretKeyRingProtector, RevocationAttributes revocationAttributes)Revoke the subkey binding signature of a subkey. -
Uses of OpenPgpFingerprint in org.pgpainless.key.protection
Methods in org.pgpainless.key.protection with parameters of type OpenPgpFingerprint Modifier and Type Method Description voidCachingSecretKeyRingProtector. addPassphrase(OpenPgpFingerprint fingerprint, Passphrase passphrase) -
Uses of OpenPgpFingerprint in org.pgpainless.signature.consumer
Methods in org.pgpainless.signature.consumer that return OpenPgpFingerprint Modifier and Type Method Description OpenPgpFingerprintDetachedSignatureCheck. getFingerprint()Deprecated.useDetachedSignatureCheck.getSigningKeyIdentifier()instead. -
Uses of OpenPgpFingerprint in org.pgpainless.signature.subpackets
Methods in org.pgpainless.signature.subpackets that return OpenPgpFingerprint Modifier and Type Method Description static OpenPgpFingerprintSignatureSubpacketsUtil. getIssuerFingerprintAsOpenPgpFingerprint(org.bouncycastle.openpgp.PGPSignature signature)Return theIssuerFingerprintsubpacket of the signature into aOpenPgpFingerprint.
-