public sealed class AttestationOccurrence : IMessage<AttestationOccurrence>, IEquatable<AttestationOccurrence>, IDeepCloneable<AttestationOccurrence>, IBufferMessage, IMessage
Occurrence that represents a single "attestation". The authenticity of an attestation can be verified using the attached signature. If the verifier trusts the public key of the signer, then verifying the signature is sufficient to establish trust. In this circumstance, the authority to which this attestation is attached is primarily useful for lookup (how to find this attestation if you already know the authority and artifact to be verified) and intent (for which authority this attestation was intended to sign.
Implements
IMessage<AttestationOccurrence>, IEquatable<AttestationOccurrence>, IDeepCloneable<AttestationOccurrence>, IBufferMessage, IMessageNamespace
Grafeas.V1Assembly
Grafeas.V1.dll
Constructors
AttestationOccurrence()
public AttestationOccurrence()
AttestationOccurrence(AttestationOccurrence)
public AttestationOccurrence(AttestationOccurrence other)
Parameter | |
---|---|
Name | Description |
other | AttestationOccurrence |
Properties
SerializedPayload
public ByteString SerializedPayload { get; set; }
Required. The serialized payload that is verified by one or more
signatures
.
Property Value | |
---|---|
Type | Description |
ByteString |
Signatures
public RepeatedField<Signature> Signatures { get; }
One or more signatures over serialized_payload
. Verifier implementations
should consider this attestation message verified if at least one
signature
verifies serialized_payload
. See Signature
in common.proto
for more details on signature structure and verification.
Property Value | |
---|---|
Type | Description |
RepeatedField<Signature> |