Table of Contents

Class CadesSigningResult

Namespace
SimpleSign.CAdES
Assembly
SimpleSign.CAdES.dll

Result of a CAdES signing operation, returned by SignWithDetailsAsync(CancellationToken). Includes the serialized CMS signature and metadata about applied protection levels.

public sealed class CadesSigningResult
Inheritance
CadesSigningResult
Inherited Members

Properties

ArchiveTimestampApplied

Whether an archive timestamp was applied (CAdES-B-LTA).

public bool ArchiveTimestampApplied { get; init; }

Property Value

bool

Cms

DER-encoded CMS/PKCS#7 SignedData (detached).

public byte[] Cms { get; init; }

Property Value

byte[]

LtvDataEmbedded

Whether long-term validation data (cert values + revocation) was embedded (CAdES-B-LT or higher).

public bool LtvDataEmbedded { get; init; }

Property Value

bool

TimestampApplied

Whether a timestamp token was applied (CAdES-B-T or higher).

public bool TimestampApplied { get; init; }

Property Value

bool

Warnings

Non-critical warnings (e.g., TSA certificate chain unavailable).

public IReadOnlyList<string> Warnings { get; init; }

Property Value

IReadOnlyList<string>