SubkeyInfo

data class SubkeyInfo(val keyId: Long, val fingerprint: String, val algorithm: Int, val creationTime: Instant, val expirationTime: Instant?, val isRevoked: Boolean, val flags: Int)

Metadata for a single public or secret subkey in a key ring.

Constructors

Link copied to clipboard
constructor(keyId: Long, fingerprint: String, algorithm: Int, creationTime: Instant, expirationTime: Instant?, isRevoked: Boolean, flags: Int)

Properties

Link copied to clipboard

OpenPGP public-key algorithm tag.

Link copied to clipboard

Key creation instant.

Link copied to clipboard

Expiration instant, or null if the key does not expire.

Link copied to clipboard

Space-separated uppercase hex fingerprint.

Link copied to clipboard
val flags: Int

Aggregated OpenPGP key-flags bitmask (certify, sign, encrypt, auth).

Link copied to clipboard

Whether the key carries a revocation signature.

Link copied to clipboard
val keyId: Long

64-bit OpenPGP key ID.