Package org.pgpainless.key
Class OpenPgpV5Fingerprint
java.lang.Object
org.pgpainless.key.OpenPgpFingerprint
org.pgpainless.key.OpenPgpV5Fingerprint
- All Implemented Interfaces:
CharSequence
,Comparable<OpenPgpFingerprint>
This class represents a hex encoded, upper case OpenPGP v5 fingerprint.
-
Field Summary
Fields inherited from class org.pgpainless.key.OpenPgpFingerprint
fingerprint, utf8
-
Constructor Summary
ConstructorsConstructorDescriptionOpenPgpV5Fingerprint
(byte[] bytes) OpenPgpV5Fingerprint
(String fingerprint) Create anOpenPgpV5Fingerprint
.OpenPgpV5Fingerprint
(org.bouncycastle.openpgp.PGPKeyRing ring) OpenPgpV5Fingerprint
(org.bouncycastle.openpgp.PGPPublicKey key) OpenPgpV5Fingerprint
(org.bouncycastle.openpgp.PGPPublicKeyRing ring) OpenPgpV5Fingerprint
(org.bouncycastle.openpgp.PGPSecretKey key) OpenPgpV5Fingerprint
(org.bouncycastle.openpgp.PGPSecretKeyRing ring) -
Method Summary
Modifier and TypeMethodDescriptionint
compareTo
(OpenPgpFingerprint openPgpFingerprint) boolean
long
getKeyId()
Return the key id of the OpenPGP public key thisOpenPgpFingerprint
belongs to.int
Return the version of the fingerprint.int
hashCode()
protected boolean
Check, whether the fingerprint consists of 40 valid hexadecimal characters.Return a pretty printed representation of the fingerprint.Methods inherited from class org.pgpainless.key.OpenPgpFingerprint
charAt, length, of, of, parse, parseFromBinary, subSequence, toString
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface java.lang.CharSequence
chars, codePoints, isEmpty
-
Constructor Details
-
OpenPgpV5Fingerprint
Create anOpenPgpV5Fingerprint
.- Parameters:
fingerprint
- uppercase hexadecimal fingerprint of length 64
-
OpenPgpV5Fingerprint
public OpenPgpV5Fingerprint(@Nonnull byte[] bytes) -
OpenPgpV5Fingerprint
public OpenPgpV5Fingerprint(@Nonnull org.bouncycastle.openpgp.PGPPublicKey key) -
OpenPgpV5Fingerprint
public OpenPgpV5Fingerprint(@Nonnull org.bouncycastle.openpgp.PGPSecretKey key) -
OpenPgpV5Fingerprint
public OpenPgpV5Fingerprint(@Nonnull org.bouncycastle.openpgp.PGPPublicKeyRing ring) -
OpenPgpV5Fingerprint
public OpenPgpV5Fingerprint(@Nonnull org.bouncycastle.openpgp.PGPSecretKeyRing ring) -
OpenPgpV5Fingerprint
public OpenPgpV5Fingerprint(@Nonnull org.bouncycastle.openpgp.PGPKeyRing ring)
-
-
Method Details
-
getVersion
public int getVersion()Description copied from class:OpenPgpFingerprint
Return the version of the fingerprint.- Specified by:
getVersion
in classOpenPgpFingerprint
- Returns:
- version
-
isValid
Description copied from class:OpenPgpFingerprint
Check, whether the fingerprint consists of 40 valid hexadecimal characters.- Specified by:
isValid
in classOpenPgpFingerprint
- Parameters:
fp
- fingerprint to check.- Returns:
- true if fingerprint is valid.
-
getKeyId
public long getKeyId()Description copied from class:OpenPgpFingerprint
Return the key id of the OpenPGP public key thisOpenPgpFingerprint
belongs to. This method can be implemented for V4 and V5 fingerprints. V3 key-IDs cannot be derived from the fingerprint, but we don't care, since V3 is deprecated.- Specified by:
getKeyId
in classOpenPgpFingerprint
- Returns:
- key id
- See Also:
-
prettyPrint
Description copied from class:OpenPgpFingerprint
Return a pretty printed representation of the fingerprint.- Specified by:
prettyPrint
in classOpenPgpFingerprint
- Returns:
- pretty printed fingerprint
-
equals
-
hashCode
public int hashCode() -
compareTo
-