KeyDataResponse

data class KeyDataResponse(val format: String, val key: String, val keySpec: String, val notAfterTime: String, val notBeforeTime: String)

Represents a public key data along with its format.

Constructors

Link copied to clipboard
fun KeyDataResponse(format: String, key: String, keySpec: String, notAfterTime: String, notBeforeTime: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The format of the key.

Link copied to clipboard
val key: String

The key data. The format of the key is represented by the format field.

Link copied to clipboard

The specifications for the key.

Link copied to clipboard

Latest timestamp when this key is valid. Attempts to use this key after this time will fail. Only present if the key data represents a X.509 certificate.

Link copied to clipboard

Earliest timestamp when this key is valid. Attempts to use this key before this time will fail. Only present if the key data represents a X.509 certificate.