Package-level declarations

Types

Link copied to clipboard
data class KeyRingInfo(val masterKeyId: Long, val fingerprint: String, val userIds: List<UserIdInfo>, val subkeys: List<SubkeyInfo>, val isSecret: Boolean, val isRevoked: Boolean)

Summary of an OpenPGP public or secret key ring.

Link copied to clipboard
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.

Link copied to clipboard
data class UserIdInfo(val userId: String, val isPrimary: Boolean)

User ID entry on the master key.