Class SignedExchangeSignature
Information about a signed exchange signature. https://wicg.github.io/webpackage/draft-yasskin-httpbis-origin-signed-exchanges-impl.html#rfc.section.3.1
public sealed class SignedExchangeSignature
- Inheritance
-
SignedExchangeSignature
- Inherited Members
Properties
CertSha256
The hex string of signed exchange signature cert sha256.
[JsonPropertyName("certSha256")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string? CertSha256 { get; set; }
Property Value
CertUrl
Signed exchange signature cert Url.
[JsonPropertyName("certUrl")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string? CertUrl { get; set; }
Property Value
Certificates
The encoded certificates.
[JsonPropertyName("certificates")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string[]? Certificates { get; set; }
Property Value
- string[]
Date
Signed exchange signature date.
[JsonPropertyName("date")]
public long Date { get; set; }
Property Value
Expires
Signed exchange signature expires.
[JsonPropertyName("expires")]
public long Expires { get; set; }
Property Value
Integrity
Signed exchange signature integrity.
[JsonPropertyName("integrity")]
public string Integrity { get; set; }
Property Value
Label
Signed exchange signature label.
[JsonPropertyName("label")]
public string Label { get; set; }
Property Value
Signature
The hex string of signed exchange signature.
[JsonPropertyName("signature")]
public string Signature { get; set; }
Property Value
ValidityUrl
Signed exchange signature validity Url.
[JsonPropertyName("validityUrl")]
public string ValidityUrl { get; set; }