Table of Contents

Class SigningResult

Namespace
Sigstore.Signing
Assembly
Sigstore.dll

Output of a successful signing operation.

public sealed record SigningResult : IEquatable<SigningResult>
Inheritance
SigningResult
Implements
Inherited Members

Constructors

SigningResult(string, SignerIdentity)

Output of a successful signing operation.

public SigningResult(string BundleJson, SignerIdentity Identity)

Parameters

BundleJson string

Sigstore bundle v0.3 JSON, ready for use with Verifier. The bundle contains an inclusion promise (SET), not a full Merkle inclusion proof.

Identity SignerIdentity

The OIDC identity bound to the signing certificate.

Properties

BundleJson

Sigstore bundle v0.3 JSON, ready for use with Verifier. The bundle contains an inclusion promise (SET), not a full Merkle inclusion proof.

public string BundleJson { get; init; }

Property Value

string

Identity

The OIDC identity bound to the signing certificate.

public SignerIdentity Identity { get; init; }

Property Value

SignerIdentity