Class SigningResult
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
BundleJsonstringSigstore bundle v0.3 JSON, ready for use with Verifier. The bundle contains an inclusion promise (SET), not a full Merkle inclusion proof.
IdentitySignerIdentityThe 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
Identity
The OIDC identity bound to the signing certificate.
public SignerIdentity Identity { get; init; }