OccurenceAttestationSignature

data class OccurenceAttestationSignature(val publicKeyId: String, val signature: String? = null)

Constructors

Link copied to clipboard
constructor(publicKeyId: String, signature: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The identifier for the public key that verifies this signature. MUST be an RFC3986 conformant URI. * When possible, the key id should be an immutable reference, such as a cryptographic digest. Examples of valid values:

Link copied to clipboard
val signature: String? = null

The content of the signature, an opaque bytestring. The payload that this signature verifies MUST be unambiguously provided with the Signature during verification. A wrapper message might provide the payload explicitly. Alternatively, a message might have a canonical serialization that can always be unambiguously computed to derive the payload.